Merge branch 'master' into add-missing-licenses

Conflicts:
pkgs/development/libraries/exiv2/default.nix
Set license to gpl2Plus

+8794 -5357
+1 -1
README.md
··· 8 8 [nixpkgs-channels](https://github.com/NixOS/nixpkgs-channels.git) as a remote: 9 9 10 10 ``` 11 - % git remote add channels git://github.com/NixOS/nixpkgs-channels.git 11 + % git remote add channels https://github.com/NixOS/nixpkgs-channels.git 12 12 ``` 13 13 14 14 For stability and maximum binary package support, it is recommended to maintain
+1 -1
doc/quick-start.xml
··· 9 9 <para> 10 10 Checkout the Nixpkgs source tree: 11 11 <screen> 12 - $ git clone git://github.com/NixOS/nixpkgs.git 12 + $ git clone https://github.com/NixOS/nixpkgs 13 13 $ cd nixpkgs</screen> 14 14 </para> 15 15 </listitem>
+6 -4
doc/reviewing-contributions.xml
··· 103 103 <itemizedlist> 104 104 <listitem> 105 105 <para> 106 - mention-bot usually notifies GitHub users based on the submitted changes, 107 - but it can happen that it misses some of the package maintainers. 106 + <link xlink:href="https://help.github.com/articles/about-codeowners/">CODEOWNERS</link> 107 + will make GitHub notify users based on the submitted changes, but it can 108 + happen that it misses some of the package maintainers. 108 109 </para> 109 110 </listitem> 110 111 </itemizedlist> ··· 376 377 <itemizedlist> 377 378 <listitem> 378 379 <para> 379 - Mention-bot notify GitHub users based on the submitted changes, but it 380 - can happen that it miss some of the package maintainers. 380 + <link xlink:href="https://help.github.com/articles/about-codeowners/">CODEOWNERS</link> 381 + will make GitHub notify users based on the submitted changes, but it can 382 + happen that it misses some of the package maintainers. 381 383 </para> 382 384 </listitem> 383 385 </itemizedlist>
+25
maintainers/maintainer-list.nix
··· 936 936 github = "demin-dmitriy"; 937 937 name = "Dmitriy Demin"; 938 938 }; 939 + demize = { 940 + email = "johannes@kyriasis.com"; 941 + github = "kyrias"; 942 + name = "Johannes Löthberg"; 943 + }; 939 944 demyanrogozhin = { 940 945 email = "demyan.rogozhin@gmail.com"; 941 946 github = "demyanrogozhin"; ··· 1684 1689 github = "imalsogreg"; 1685 1690 name = "Greg Hale"; 1686 1691 }; 1692 + imuli = { 1693 + email = "i@imu.li"; 1694 + github = "imuli"; 1695 + name = "Imuli"; 1696 + }; 1687 1697 infinisil = { 1688 1698 email = "infinisil@icloud.com"; 1689 1699 github = "infinisil"; ··· 2089 2099 github = "kuznero"; 2090 2100 name = "Roman Kuznetsov"; 2091 2101 }; 2102 + kylewlacy = { 2103 + email = "kylelacy+nix@pm.me"; 2104 + github = "kylewlacy"; 2105 + name = "Kyle Lacy"; 2106 + }; 2092 2107 lasandell = { 2093 2108 email = "lasandell@gmail.com"; 2094 2109 github = "lasandell"; ··· 2173 2188 email = "nathaniel.baxter@gmail.com"; 2174 2189 github = "nathanielbaxter"; 2175 2190 name = "Nathaniel Baxter"; 2191 + }; 2192 + lightdiscord = { 2193 + email = "arnaud@lightdiscord.me"; 2194 + github = "lightdiscord"; 2195 + name = "Arnaud Pascal"; 2176 2196 }; 2177 2197 lihop = { 2178 2198 email = "nixos@leroy.geek.nz"; ··· 3682 3702 email = "abouzahra.9@wright.edu"; 3683 3703 github = "s-na"; 3684 3704 name = "S. Nordin Abouzahra"; 3705 + }; 3706 + snaar = { 3707 + email = "snaar@snaar.net"; 3708 + github = "snaar"; 3709 + name = "Serguei Narojnyi"; 3685 3710 }; 3686 3711 snyh = { 3687 3712 email = "snyh@snyh.org";
+1 -1
nixos/doc/manual/configuration/adding-custom-packages.xml
··· 14 14 xlink:href="http://nixos.org/nixpkgs/manual">Nixpkgs 15 15 manual</link>. In short, you clone Nixpkgs: 16 16 <screen> 17 - $ git clone git://github.com/NixOS/nixpkgs.git 17 + $ git clone https://github.com/NixOS/nixpkgs 18 18 $ cd nixpkgs 19 19 </screen> 20 20 Then you write and test the package as described in the Nixpkgs manual.
+1
nixos/doc/manual/configuration/x-windows.xml
··· 26 26 <xref linkend="opt-services.xserver.desktopManager.plasma5.enable"/> = true; 27 27 <xref linkend="opt-services.xserver.desktopManager.xfce.enable"/> = true; 28 28 <xref linkend="opt-services.xserver.desktopManager.gnome3.enable"/> = true; 29 + <xref linkend="opt-services.xserver.desktopManager.mate.enable"/> = true; 29 30 <xref linkend="opt-services.xserver.windowManager.xmonad.enable"/> = true; 30 31 <xref linkend="opt-services.xserver.windowManager.twm.enable"/> = true; 31 32 <xref linkend="opt-services.xserver.windowManager.icewm.enable"/> = true;
+2 -2
nixos/doc/manual/development/sources.xml
··· 11 11 modify NixOS, however, you should check out the latest sources from Git. This 12 12 is as follows: 13 13 <screen> 14 - $ git clone git://github.com/NixOS/nixpkgs.git 14 + $ git clone https://github.com/NixOS/nixpkgs 15 15 $ cd nixpkgs 16 - $ git remote add channels git://github.com/NixOS/nixpkgs-channels.git 16 + $ git remote add channels https://github.com/NixOS/nixpkgs-channels 17 17 $ git remote update channels 18 18 </screen> 19 19 This will check out the latest Nixpkgs sources to
+22
nixos/doc/manual/release-notes/rl-1809.xml
··· 75 75 <itemizedlist> 76 76 <listitem> 77 77 <para> 78 + There is a new <varname>services.foundationdb</varname> module for deploying 79 + <link xlink:href="https://www.foundationdb.org">FoundationDB</link> clusters. 80 + </para> 81 + </listitem> 82 + <listitem> 83 + <para> 78 84 When enabled the <literal>iproute2</literal> will copy the files expected 79 85 by ip route (e.g., <filename>rt_tables</filename>) in 80 86 <filename>/run/iproute2</filename>. This allows to write aliases for 81 87 routing tables for instance. 88 + </para> 89 + </listitem> 90 + <listitem> 91 + <para> 92 + <varname>services.strongswan-swanctl</varname> 93 + is a modern replacement for <varname>services.strongswan</varname>. 94 + You can use either one of them to setup IPsec VPNs but not both at the same time. 95 + </para> 96 + <para> 97 + <varname>services.strongswan-swanctl</varname> uses the 98 + <link xlink:href="https://wiki.strongswan.org/projects/strongswan/wiki/swanctl">swanctl</link> 99 + command which uses the modern 100 + <link xlink:href="https://github.com/strongswan/strongswan/blob/master/src/libcharon/plugins/vici/README.md">vici</link> 101 + <emphasis>Versatile IKE Configuration Interface</emphasis>. 102 + The deprecated <literal>ipsec</literal> command used in <varname>services.strongswan</varname> is using the legacy 103 + <link xlink:href="https://github.com/strongswan/strongswan/blob/master/README_LEGACY.md">stroke configuration interface</link>. 82 104 </para> 83 105 </listitem> 84 106 </itemizedlist>
+7
nixos/modules/installer/tools/nixos-generate-config.pl
··· 537 537 boot.loader.systemd-boot.enable = true; 538 538 boot.loader.efi.canTouchEfiVariables = true; 539 539 EOF 540 + } elsif (-e "/boot/extlinux") { 541 + $bootLoaderConfig = <<EOF; 542 + # Use the extlinux boot loader. (NixOS wants to enable GRUB by default) 543 + boot.loader.grub.enable = false; 544 + # Enables the generation of /boot/extlinux/extlinux.conf 545 + boot.loader.generic-extlinux-compatible.enable = true; 546 + EOF 540 547 } elsif ($virt ne "systemd-nspawn") { 541 548 $bootLoaderConfig = <<EOF; 542 549 # Use the GRUB 2 boot loader.
+2
nixos/modules/misc/ids.nix
··· 323 323 mapred = 296; 324 324 hadoop = 297; 325 325 hydron = 298; 326 + cfssl = 299; 326 327 327 328 # When adding a uid, make sure it doesn't match an existing gid. And don't use uids above 399! 328 329 ··· 606 607 mapred = 296; 607 608 hadoop = 297; 608 609 hydron = 298; 610 + cfssl = 299; 609 611 610 612 # When adding a gid, make sure it doesn't match an existing 611 613 # uid. Users and groups with the same name should have equal
+1
nixos/modules/module-list.nix
··· 622 622 ./services/search/hound.nix 623 623 ./services/search/kibana.nix 624 624 ./services/search/solr.nix 625 + ./services/security/cfssl.nix 625 626 ./services/security/clamav.nix 626 627 ./services/security/fail2ban.nix 627 628 ./services/security/fprintd.nix
-1
nixos/modules/rename.nix
··· 9 9 (mkRenamedOptionModule [ "system" "nixos" "stateVersion" ] [ "system" "stateVersion" ]) 10 10 (mkRenamedOptionModule [ "system" "nixos" "defaultChannel" ] [ "system" "defaultChannel" ]) 11 11 12 - (mkRenamedOptionModule [ "dysnomia" ] [ "services" "dysnomia" ]) 13 12 (mkRenamedOptionModule [ "environment" "x11Packages" ] [ "environment" "systemPackages" ]) 14 13 (mkRenamedOptionModule [ "environment" "enableBashCompletion" ] [ "programs" "bash" "enableCompletion" ]) 15 14 (mkRenamedOptionModule [ "environment" "nix" ] [ "nix" "package" ])
+2 -2
nixos/modules/services/audio/mpd.nix
··· 55 55 }; 56 56 57 57 musicDirectory = mkOption { 58 - type = types.path; 58 + type = with types; either path (strMatching "(http|https|nfs|smb)://.+"); 59 59 default = "${cfg.dataDir}/music"; 60 60 defaultText = ''''${dataDir}/music''; 61 61 description = '' 62 - The directory where mpd reads music from. 62 + The directory or NFS/SMB network share where mpd reads music from. 63 63 ''; 64 64 }; 65 65
+42 -10
nixos/modules/services/databases/foundationdb.xml
··· 12 12 13 13 <para><emphasis>Maintainer:</emphasis> Austin Seipp</para> 14 14 15 - <para><emphasis>Available version(s):</emphasis> 5.1.x</para> 15 + <para><emphasis>Available version(s):</emphasis> 5.1.x, 5.2.x, 6.0.x</para> 16 16 17 - <para>FoundationDB (or "FDB") is a distributed, open source, high performance, 18 - transactional key-value store. It can store petabytes of data and deliver 19 - exceptional performance while maintaining consistency and ACID semantics 20 - (serializable transactions) over a large cluster.</para> 17 + <para>FoundationDB (or "FDB") is an open source, distributed, transactional 18 + key-value store.</para> 21 19 22 20 <section><title>Configuring and basic setup</title> 23 21 ··· 26 24 27 25 <programlisting> 28 26 services.foundationdb.enable = true; 29 - services.foundationdb.package = pkgs.foundationdb51; # FoundationDB 5.1.x 27 + services.foundationdb.package = pkgs.foundationdb52; # FoundationDB 5.2.x 30 28 </programlisting> 31 29 </para> 32 30 33 31 <para>The <option>services.foundationdb.package</option> option is required, 34 - and must always be specified. Because FoundationDB network protocols and 32 + and must always be specified. Due to the fact FoundationDB network protocols and 35 33 on-disk storage formats may change between (major) versions, and upgrades must 36 34 be explicitly handled by the user, you must always manually specify this 37 35 yourself so that the NixOS module will use the proper version. Note that minor, ··· 67 65 ... 68 66 69 67 fdb> 68 + </programlisting> 69 + </para> 70 + 71 + <para>You can also write programs using the available client libraries. 72 + For example, the following Python program can be run in order to grab the 73 + cluster status, as a quick example. (This example uses 74 + <command>nix-shell</command> shebang support to automatically supply the 75 + necessary Python modules). 76 + 77 + <programlisting> 78 + a@link> cat fdb-status.py 79 + #! /usr/bin/env nix-shell 80 + #! nix-shell -i python -p python pythonPackages.foundationdb52 81 + 82 + import fdb 83 + import json 84 + 85 + def main(): 86 + fdb.api_version(520) 87 + db = fdb.open() 88 + 89 + @fdb.transactional 90 + def get_status(tr): 91 + return str(tr['\xff\xff/status/json']) 92 + 93 + obj = json.loads(get_status(db)) 94 + print('FoundationDB available: %s' % obj['client']['database_status']['available']) 95 + 96 + if __name__ == "__main__": 97 + main() 98 + a@link> chmod +x fdb-status.py 99 + a@link> ./fdb-status.py 100 + FoundationDB available: True 101 + a@link> 70 102 </programlisting> 71 103 </para> 72 104 ··· 295 327 individual <command>fdbserver</command> processes. Currently, all server 296 328 processes inherit all the global <command>fdbmonitor</command> settings. 297 329 </para></listitem> 298 - <listitem><para>Python bindings are not currently installed.</para></listitem> 299 330 <listitem><para>Ruby bindings are not currently installed.</para></listitem> 300 331 <listitem><para>Go bindings are not currently installed.</para></listitem> 301 332 </itemizedlist> ··· 306 337 307 338 <para>NixOS's FoundationDB module allows you to configure all of the most 308 339 relevant configuration options for <command>fdbmonitor</command>, matching it 309 - quite closely. For a complete list of all options, check <command>man 310 - configuration.nix</command>.</para> 340 + quite closely. A complete list of options for the FoundationDB module may be 341 + found <link linkend="opt-services.foundationdb.enable">here</link>. You should 342 + also read the FoundationDB documentation as well.</para> 311 343 312 344 </section> 313 345
+1 -1
nixos/modules/services/misc/disnix.nix
··· 47 47 ###### implementation 48 48 49 49 config = mkIf cfg.enable { 50 - services.dysnomia.enable = true; 50 + dysnomia.enable = true; 51 51 52 52 environment.systemPackages = [ pkgs.disnix ] ++ optional cfg.useWebServiceInterface pkgs.DisnixWebService; 53 53
+5 -5
nixos/modules/services/misc/dysnomia.nix
··· 3 3 with lib; 4 4 5 5 let 6 - cfg = config.services.dysnomia; 6 + cfg = config.dysnomia; 7 7 8 8 printProperties = properties: 9 9 concatMapStrings (propertyName: ··· 69 69 in 70 70 { 71 71 options = { 72 - services.dysnomia = { 72 + dysnomia = { 73 73 74 74 enable = mkOption { 75 75 type = types.bool; ··· 142 142 143 143 environment.systemPackages = [ cfg.package ]; 144 144 145 - services.dysnomia.package = pkgs.dysnomia.override (origArgs: { 145 + dysnomia.package = pkgs.dysnomia.override (origArgs: { 146 146 enableApacheWebApplication = config.services.httpd.enable; 147 147 enableAxis2WebService = config.services.tomcat.axis2.enable; 148 148 enableEjabberdDump = config.services.ejabberd.enable; ··· 153 153 enableMongoDatabase = config.services.mongodb.enable; 154 154 }); 155 155 156 - services.dysnomia.properties = { 156 + dysnomia.properties = { 157 157 hostname = config.networking.hostName; 158 158 inherit (config.nixpkgs.localSystem) system; 159 159 ··· 171 171 }}"); 172 172 }; 173 173 174 - services.dysnomia.containers = lib.recursiveUpdate ({ 174 + dysnomia.containers = lib.recursiveUpdate ({ 175 175 process = {}; 176 176 wrapper = {}; 177 177 }
+13 -21
nixos/modules/services/monitoring/graphite.nix
··· 57 57 --nodaemon --syslog --prefix=${name} --pidfile /run/${name}/${name}.pid ${name} 58 58 ''; 59 59 60 - mkPidFileDir = name: '' 61 - mkdir -p /run/${name} 62 - chmod 0700 /run/${name} 63 - chown -R graphite:graphite /run/${name} 64 - ''; 65 - 66 60 carbonEnv = { 67 61 PYTHONPATH = let 68 62 cenv = pkgs.python.buildEnv.override { ··· 136 130 finders = mkOption { 137 131 description = "List of finder plugins to load."; 138 132 default = []; 139 - example = literalExample "[ pkgs.python27Packages.graphite_influxdb ]"; 133 + example = literalExample "[ pkgs.python27Packages.influxgraph ]"; 140 134 type = types.listOf types.package; 141 135 }; 142 136 ··· 412 406 after = [ "network.target" ]; 413 407 environment = carbonEnv; 414 408 serviceConfig = { 409 + RuntimeDirectory = name; 415 410 ExecStart = "${pkgs.pythonPackages.twisted}/bin/twistd ${carbonOpts name}"; 416 411 User = "graphite"; 417 412 Group = "graphite"; 418 413 PermissionsStartOnly = true; 419 414 PIDFile="/run/${name}/${name}.pid"; 420 415 }; 421 - preStart = mkPidFileDir name + '' 422 - 423 - mkdir -p ${cfg.dataDir}/whisper 424 - chmod 0700 ${cfg.dataDir}/whisper 425 - chown graphite:graphite ${cfg.dataDir} 426 - chown graphite:graphite ${cfg.dataDir}/whisper 416 + preStart = '' 417 + install -dm0700 -o graphite -g graphite ${cfg.dataDir} 418 + install -dm0700 -o graphite -g graphite ${cfg.dataDir}/whisper 427 419 ''; 428 420 }; 429 421 }) ··· 436 428 after = [ "network.target" ]; 437 429 environment = carbonEnv; 438 430 serviceConfig = { 431 + RuntimeDirectory = name; 439 432 ExecStart = "${pkgs.pythonPackages.twisted}/bin/twistd ${carbonOpts name}"; 440 433 User = "graphite"; 441 434 Group = "graphite"; 442 435 PIDFile="/run/${name}/${name}.pid"; 443 436 }; 444 - preStart = mkPidFileDir name; 445 437 }; 446 438 }) 447 439 ··· 452 444 after = [ "network.target" ]; 453 445 environment = carbonEnv; 454 446 serviceConfig = { 447 + RuntimeDirectory = name; 455 448 ExecStart = "${pkgs.pythonPackages.twisted}/bin/twistd ${carbonOpts name}"; 456 449 User = "graphite"; 457 450 Group = "graphite"; 458 451 PIDFile="/run/${name}/${name}.pid"; 459 452 }; 460 - preStart = mkPidFileDir name; 461 453 }; 462 454 }) 463 455 ··· 485 477 PYTHONPATH = let 486 478 penv = pkgs.python.buildEnv.override { 487 479 extraLibs = [ 488 - pythonPackages.graphite_web 480 + pythonPackages.graphite-web 489 481 pythonPackages.pysqlite 490 482 ]; 491 483 }; ··· 524 516 fi 525 517 526 518 # Only collect static files when graphite_web changes. 527 - if ! [ "${dataDir}/current_graphite_web" -ef "${pythonPackages.graphite_web}" ]; then 519 + if ! [ "${dataDir}/current_graphite_web" -ef "${pythonPackages.graphite-web}" ]; then 528 520 mkdir -p ${staticDir} 529 521 ${pkgs.pythonPackages.django_1_8}/bin/django-admin.py collectstatic --noinput --clear 530 522 chown -R graphite:graphite ${staticDir} 531 - ln -sfT "${pythonPackages.graphite_web}" "${dataDir}/current_graphite_web" 523 + ln -sfT "${pythonPackages.graphite-web}" "${dataDir}/current_graphite_web" 532 524 fi 533 525 ''; 534 526 }; 535 527 536 - environment.systemPackages = [ pythonPackages.graphite_web ]; 528 + environment.systemPackages = [ pythonPackages.graphite-web ]; 537 529 })) 538 530 539 531 (mkIf cfg.api.enable { ··· 607 599 GRAPHITE_URL = cfg.pager.graphiteUrl; 608 600 }; 609 601 serviceConfig = { 610 - ExecStart = "${pkgs.pythonPackages.graphite_pager}/bin/graphite-pager --config ${pagerConfig}"; 602 + ExecStart = "${pkgs.pythonPackages.graphitepager}/bin/graphite-pager --config ${pagerConfig}"; 611 603 User = "graphite"; 612 604 Group = "graphite"; 613 605 }; ··· 615 607 616 608 services.redis.enable = mkDefault true; 617 609 618 - environment.systemPackages = [ pkgs.pythonPackages.graphite_pager ]; 610 + environment.systemPackages = [ pkgs.pythonPackages.graphitepager ]; 619 611 }) 620 612 621 613 (mkIf cfg.beacon.enable {
+4
nixos/modules/services/monitoring/netdata.nix
··· 14 14 global = { 15 15 "plugins directory" = "${wrappedPlugins}/libexec/netdata/plugins.d ${pkgs.netdata}/libexec/netdata/plugins.d"; 16 16 }; 17 + web = { 18 + "web files owner" = "root"; 19 + "web files group" = "root"; 20 + }; 17 21 }; 18 22 mkConfig = generators.toINI {} (recursiveUpdate localConfig cfg.config); 19 23 configFile = pkgs.writeText "netdata.conf" (if cfg.configText != null then cfg.configText else mkConfig);
+5 -4
nixos/modules/services/monitoring/prometheus/exporters.nix
··· 73 73 description = '' 74 74 Specify a filter for iptables to use when 75 75 <option>services.prometheus.exporters.${name}.openFirewall</option> 76 - is true. It is used as `ip46tables -I INPUT <option>firewallFilter</option> -j ACCEPT`. 76 + is true. It is used as `ip46tables -I nixos-fw <option>firewallFilter</option> -j nixos-fw-accept`. 77 77 ''; 78 78 }; 79 79 user = mkOption { ··· 116 116 117 117 mkExporterConf = { name, conf, serviceOpts }: 118 118 mkIf conf.enable { 119 - networking.firewall.extraCommands = mkIf conf.openFirewall '' 120 - ip46tables -I INPUT ${conf.firewallFilter} -j ACCEPT 121 - ''; 119 + networking.firewall.extraCommands = mkIf conf.openFirewall (concatStrings [ 120 + "ip46tables -I nixos-fw ${conf.firewallFilter} " 121 + "-m comment --comment ${name}-exporter -j nixos-fw-accept" 122 + ]); 122 123 systemd.services."prometheus-${name}-exporter" = mkMerge ([{ 123 124 wantedBy = [ "multi-user.target" ]; 124 125 after = [ "network.target" ];
+209
nixos/modules/services/security/cfssl.nix
··· 1 + { config, lib, pkgs, ... }: 2 + 3 + with lib; 4 + 5 + let 6 + cfg = config.services.cfssl; 7 + in { 8 + options.services.cfssl = { 9 + enable = mkEnableOption "the CFSSL CA api-server"; 10 + 11 + dataDir = mkOption { 12 + default = "/var/lib/cfssl"; 13 + type = types.path; 14 + description = "Cfssl work directory."; 15 + }; 16 + 17 + address = mkOption { 18 + default = "127.0.0.1"; 19 + type = types.str; 20 + description = "Address to bind."; 21 + }; 22 + 23 + port = mkOption { 24 + default = 8888; 25 + type = types.ints.u16; 26 + description = "Port to bind."; 27 + }; 28 + 29 + ca = mkOption { 30 + defaultText = "\${cfg.dataDir}/ca.pem"; 31 + type = types.str; 32 + description = "CA used to sign the new certificate -- accepts '[file:]fname' or 'env:varname'."; 33 + }; 34 + 35 + caKey = mkOption { 36 + defaultText = "file:\${cfg.dataDir}/ca-key.pem"; 37 + type = types.str; 38 + description = "CA private key -- accepts '[file:]fname' or 'env:varname'."; 39 + }; 40 + 41 + caBundle = mkOption { 42 + default = null; 43 + type = types.nullOr types.path; 44 + description = "Path to root certificate store."; 45 + }; 46 + 47 + intBundle = mkOption { 48 + default = null; 49 + type = types.nullOr types.path; 50 + description = "Path to intermediate certificate store."; 51 + }; 52 + 53 + intDir = mkOption { 54 + default = null; 55 + type = types.nullOr types.path; 56 + description = "Intermediates directory."; 57 + }; 58 + 59 + metadata = mkOption { 60 + default = null; 61 + type = types.nullOr types.path; 62 + description = '' 63 + Metadata file for root certificate presence. 64 + The content of the file is a json dictionary (k,v): each key k is 65 + a SHA-1 digest of a root certificate while value v is a list of key 66 + store filenames. 67 + ''; 68 + }; 69 + 70 + remote = mkOption { 71 + default = null; 72 + type = types.nullOr types.str; 73 + description = "Remote CFSSL server."; 74 + }; 75 + 76 + configFile = mkOption { 77 + default = null; 78 + type = types.nullOr types.str; 79 + description = "Path to configuration file. Do not put this in nix-store as it might contain secrets."; 80 + }; 81 + 82 + responder = mkOption { 83 + default = null; 84 + type = types.nullOr types.path; 85 + description = "Certificate for OCSP responder."; 86 + }; 87 + 88 + responderKey = mkOption { 89 + default = null; 90 + type = types.nullOr types.str; 91 + description = "Private key for OCSP responder certificate. Do not put this in nix-store."; 92 + }; 93 + 94 + tlsKey = mkOption { 95 + default = null; 96 + type = types.nullOr types.str; 97 + description = "Other endpoint's CA private key. Do not put this in nix-store."; 98 + }; 99 + 100 + tlsCert = mkOption { 101 + default = null; 102 + type = types.nullOr types.path; 103 + description = "Other endpoint's CA to set up TLS protocol."; 104 + }; 105 + 106 + mutualTlsCa = mkOption { 107 + default = null; 108 + type = types.nullOr types.path; 109 + description = "Mutual TLS - require clients be signed by this CA."; 110 + }; 111 + 112 + mutualTlsCn = mkOption { 113 + default = null; 114 + type = types.nullOr types.str; 115 + description = "Mutual TLS - regex for whitelist of allowed client CNs."; 116 + }; 117 + 118 + tlsRemoteCa = mkOption { 119 + default = null; 120 + type = types.nullOr types.path; 121 + description = "CAs to trust for remote TLS requests."; 122 + }; 123 + 124 + mutualTlsClientCert = mkOption { 125 + default = null; 126 + type = types.nullOr types.path; 127 + description = "Mutual TLS - client certificate to call remote instance requiring client certs."; 128 + }; 129 + 130 + mutualTlsClientKey = mkOption { 131 + default = null; 132 + type = types.nullOr types.path; 133 + description = "Mutual TLS - client key to call remote instance requiring client certs. Do not put this in nix-store."; 134 + }; 135 + 136 + dbConfig = mkOption { 137 + default = null; 138 + type = types.nullOr types.path; 139 + description = "Certificate db configuration file. Path must be writeable."; 140 + }; 141 + 142 + logLevel = mkOption { 143 + default = 1; 144 + type = types.enum [ 0 1 2 3 4 5 ]; 145 + description = "Log level (0 = DEBUG, 5 = FATAL)."; 146 + }; 147 + }; 148 + 149 + config = { 150 + users.extraGroups.cfssl = { 151 + gid = config.ids.gids.cfssl; 152 + }; 153 + 154 + users.extraUsers.cfssl = { 155 + description = "cfssl user"; 156 + createHome = true; 157 + home = cfg.dataDir; 158 + group = "cfssl"; 159 + uid = config.ids.uids.cfssl; 160 + }; 161 + 162 + systemd.services.cfssl = mkIf cfg.enable { 163 + description = "CFSSL CA API server"; 164 + wantedBy = [ "multi-user.target" ]; 165 + after = [ "network.target" ]; 166 + 167 + serviceConfig = { 168 + WorkingDirectory = cfg.dataDir; 169 + StateDirectory = cfg.dataDir; 170 + StateDirectoryMode = 700; 171 + Restart = "always"; 172 + User = "cfssl"; 173 + 174 + ExecStart = with cfg; let 175 + opt = n: v: optionalString (v != null) ''-${n}="${v}"''; 176 + in 177 + lib.concatStringsSep " \\\n" [ 178 + "${pkgs.cfssl}/bin/cfssl serve" 179 + (opt "address" address) 180 + (opt "port" (toString port)) 181 + (opt "ca" ca) 182 + (opt "ca-key" caKey) 183 + (opt "ca-bundle" caBundle) 184 + (opt "int-bundle" intBundle) 185 + (opt "int-dir" intDir) 186 + (opt "metadata" metadata) 187 + (opt "remote" remote) 188 + (opt "config" configFile) 189 + (opt "responder" responder) 190 + (opt "responder-key" responderKey) 191 + (opt "tls-key" tlsKey) 192 + (opt "tls-cert" tlsCert) 193 + (opt "mutual-tls-ca" mutualTlsCa) 194 + (opt "mutual-tls-cn" mutualTlsCn) 195 + (opt "mutual-tls-client-key" mutualTlsClientKey) 196 + (opt "mutual-tls-client-cert" mutualTlsClientCert) 197 + (opt "tls-remote-ca" tlsRemoteCa) 198 + (opt "db-config" dbConfig) 199 + (opt "loglevel" (toString logLevel)) 200 + ]; 201 + }; 202 + }; 203 + 204 + services.cfssl = { 205 + ca = mkDefault "${cfg.dataDir}/ca.pem"; 206 + caKey = mkDefault "${cfg.dataDir}/ca-key.pem"; 207 + }; 208 + }; 209 + }
+62 -4
nixos/modules/services/web-servers/hydron.nix
··· 1 1 { config, lib, pkgs, ... }: 2 2 3 - let cfg = config.services.hydron; 3 + let 4 + cfg = config.services.hydron; 5 + postgres = config.services.postgresql; 4 6 in with lib; { 5 7 options.services.hydron = { 6 8 enable = mkEnableOption "hydron"; ··· 25 27 ''; 26 28 }; 27 29 30 + password = mkOption { 31 + type = types.str; 32 + default = "hydron"; 33 + example = "dumbpass"; 34 + description = "Password for the hydron database."; 35 + }; 36 + 37 + passwordFile = mkOption { 38 + type = types.path; 39 + default = "/run/keys/hydron-password-file"; 40 + example = "/home/okina/hydron/keys/pass"; 41 + description = "Password file for the hydron database."; 42 + }; 43 + 44 + postgresArgs = mkOption { 45 + type = types.str; 46 + description = "Postgresql connection arguments."; 47 + example = '' 48 + { 49 + "driver": "postgres", 50 + "connection": "user=hydron password=dumbpass dbname=hydron sslmode=disable" 51 + } 52 + ''; 53 + }; 54 + 55 + postgresArgsFile = mkOption { 56 + type = types.path; 57 + default = "/run/keys/hydron-postgres-args"; 58 + example = "/home/okina/hydron/keys/postgres"; 59 + description = "Postgresql connection arguments file."; 60 + }; 61 + 28 62 listenAddress = mkOption { 29 63 type = types.nullOr types.str; 30 64 default = null; ··· 47 81 }; 48 82 49 83 config = mkIf cfg.enable { 84 + security.sudo.enable = cfg.enable; 85 + services.postgresql.enable = cfg.enable; 86 + services.hydron.passwordFile = mkDefault (pkgs.writeText "hydron-password-file" cfg.password); 87 + services.hydron.postgresArgsFile = mkDefault (pkgs.writeText "hydron-postgres-args" cfg.postgresArgs); 88 + services.hydron.postgresArgs = mkDefault '' 89 + { 90 + "driver": "postgres", 91 + "connection": "user=hydron password=${cfg.password} dbname=hydron sslmode=disable" 92 + } 93 + ''; 94 + 50 95 systemd.services.hydron = { 51 96 description = "hydron"; 52 - after = [ "network.target" ]; 97 + after = [ "network.target" "postgresql.service" ]; 53 98 wantedBy = [ "multi-user.target" ]; 54 99 55 100 preStart = '' 56 - # Ensure folder exists and permissions are correct 57 - mkdir -p ${escapeShellArg cfg.dataDir}/images 101 + # Ensure folder exists or create it and permissions are correct 102 + mkdir -p ${escapeShellArg cfg.dataDir}/{.hydron,images} 103 + ln -sf ${escapeShellArg cfg.postgresArgsFile} ${escapeShellArg cfg.dataDir}/.hydron/db_conf.json 58 104 chmod 750 ${escapeShellArg cfg.dataDir} 59 105 chown -R hydron:hydron ${escapeShellArg cfg.dataDir} 106 + 107 + # Ensure the database is correct or create it 108 + ${pkgs.sudo}/bin/sudo -u ${postgres.superUser} ${postgres.package}/bin/createuser \ 109 + -SDR hydron || true 110 + ${pkgs.sudo}/bin/sudo -u ${postgres.superUser} ${postgres.package}/bin/createdb \ 111 + -T template0 -E UTF8 -O hydron hydron || true 112 + ${pkgs.sudo}/bin/sudo -u hydron ${postgres.package}/bin/psql \ 113 + -c "ALTER ROLE hydron WITH PASSWORD '$(cat ${escapeShellArg cfg.passwordFile})';" || true 60 114 ''; 61 115 62 116 serviceConfig = { ··· 100 154 }; 101 155 }; 102 156 }; 157 + 158 + imports = [ 159 + (mkRenamedOptionModule [ "services" "hydron" "baseDir" ] [ "services" "hydron" "dataDir" ]) 160 + ]; 103 161 104 162 meta.maintainers = with maintainers; [ chiiruno ]; 105 163 }
+39 -40
nixos/modules/services/web-servers/meguca.nix
··· 1 1 { config, lib, pkgs, ... }: 2 2 3 - with lib; 4 3 let 5 4 cfg = config.services.meguca; 6 5 postgres = config.services.postgresql; 7 - in 8 - { 6 + in with lib; { 9 7 options.services.meguca = { 10 8 enable = mkEnableOption "meguca"; 11 9 12 - baseDir = mkOption { 10 + dataDir = mkOption { 13 11 type = types.path; 14 - default = "/run/meguca"; 12 + default = "/var/lib/meguca"; 13 + example = "/home/okina/meguca"; 15 14 description = "Location where meguca stores it's database and links."; 16 15 }; 17 16 18 17 password = mkOption { 19 18 type = types.str; 20 19 default = "meguca"; 20 + example = "dumbpass"; 21 21 description = "Password for the meguca database."; 22 22 }; 23 23 24 24 passwordFile = mkOption { 25 25 type = types.path; 26 26 default = "/run/keys/meguca-password-file"; 27 + example = "/home/okina/meguca/keys/pass"; 27 28 description = "Password file for the meguca database."; 28 29 }; 29 30 30 31 reverseProxy = mkOption { 31 32 type = types.nullOr types.str; 32 33 default = null; 34 + example = "192.168.1.5"; 33 35 description = "Reverse proxy IP."; 34 36 }; 35 37 36 38 sslCertificate = mkOption { 37 39 type = types.nullOr types.str; 38 40 default = null; 41 + example = "/home/okina/meguca/ssl.cert"; 39 42 description = "Path to the SSL certificate."; 40 43 }; 41 44 42 45 listenAddress = mkOption { 43 46 type = types.nullOr types.str; 44 47 default = null; 48 + example = "127.0.0.1:8000"; 45 49 description = "Listen on a specific IP address and port."; 46 50 }; 47 51 48 52 cacheSize = mkOption { 49 53 type = types.nullOr types.int; 50 54 default = null; 55 + example = 256; 51 56 description = "Cache size in MB."; 52 57 }; 53 58 54 59 postgresArgs = mkOption { 55 60 type = types.str; 56 - default = "user=meguca password=" + cfg.password + " dbname=meguca sslmode=disable"; 61 + example = "user=meguca password=dumbpass dbname=meguca sslmode=disable"; 57 62 description = "Postgresql connection arguments."; 58 63 }; 59 64 60 65 postgresArgsFile = mkOption { 61 66 type = types.path; 62 67 default = "/run/keys/meguca-postgres-args"; 68 + example = "/home/okina/meguca/keys/postgres"; 63 69 description = "Postgresql connection arguments file."; 64 70 }; 65 71 ··· 83 89 }; 84 90 85 91 config = mkIf cfg.enable { 86 - security.sudo.enable = cfg.enable == true; 87 - services.postgresql.enable = cfg.enable == true; 88 - 89 - services.meguca.passwordFile = mkDefault (toString (pkgs.writeTextFile { 90 - name = "meguca-password-file"; 91 - text = cfg.password; 92 - })); 93 - 94 - services.meguca.postgresArgsFile = mkDefault (toString (pkgs.writeTextFile { 95 - name = "meguca-postgres-args"; 96 - text = cfg.postgresArgs; 97 - })); 92 + security.sudo.enable = cfg.enable; 93 + services.postgresql.enable = cfg.enable; 94 + services.meguca.passwordFile = mkDefault (pkgs.writeText "meguca-password-file" cfg.password); 95 + services.meguca.postgresArgsFile = mkDefault (pkgs.writeText "meguca-postgres-args" cfg.postgresArgs); 96 + services.meguca.postgresArgs = mkDefault "user=meguca password=${cfg.password} dbname=meguca sslmode=disable"; 98 97 99 98 systemd.services.meguca = { 100 99 description = "meguca"; ··· 102 101 wantedBy = [ "multi-user.target" ]; 103 102 104 103 preStart = '' 105 - # Ensure folder exists and links are correct or create them 106 - mkdir -p ${cfg.baseDir} 107 - chmod 750 ${cfg.baseDir} 108 - ln -sf ${pkgs.meguca}/share/meguca/www ${cfg.baseDir} 104 + # Ensure folder exists or create it and links and permissions are correct 105 + mkdir -p ${escapeShellArg cfg.dataDir} 106 + ln -sf ${pkgs.meguca}/share/meguca/www ${escapeShellArg cfg.dataDir} 107 + chmod 750 ${escapeShellArg cfg.dataDir} 108 + chown -R meguca:meguca ${escapeShellArg cfg.dataDir} 109 109 110 110 # Ensure the database is correct or create it 111 111 ${pkgs.sudo}/bin/sudo -u ${postgres.superUser} ${postgres.package}/bin/createuser \ ··· 113 113 ${pkgs.sudo}/bin/sudo -u ${postgres.superUser} ${postgres.package}/bin/createdb \ 114 114 -T template0 -E UTF8 -O meguca meguca || true 115 115 ${pkgs.sudo}/bin/sudo -u meguca ${postgres.package}/bin/psql \ 116 - -c "ALTER ROLE meguca WITH PASSWORD '$(cat ${cfg.passwordFile})';" || true 116 + -c "ALTER ROLE meguca WITH PASSWORD '$(cat ${escapeShellArg cfg.passwordFile})';" || true 117 117 ''; 118 118 119 119 script = '' 120 - cd ${cfg.baseDir} 120 + cd ${escapeShellArg cfg.dataDir} 121 121 122 - ${pkgs.meguca}/bin/meguca -d "$(cat ${cfg.postgresArgsFile})"\ 123 - ${optionalString (cfg.reverseProxy != null) " -R ${cfg.reverseProxy}"}\ 124 - ${optionalString (cfg.sslCertificate != null) " -S ${cfg.sslCertificate}"}\ 125 - ${optionalString (cfg.listenAddress != null) " -a ${cfg.listenAddress}"}\ 126 - ${optionalString (cfg.cacheSize != null) " -c ${toString cfg.cacheSize}"}\ 127 - ${optionalString (cfg.compressTraffic) " -g"}\ 128 - ${optionalString (cfg.assumeReverseProxy) " -r"}\ 129 - ${optionalString (cfg.httpsOnly) " -s"} start 130 - ''; 122 + ${pkgs.meguca}/bin/meguca -d "$(cat ${escapeShellArg cfg.postgresArgsFile})"'' 123 + + optionalString (cfg.reverseProxy != null) " -R ${cfg.reverseProxy}" 124 + + optionalString (cfg.sslCertificate != null) " -S ${cfg.sslCertificate}" 125 + + optionalString (cfg.listenAddress != null) " -a ${cfg.listenAddress}" 126 + + optionalString (cfg.cacheSize != null) " -c ${toString cfg.cacheSize}" 127 + + optionalString (cfg.compressTraffic) " -g" 128 + + optionalString (cfg.assumeReverseProxy) " -r" 129 + + optionalString (cfg.httpsOnly) " -s" + " start"; 131 130 132 131 serviceConfig = { 133 132 PermissionsStartOnly = true; 134 133 Type = "forking"; 135 134 User = "meguca"; 136 135 Group = "meguca"; 137 - RuntimeDirectory = "meguca"; 138 136 ExecStop = "${pkgs.meguca}/bin/meguca stop"; 139 137 }; 140 138 }; 141 139 142 140 users = { 141 + groups.meguca.gid = config.ids.gids.meguca; 142 + 143 143 users.meguca = { 144 144 description = "meguca server service user"; 145 - home = cfg.baseDir; 145 + home = cfg.dataDir; 146 146 createHome = true; 147 147 group = "meguca"; 148 148 uid = config.ids.uids.meguca; 149 149 }; 150 - 151 - groups.meguca = { 152 - gid = config.ids.gids.meguca; 153 - members = [ "meguca" ]; 154 - }; 155 150 }; 156 151 }; 152 + 153 + imports = [ 154 + (mkRenamedOptionModule [ "services" "meguca" "baseDir" ] [ "services" "meguca" "dataDir" ]) 155 + ]; 157 156 158 157 meta.maintainers = with maintainers; [ chiiruno ]; 159 158 }
+9 -2
nixos/modules/services/web-servers/tomcat.nix
··· 108 108 }; 109 109 110 110 webapps = mkOption { 111 - type = types.listOf types.package; 111 + type = types.listOf types.path; 112 112 default = [ tomcat.webapps ]; 113 113 defaultText = "[ pkgs.tomcat85.webapps ]"; 114 114 description = "List containing WAR files or directories with WAR files which are web applications to be deployed on Tomcat"; ··· 118 118 type = types.listOf (types.submodule { 119 119 options = { 120 120 name = mkOption { 121 - type = types.listOf types.str; 121 + type = types.str; 122 122 description = "name of the virtualhost"; 123 + }; 124 + webapps = mkOption { 125 + type = types.listOf types.path; 126 + description = '' 127 + List containing web application WAR files and/or directories containing 128 + web applications and configuration files for the virtual host. 129 + ''; 123 130 default = []; 124 131 }; 125 132 };
+6 -6
nixos/modules/services/x11/desktop-managers/default.nix
··· 96 96 else if any (w: w.name == defaultDM) cfg.session.list then 97 97 defaultDM 98 98 else 99 - throw '' 100 - Default desktop manager (${defaultDM}) not found. 101 - Probably you want to change 102 - services.xserver.desktopManager.default = "${defaultDM}"; 103 - to one of 99 + builtins.trace '' 100 + Default desktop manager (${defaultDM}) not found at evaluation time. 101 + These are the known valid session names: 104 102 ${concatMapStringsSep "\n " (w: "services.xserver.desktopManager.default = \"${w.name}\";") cfg.session.list} 105 - ''; 103 + It's also possible the default can be found in one of these packages: 104 + ${concatMapStringsSep "\n " (p: p.name) config.services.xserver.displayManager.extraSessionFilePackages} 105 + '' defaultDM; 106 106 }; 107 107 108 108 };
+22 -32
nixos/modules/services/x11/desktop-managers/gnome3.nix
··· 57 57 sessionPath = mkOption { 58 58 default = []; 59 59 example = literalExample "[ pkgs.gnome3.gpaste ]"; 60 - description = "Additional list of packages to be added to the session search path. 61 - Useful for gnome shell extensions or gsettings-conditionated autostart."; 60 + description = '' 61 + Additional list of packages to be added to the session search path. 62 + Useful for GNOME Shell extensions or GSettings-conditional autostart. 63 + 64 + Note that this should be a last resort; patching the package is preferred (see GPaste). 65 + ''; 62 66 apply = list: list ++ [ pkgs.gnome3.gnome-shell pkgs.gnome3.gnome-shell-extensions ]; 63 67 }; 64 68 ··· 126 130 127 131 fonts.fonts = [ pkgs.dejavu_fonts pkgs.cantarell-fonts ]; 128 132 129 - services.xserver.desktopManager.session = singleton 130 - { name = "gnome3"; 131 - bgSupport = true; 132 - start = '' 133 - # Set GTK_DATA_PREFIX so that GTK+ can find the themes 134 - export GTK_DATA_PREFIX=${config.system.path} 135 - 136 - # find theme engines 137 - export GTK_PATH=${config.system.path}/lib/gtk-3.0:${config.system.path}/lib/gtk-2.0 133 + services.xserver.displayManager.extraSessionFilePackages = [ pkgs.gnome3.gnome-session ]; 138 134 139 - export XDG_MENU_PREFIX=gnome- 140 - 135 + services.xserver.displayManager.sessionCommands = '' 136 + if test "$XDG_CURRENT_DESKTOP" = "GNOME"; then 141 137 ${concatMapStrings (p: '' 142 138 if [ -d "${p}/share/gsettings-schemas/${p.name}" ]; then 143 139 export XDG_DATA_DIRS=$XDG_DATA_DIRS''${XDG_DATA_DIRS:+:}${p}/share/gsettings-schemas/${p.name} ··· 148 144 export LD_LIBRARY_PATH=$LD_LIBRARY_PATH''${LD_LIBRARY_PATH:+:}${p}/lib 149 145 fi 150 146 '') cfg.sessionPath} 151 - 152 - # Override default mimeapps 153 - export XDG_DATA_DIRS=$XDG_DATA_DIRS''${XDG_DATA_DIRS:+:}${mimeAppsList}/share 154 - 155 - # Override gsettings-desktop-schema 156 - export NIX_GSETTINGS_OVERRIDES_DIR=${nixos-gsettings-desktop-schemas}/share/gsettings-schemas/nixos-gsettings-overrides/glib-2.0/schemas 157 - 158 - # Let nautilus find extensions 159 - export NAUTILUS_EXTENSION_DIR=${config.system.path}/lib/nautilus/extensions-3.0/ 147 + fi 148 + ''; 160 149 161 - # Find the mouse 162 - export XCURSOR_PATH=~/.icons:${config.system.path}/share/icons 150 + environment.variables.GNOME_SESSION_DEBUG = optionalString cfg.debug "1"; 163 151 164 - # Update user dirs as described in http://freedesktop.org/wiki/Software/xdg-user-dirs/ 165 - ${pkgs.xdg-user-dirs}/bin/xdg-user-dirs-update 152 + # Override default mimeapps 153 + environment.variables.XDG_DATA_DIRS = [ "${mimeAppsList}/share" ]; 166 154 167 - ${pkgs.gnome3.gnome-session}/bin/gnome-session ${optionalString cfg.debug "--debug"} & 168 - waitPID=$! 169 - ''; 170 - }; 155 + # Override GSettings schemas 156 + environment.variables.NIX_GSETTINGS_OVERRIDES_DIR = "${nixos-gsettings-desktop-schemas}/share/gsettings-schemas/nixos-gsettings-overrides/glib-2.0/schemas"; 171 157 172 - services.xserver.updateDbusEnvironment = true; 158 + # Let nautilus find extensions 159 + # TODO: Create nautilus-with-extensions package 160 + environment.variables.NAUTILUS_EXTENSION_DIR = "${config.system.path}/lib/nautilus/extensions-3.0"; 173 161 174 162 environment.variables.GIO_EXTRA_MODULES = [ "${lib.getLib pkgs.gnome3.dconf}/lib/gio/modules" 175 163 "${pkgs.gnome3.glib-networking.out}/lib/gio/modules" 176 164 "${pkgs.gnome3.gvfs}/lib/gio/modules" ]; 177 165 environment.systemPackages = pkgs.gnome3.corePackages ++ cfg.sessionPath 178 - ++ (removePackagesByName pkgs.gnome3.optionalPackages config.environment.gnome3.excludePackages); 166 + ++ (removePackagesByName pkgs.gnome3.optionalPackages config.environment.gnome3.excludePackages) ++ [ 167 + pkgs.xdg-user-dirs # Update user dirs as described in http://freedesktop.org/wiki/Software/xdg-user-dirs/ 168 + ]; 179 169 180 170 # Use the correct gnome3 packageSet 181 171 networking.networkmanager.basePackages =
+48 -41
nixos/modules/services/x11/display-managers/default.nix
··· 27 27 Xft.hintstyle: hintslight 28 28 ''; 29 29 30 - # file provided by services.xserver.displayManager.session.script 31 - xsession = wm: dm: pkgs.writeScript "xsession" 30 + # file provided by services.xserver.displayManager.session.wrapper 31 + xsessionWrapper = pkgs.writeScript "xsession-wrapper" 32 32 '' 33 33 #! ${pkgs.bash}/bin/bash 34 34 35 - # Expected parameters: 36 - # $1 = <desktop-manager>+<window-manager> 37 - 38 - # Actual parameters (FIXME): 39 - # SDDM is calling this script like the following: 40 - # $1 = /nix/store/xxx-xsession (= $0) 41 - # $2 = <desktop-manager>+<window-manager> 42 - # SLiM is using the following parameter: 43 - # $1 = /nix/store/xxx-xsession <desktop-manager>+<window-manager> 44 - # LightDM keeps the double quotes: 45 - # $1 = /nix/store/xxx-xsession "<desktop-manager>+<window-manager>" 46 - # The fake/auto display manager doesn't use any parameters and GDM is 47 - # broken. 48 - # If you want to "debug" this script don't print the parameters to stdout 49 - # or stderr because this script will be executed multiple times and the 50 - # output won't be visible in the log when the script is executed for the 51 - # first time (e.g. append them to a file instead)! 52 - 53 - # All of the above cases are handled by the following hack (FIXME). 54 - # Since this line is *very important* for *all display managers* it is 55 - # very important to test changes to the following line with all display 56 - # managers: 57 - if [ "''${1:0:1}" = "/" ]; then eval exec "$1" "$2" ; fi 58 - 59 - # Now it should be safe to assume that the script was called with the 60 - # expected parameters. 35 + # Shared environment setup for graphical sessions. 61 36 62 37 . /etc/profile 63 38 cd "$HOME" 64 39 65 - # The first argument of this script is the session type. 66 - sessionType="$1" 67 - if [ "$sessionType" = default ]; then sessionType=""; fi 68 - 69 40 ${optionalString cfg.startDbusSession '' 70 41 if test -z "$DBUS_SESSION_BUS_ADDRESS"; then 71 - exec ${pkgs.dbus.dbus-launch} --exit-with-session "$0" "$sessionType" 42 + exec ${pkgs.dbus.dbus-launch} --exit-with-session "$0" "$@" 72 43 fi 73 44 ''} 74 45 75 46 ${optionalString cfg.displayManager.job.logToJournal '' 76 47 if [ -z "$_DID_SYSTEMD_CAT" ]; then 77 48 export _DID_SYSTEMD_CAT=1 78 - exec ${config.systemd.package}/bin/systemd-cat -t xsession "$0" "$sessionType" 49 + exec ${config.systemd.package}/bin/systemd-cat -t xsession "$0" "$@" 79 50 fi 80 51 ''} 81 52 ··· 90 61 } 91 62 92 63 # Publish access credentials in the root window. 93 - ${config.hardware.pulseaudio.package.out}/bin/pactl load-module module-x11-publish "display=$DISPLAY" 64 + if ${config.hardware.pulseaudio.package.out}/bin/pulseaudio --dump-modules | grep module-x11-publish &> /dev/null; then 65 + ${config.hardware.pulseaudio.package.out}/bin/pactl load-module module-x11-publish "display=$DISPLAY" 66 + fi 94 67 ''} 95 68 96 69 # Tell systemd about our $DISPLAY and $XAUTHORITY. ··· 101 74 ${config.systemd.package}/bin/systemctl --user import-environment DISPLAY XAUTHORITY DBUS_SESSION_BUS_ADDRESS 102 75 103 76 # Load X defaults. 77 + # FIXME: Check XDG_SESSION_TYPE against x11 104 78 ${xorg.xrdb}/bin/xrdb -merge ${xresourcesXft} 105 79 if test -e ~/.Xresources; then 106 80 ${xorg.xrdb}/bin/xrdb -merge ~/.Xresources ··· 132 106 # Allow the user to setup a custom session type. 133 107 if test -x ~/.xsession; then 134 108 exec ~/.xsession 109 + fi 110 + 111 + if test "$1"; then 112 + # Run the supplied session command. Remove any double quotes with eval. 113 + eval exec "$@" 135 114 else 136 - if test "$sessionType" = "custom"; then 137 - sessionType="" # fall-thru if there is no ~/.xsession 138 - fi 115 + # Fall back to the default window/desktopManager 116 + exec ${cfg.displayManager.session.script} 139 117 fi 118 + ''; 119 + 120 + # file provided by services.xserver.displayManager.session.script 121 + xsession = wm: dm: pkgs.writeScript "xsession" 122 + '' 123 + #! ${pkgs.bash}/bin/bash 124 + 125 + # Legacy session script used to construct .desktop files from 126 + # `services.xserver.displayManager.session` entries. Called from 127 + # `sessionWrapper`. 128 + 129 + # Expected parameters: 130 + # $1 = <desktop-manager>+<window-manager> 131 + 132 + # The first argument of this script is the session type. 133 + sessionType="$1" 134 + if [ "$sessionType" = default ]; then sessionType=""; fi 140 135 141 136 # The session type is "<desktop-manager>+<window-manager>", so 142 137 # extract those (see: ··· 186 181 allowSubstitutes = false; 187 182 } 188 183 '' 189 - mkdir -p "$out" 184 + mkdir -p "$out/share/xsessions" 190 185 ${concatMapStrings (n: '' 191 - cat - > "$out/${n}.desktop" << EODESKTOP 186 + cat - > "$out/share/xsessions/${n}.desktop" << EODESKTOP 192 187 [Desktop Entry] 193 188 Version=1.0 194 189 Type=XSession 195 190 TryExec=${cfg.displayManager.session.script} 196 191 Exec=${cfg.displayManager.session.script} "${n}" 197 - X-GDM-BypassXsession=true 198 192 Name=${n} 199 193 Comment= 200 194 EODESKTOP 201 195 '') names} 196 + 197 + ${concatMapStrings (pkg: '' 198 + ${xorg.lndir}/bin/lndir ${pkg}/share/xsessions $out/share/xsessions 199 + '') cfg.displayManager.extraSessionFilePackages} 202 200 ''; 203 201 204 202 in ··· 245 243 ''; 246 244 }; 247 245 246 + extraSessionFilePackages = mkOption { 247 + type = types.listOf types.package; 248 + default = []; 249 + description = '' 250 + A list of packages containing xsession files to be passed to the display manager. 251 + ''; 252 + }; 253 + 248 254 session = mkOption { 249 255 default = []; 250 256 example = literalExample ··· 280 286 (filter (w: d.name != "none" || w.name != "none") wm)); 281 287 desktops = mkDesktops names; 282 288 script = xsession wm dm; 289 + wrapper = xsessionWrapper; 283 290 }; 284 291 }; 285 292
+3 -1
nixos/modules/services/x11/display-managers/gdm.nix
··· 109 109 environment = { 110 110 GDM_X_SERVER_EXTRA_ARGS = toString 111 111 (filter (arg: arg != "-terminate") cfg.xserverArgs); 112 - GDM_SESSIONS_DIR = "${cfg.session.desktops}"; 112 + GDM_SESSIONS_DIR = "${cfg.session.desktops}/share/xsessions"; 113 113 # Find the mouse 114 114 XCURSOR_PATH = "~/.icons:${pkgs.gnome3.adwaita-icon-theme}/share/icons"; 115 115 }; ··· 172 172 [debug] 173 173 ${optionalString cfg.gdm.debug "Enable=true"} 174 174 ''; 175 + 176 + environment.etc."gdm/Xsession".source = config.services.xserver.displayManager.session.wrapper; 175 177 176 178 # GDM LFS PAM modules, adapted somehow to NixOS 177 179 security.pam.services = {
+1 -1
nixos/modules/services/x11/display-managers/lightdm-greeters/gtk.nix
··· 23 23 makeWrapper ${pkgs.lightdm_gtk_greeter}/sbin/lightdm-gtk-greeter \ 24 24 $out/greeter \ 25 25 --prefix PATH : "${pkgs.glibc.bin}/bin" \ 26 - --set GDK_PIXBUF_MODULE_FILE "${pkgs.gdk_pixbuf.out}/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache" \ 26 + --set GDK_PIXBUF_MODULE_FILE "${pkgs.librsvg.out}/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache" \ 27 27 --set GTK_PATH "${theme}:${pkgs.gtk3.out}" \ 28 28 --set GTK_EXE_PREFIX "${theme}" \ 29 29 --set GTK_DATA_PREFIX "${theme}" \
+3 -11
nixos/modules/services/x11/display-managers/lightdm.nix
··· 45 45 greeter-user = ${config.users.users.lightdm.name} 46 46 greeters-directory = ${cfg.greeter.package} 47 47 ''} 48 - sessions-directory = ${dmcfg.session.desktops} 48 + sessions-directory = ${dmcfg.session.desktops}/share/xsessions 49 49 50 50 [Seat:*] 51 51 xserver-command = ${xserverWrapper} 52 - session-wrapper = ${dmcfg.session.script} 52 + session-wrapper = ${dmcfg.session.wrapper} 53 53 ${optionalString cfg.greeter.enable '' 54 54 greeter-session = ${cfg.greeter.name} 55 55 ''} ··· 176 176 LightDM auto-login requires services.xserver.displayManager.lightdm.autoLogin.user to be set 177 177 ''; 178 178 } 179 - { assertion = cfg.autoLogin.enable -> elem defaultSessionName dmcfg.session.names; 179 + { assertion = cfg.autoLogin.enable -> dmDefault != "none" || wmDefault != "none"; 180 180 message = '' 181 181 LightDM auto-login requires that services.xserver.desktopManager.default and 182 182 services.xserver.windowMananger.default are set to valid values. The current 183 183 default session: ${defaultSessionName} is not valid. 184 - ''; 185 - } 186 - { assertion = hasDefaultUserSession -> elem defaultSessionName dmcfg.session.names; 187 - message = '' 188 - services.xserver.desktopManager.default and 189 - services.xserver.windowMananger.default are not set to valid 190 - values. The current default session: ${defaultSessionName} 191 - is not valid. 192 184 ''; 193 185 } 194 186 { assertion = !cfg.greeter.enable -> (cfg.autoLogin.enable && cfg.autoLogin.timeout == 0);
+2 -2
nixos/modules/services/x11/display-managers/sddm.nix
··· 49 49 MinimumVT=${toString (if xcfg.tty != null then xcfg.tty else 7)} 50 50 ServerPath=${xserverWrapper} 51 51 XephyrPath=${pkgs.xorg.xorgserver.out}/bin/Xephyr 52 - SessionCommand=${dmcfg.session.script} 53 - SessionDir=${dmcfg.session.desktops} 52 + SessionCommand=${dmcfg.session.wrapper} 53 + SessionDir=${dmcfg.session.desktops}/share/xsessions 54 54 XauthPath=${pkgs.xorg.xauth}/bin/xauth 55 55 DisplayCommand=${Xsetup} 56 56 DisplayStopCommand=${Xstop}
+2 -2
nixos/modules/services/x11/display-managers/slim.nix
··· 13 13 xauth_path ${dmcfg.xauthBin} 14 14 default_xserver ${dmcfg.xserverBin} 15 15 xserver_arguments ${toString dmcfg.xserverArgs} 16 - sessiondir ${dmcfg.session.desktops} 17 - login_cmd exec ${pkgs.runtimeShell} ${dmcfg.session.script} "%session" 16 + sessiondir ${dmcfg.session.desktops}/share/xsessions 17 + login_cmd exec ${pkgs.runtimeShell} ${dmcfg.session.wrapper} "%session" 18 18 halt_cmd ${config.systemd.package}/sbin/shutdown -h now 19 19 reboot_cmd ${config.systemd.package}/sbin/shutdown -r now 20 20 logfile /dev/stderr
+1
nixos/modules/system/boot/loader/systemd-boot/systemd-boot-builder.py
··· 43 43 f.write("default nixos-generation-%d\n" % (generation)) 44 44 if not @editor@: 45 45 f.write("editor 0"); 46 + f.write("console-mode @consoleMode@\n"); 46 47 os.rename("@efiSysMountPoint@/loader/loader.conf.tmp", "@efiSysMountPoint@/loader/loader.conf") 47 48 48 49 def profile_path(profile, generation, name):
+34
nixos/modules/system/boot/loader/systemd-boot/systemd-boot.nix
··· 22 22 23 23 editor = if cfg.editor then "True" else "False"; 24 24 25 + inherit (cfg) consoleMode; 26 + 25 27 inherit (efi) efiSysMountPoint canTouchEfiVariables; 26 28 }; 27 29 in { ··· 50 52 gaining root access by passing init=/bin/sh as a kernel 51 53 parameter. However, it is enabled by default for backwards 52 54 compatibility. 55 + ''; 56 + }; 57 + 58 + consoleMode = mkOption { 59 + default = "keep"; 60 + 61 + type = types.enum [ "0" "1" "2" "auto" "max" "keep" ]; 62 + 63 + description = '' 64 + The resolution of the console. The following values are valid: 65 + </para> 66 + <para> 67 + <itemizedlist> 68 + <listitem><para> 69 + <literal>"0"</literal>: Standard UEFI 80x25 mode 70 + </para></listitem> 71 + <listitem><para> 72 + <literal>"1"</literal>: 80x50 mode, not supported by all devices 73 + </para></listitem> 74 + <listitem><para> 75 + <literal>"2"</literal>: The first non-standard mode provided by the device firmware, if any 76 + </para></listitem> 77 + <listitem><para> 78 + <literal>"auto"</literal>: Pick a suitable mode automatically using heuristics 79 + </para></listitem> 80 + <listitem><para> 81 + <literal>"max"</literal>: Pick the highest-numbered available mode 82 + </para></listitem> 83 + <listitem><para> 84 + <literal>"keep"</literal>: Keep the mode selected by firmware (the default) 85 + </para></listitem> 86 + </itemizedlist> 53 87 ''; 54 88 }; 55 89 };
+12 -3
nixos/modules/tasks/trackpoint.nix
··· 55 55 ''; 56 56 }; 57 57 58 + device = mkOption { 59 + default = "TPPS/2 IBM TrackPoint"; 60 + type = types.str; 61 + description = '' 62 + The device name of the trackpoint. You can check with xinput. 63 + Some newer devices (example x1c6) use "TPPS/2 Elan TrackPoint". 64 + ''; 65 + }; 66 + 58 67 }; 59 68 60 69 }; ··· 68 77 (mkIf cfg.enable { 69 78 services.udev.extraRules = 70 79 '' 71 - ACTION=="add|change", SUBSYSTEM=="input", ATTR{name}=="TPPS/2 IBM TrackPoint", ATTR{device/speed}="${toString cfg.speed}", ATTR{device/sensitivity}="${toString cfg.sensitivity}" 80 + ACTION=="add|change", SUBSYSTEM=="input", ATTR{name}=="${cfg.device}", ATTR{device/speed}="${toString cfg.speed}", ATTR{device/sensitivity}="${toString cfg.sensitivity}" 72 81 ''; 73 82 74 83 system.activationScripts.trackpoint = 75 84 '' 76 - ${config.systemd.package}/bin/udevadm trigger --attr-match=name="TPPS/2 IBM TrackPoint" 85 + ${config.systemd.package}/bin/udevadm trigger --attr-match=name="${cfg.device}" 77 86 ''; 78 87 }) 79 88 ··· 81 90 services.xserver.inputClassSections = 82 91 ['' 83 92 Identifier "Trackpoint Wheel Emulation" 84 - MatchProduct "${if cfg.fakeButtons then "PS/2 Generic Mouse" else "ETPS/2 Elantech TrackPoint|Elantech PS/2 TrackPoint|TPPS/2 IBM TrackPoint|DualPoint Stick|Synaptics Inc. Composite TouchPad / TrackPoint|ThinkPad USB Keyboard with TrackPoint|USB Trackpoint pointing device|Composite TouchPad / TrackPoint"}" 93 + MatchProduct "${if cfg.fakeButtons then "PS/2 Generic Mouse" else "ETPS/2 Elantech TrackPoint|Elantech PS/2 TrackPoint|TPPS/2 IBM TrackPoint|DualPoint Stick|Synaptics Inc. Composite TouchPad / TrackPoint|ThinkPad USB Keyboard with TrackPoint|USB Trackpoint pointing device|Composite TouchPad / TrackPoint|${cfg.device}"}" 85 94 MatchDevicePath "/dev/input/event*" 86 95 Option "EmulateWheel" "true" 87 96 Option "EmulateWheelButton" "2"
+1
nixos/release.nix
··· 256 256 tests.buildbot = callTest tests/buildbot.nix {}; 257 257 tests.cadvisor = callTestOnMatchingSystems ["x86_64-linux"] tests/cadvisor.nix {}; 258 258 tests.ceph = callTestOnMatchingSystems ["x86_64-linux"] tests/ceph.nix {}; 259 + tests.cfssl = callTestOnMatchingSystems ["x86_64-linux"] tests/cfssl.nix {}; 259 260 tests.chromium = (callSubTestsOnMatchingSystems ["x86_64-linux"] tests/chromium.nix {}).stable or {}; 260 261 tests.cjdns = callTest tests/cjdns.nix {}; 261 262 tests.cloud-init = callTest tests/cloud-init.nix {};
+3 -1
nixos/tests/acme.nix
··· 12 12 ''; 13 13 }); 14 14 15 - pythonPackages = (super.python.override { 15 + # Override certifi so that it accepts fake certificate for Let's Encrypt 16 + # Need to override the attribute used by simp_le, which is python3Packages 17 + python3Packages = (super.python3.override { 16 18 packageOverrides = lib.const (pysuper: { 17 19 certifi = pysuper.certifi.overridePythonAttrs (attrs: { 18 20 postPatch = (attrs.postPatch or "") + ''
+67
nixos/tests/cfssl.nix
··· 1 + import ./make-test.nix ({ pkgs, ...} : { 2 + name = "cfssl"; 3 + 4 + machine = { config, lib, pkgs, ... }: 5 + { 6 + networking.firewall.allowedTCPPorts = [ config.services.cfssl.port ]; 7 + 8 + services.cfssl.enable = true; 9 + systemd.services.cfssl.after = [ "cfssl-init.service" ]; 10 + 11 + systemd.services.cfssl-init = { 12 + description = "Initialize the cfssl CA"; 13 + wantedBy = [ "multi-user.target" ]; 14 + serviceConfig = { 15 + User = "cfssl"; 16 + Type = "oneshot"; 17 + WorkingDirectory = config.services.cfssl.dataDir; 18 + }; 19 + script = with pkgs; '' 20 + ${cfssl}/bin/cfssl genkey -initca ${pkgs.writeText "ca.json" (builtins.toJSON { 21 + hosts = [ "ca.example.com" ]; 22 + key = { 23 + algo = "rsa"; size = 4096; }; 24 + names = [ 25 + { 26 + C = "US"; 27 + L = "San Francisco"; 28 + O = "Internet Widgets, LLC"; 29 + OU = "Certificate Authority"; 30 + ST = "California"; 31 + } 32 + ]; 33 + })} | ${cfssl}/bin/cfssljson -bare ca 34 + ''; 35 + }; 36 + }; 37 + 38 + testScript = 39 + let 40 + cfsslrequest = with pkgs; writeScript "cfsslrequest" '' 41 + curl -X POST -H "Content-Type: application/json" -d @${csr} \ 42 + http://localhost:8888/api/v1/cfssl/newkey | ${cfssl}/bin/cfssljson /tmp/certificate 43 + ''; 44 + csr = pkgs.writeText "csr.json" (builtins.toJSON { 45 + CN = "www.example.com"; 46 + hosts = [ "example.com" "www.example.com" ]; 47 + key = { 48 + algo = "rsa"; 49 + size = 2048; 50 + }; 51 + names = [ 52 + { 53 + C = "US"; 54 + L = "San Francisco"; 55 + O = "Example Company, LLC"; 56 + OU = "Operations"; 57 + ST = "California"; 58 + } 59 + ]; 60 + }); 61 + in 62 + '' 63 + $machine->waitForUnit('cfssl.service'); 64 + $machine->waitUntilSucceeds('${cfsslrequest}'); 65 + $machine->succeed('ls /tmp/certificate-key.pem'); 66 + ''; 67 + })
+1
nixos/tests/gnome3.nix
··· 15 15 services.xserver.displayManager.lightdm.autoLogin.enable = true; 16 16 services.xserver.displayManager.lightdm.autoLogin.user = "alice"; 17 17 services.xserver.desktopManager.gnome3.enable = true; 18 + services.xserver.desktopManager.default = "gnome"; 18 19 19 20 virtualisation.memorySize = 1024; 20 21 };
+4 -1
nixos/tests/graphite.nix
··· 1 - import ./make-test.nix ({ ... } : 1 + import ./make-test.nix ({ pkgs, ... } : 2 2 { 3 3 name = "graphite"; 4 4 nodes = { ··· 11 11 api = { 12 12 enable = true; 13 13 port = 8082; 14 + finders = [ pkgs.python27Packages.influxgraph ]; 14 15 }; 15 16 carbon.enableCache = true; 16 17 seyren.enable = true; 17 18 pager.enable = true; 19 + beacon.enable = true; 18 20 }; 19 21 }; 20 22 }; ··· 25 27 $one->waitForUnit("graphiteWeb.service"); 26 28 $one->waitForUnit("graphiteApi.service"); 27 29 $one->waitForUnit("graphitePager.service"); 30 + $one->waitForUnit("graphite-beacon.service"); 28 31 $one->waitForUnit("carbonCache.service"); 29 32 $one->waitForUnit("seyren.service"); 30 33 # The services above are of type "simple". systemd considers them active immediately
+6 -2
nixos/tests/netdata.nix
··· 19 19 startAll; 20 20 21 21 $netdata->waitForUnit("netdata.service"); 22 - # check if netdata can read disk ops for root owned processes. 23 - # if > 0, successful. verifies both netdata working and 22 + 23 + # check if the netdata main page loads. 24 + $netdata->succeed("curl --fail http://localhost:19999/"); 25 + 26 + # check if netdata can read disk ops for root owned processes. 27 + # if > 0, successful. verifies both netdata working and 24 28 # apps.plugin has elevated capabilities. 25 29 my $cmd = <<'CMD'; 26 30 curl -s http://localhost:19999/api/v1/data\?chart=users.pwrites | \
+1
pkgs/applications/altcoins/default.nix
··· 86 86 }; 87 87 88 88 parity = callPackage ./parity { }; 89 + parity-beta = callPackage ./parity/beta.nix { }; 89 90 parity-ui = callPackage ./parity-ui { }; 90 91 91 92 particl-core = callPackage ./particl/particl-core.nix { boost = boost165; miniupnpc = miniupnpc_2; };
+7
pkgs/applications/altcoins/parity/beta.nix
··· 1 + let 2 + version = "2.0.1"; 3 + sha256 = "0rfq0izpswfwbyvr5kb6zjyf6sd7l1706c0sp7ccy6ykdfb4v6zs"; 4 + cargoSha256 = "1ij17bfwvikqi5aj71j1nwf3jhkf3y9a0kwydajviwal47p9grl9"; 5 + patches = [ ./patches/vendored-sources-2.0.patch ]; 6 + in 7 + import ./parity.nix { inherit version sha256 cargoSha256 patches; }
+4 -4
pkgs/applications/altcoins/parity/default.nix
··· 1 1 let 2 - version = "1.10.9"; 3 - sha256 = "1irfksx887vvvdf97q26qacn22kmyj8fgb3ghh9wv5qnzrn3564g"; 4 - cargoSha256 = "0rzhabyhprmcg0cdmibbb8zgqf6z4izsdq8m060mppkkv675x0lf"; 5 - patches = [ ./patches/vendored-sources-1.10.patch ]; 2 + version = "1.11.8"; 3 + sha256 = "0qk5vl8ql3pr9pz5iz7whahwqi1fcbsf8kphn6z4grgc87id7b19"; 4 + cargoSha256 = "0p2idd36cyzp2ax81k533bdma4hz0ws2981qj2s7jnhvmj4941l8"; 5 + patches = [ ./patches/vendored-sources-1.11.patch ]; 6 6 in 7 7 import ./parity.nix { inherit version sha256 cargoSha256 patches; }
+7 -2
pkgs/applications/altcoins/parity/parity.nix
··· 10 10 , pkgconfig 11 11 , openssl 12 12 , systemd 13 + , cmake 14 + , perl 13 15 }: 14 16 15 17 rustPlatform.buildRustPackage rec { ··· 18 20 19 21 src = fetchFromGitHub { 20 22 owner = "paritytech"; 21 - repo = "parity"; 23 + repo = "parity-ethereum"; 22 24 rev = "v${version}"; 23 25 inherit sha256; 24 26 }; 25 27 26 - buildInputs = [ pkgconfig systemd.lib systemd.dev openssl openssl.dev ]; 28 + buildInputs = [ 29 + pkgconfig cmake perl 30 + systemd.lib systemd.dev openssl openssl.dev 31 + ]; 27 32 28 33 # Some checks failed 29 34 doCheck = false;
+11 -12
pkgs/applications/altcoins/parity/patches/vendored-sources-1.10.patch pkgs/applications/altcoins/parity/patches/vendored-sources-1.11.patch
··· 1 1 diff --git a/.cargo/config b/.cargo/config 2 - index 72652ad2f..b21c6aa7b 100644 2 + index 72652ad2f..57c5c2f8f 100644 3 3 --- a/.cargo/config 4 4 +++ b/.cargo/config 5 5 @@ -1,3 +1,108 @@ ··· 52 52 +branch = "master" 53 53 +replace-with = "vendored-sources" 54 54 + 55 - +[source."https://github.com/paritytech/hidapi-rs"] 56 - +git = "https://github.com/paritytech/hidapi-rs" 55 + +[source."https://github.com/paritytech/daemonize"] 56 + +git = "https://github.com/paritytech/daemonize" 57 57 +branch = "master" 58 58 +replace-with = "vendored-sources" 59 59 + 60 - +[source."https://github.com/paritytech/hyper"] 61 - +git = "https://github.com/paritytech/hyper" 60 + +[source."https://github.com/paritytech/hidapi-rs"] 61 + +git = "https://github.com/paritytech/hidapi-rs" 62 62 +branch = "master" 63 63 +replace-with = "vendored-sources" 64 64 + 65 65 +[source."https://github.com/paritytech/jsonrpc.git"] 66 66 +git = "https://github.com/paritytech/jsonrpc.git" 67 - +branch = "parity-1.10" 67 + +branch = "parity-1.11" 68 68 +replace-with = "vendored-sources" 69 69 + 70 70 +[source."https://github.com/paritytech/libusb-rs"] ··· 77 77 +branch = "master" 78 78 +replace-with = "vendored-sources" 79 79 + 80 + +[source."https://github.com/paritytech/ring"] 81 + +git = "https://github.com/paritytech/ring" 82 + +branch = "master" 83 + +replace-with = "vendored-sources" 84 + + 80 85 +[source."https://github.com/paritytech/rust-ctrlc.git"] 81 86 +git = "https://github.com/paritytech/rust-ctrlc.git" 82 87 +branch = "master" ··· 102 107 +branch = "master" 103 108 +replace-with = "vendored-sources" 104 109 + 105 - +[source."https://github.com/tailhook/rotor"] 106 - +git = "https://github.com/tailhook/rotor" 107 - +branch = "master" 108 - +replace-with = "vendored-sources" 109 - + 110 110 +[source."https://github.com/tomusdrw/ws-rs"] 111 111 +git = "https://github.com/tomusdrw/ws-rs" 112 112 +branch = "master" 113 113 +replace-with = "vendored-sources" 114 - +
+98
pkgs/applications/altcoins/parity/patches/vendored-sources-2.0.patch
··· 1 + diff --git a/.cargo/config b/.cargo/config 2 + index 72652ad2f..3c0eca89a 100644 3 + --- a/.cargo/config 4 + +++ b/.cargo/config 5 + @@ -1,3 +1,93 @@ 6 + [target.x86_64-pc-windows-msvc] 7 + # Link the C runtime statically ; https://github.com/paritytech/parity/issues/6643 8 + rustflags = ["-Ctarget-feature=+crt-static"] 9 + + 10 + +[source."https://github.com/alexcrichton/mio-named-pipes"] 11 + +git = "https://github.com/alexcrichton/mio-named-pipes" 12 + +branch = "master" 13 + +replace-with = "vendored-sources" 14 + + 15 + +[source."https://github.com/nikvolf/parity-tokio-ipc"] 16 + +git = "https://github.com/nikvolf/parity-tokio-ipc" 17 + +branch = "master" 18 + +replace-with = "vendored-sources" 19 + + 20 + +[source."https://github.com/nikvolf/tokio-named-pipes"] 21 + +git = "https://github.com/nikvolf/tokio-named-pipes" 22 + +branch = "master" 23 + +replace-with = "vendored-sources" 24 + + 25 + +[source."https://github.com/paritytech/app-dirs-rs"] 26 + +git = "https://github.com/paritytech/app-dirs-rs" 27 + +branch = "master" 28 + +replace-with = "vendored-sources" 29 + + 30 + +[source."https://github.com/paritytech/bn"] 31 + +git = "https://github.com/paritytech/bn" 32 + +branch = "master" 33 + +replace-with = "vendored-sources" 34 + + 35 + +[source."https://github.com/paritytech/daemonize"] 36 + +git = "https://github.com/paritytech/daemonize" 37 + +branch = "master" 38 + +replace-with = "vendored-sources" 39 + + 40 + +[source."https://github.com/paritytech/hidapi-rs"] 41 + +git = "https://github.com/paritytech/hidapi-rs" 42 + +branch = "master" 43 + +replace-with = "vendored-sources" 44 + + 45 + +[source."https://github.com/paritytech/jsonrpc.git"] 46 + +git = "https://github.com/paritytech/jsonrpc.git" 47 + +branch = "parity-1.11" 48 + +replace-with = "vendored-sources" 49 + + 50 + +[source."https://github.com/paritytech/libusb-rs"] 51 + +git = "https://github.com/paritytech/libusb-rs" 52 + +branch = "master" 53 + +replace-with = "vendored-sources" 54 + + 55 + +[source."https://github.com/paritytech/libusb-sys"] 56 + +git = "https://github.com/paritytech/libusb-sys" 57 + +branch = "master" 58 + +replace-with = "vendored-sources" 59 + + 60 + +[source."https://github.com/paritytech/parity-common"] 61 + +git = "https://github.com/paritytech/parity-common" 62 + +branch = "master" 63 + +replace-with = "vendored-sources" 64 + + 65 + +[source."https://github.com/paritytech/ring"] 66 + +git = "https://github.com/paritytech/ring" 67 + +branch = "master" 68 + +replace-with = "vendored-sources" 69 + + 70 + +[source."https://github.com/paritytech/rust-ctrlc.git"] 71 + +git = "https://github.com/paritytech/rust-ctrlc.git" 72 + +branch = "master" 73 + +replace-with = "vendored-sources" 74 + + 75 + +[source."https://github.com/paritytech/rust-rocksdb"] 76 + +git = "https://github.com/paritytech/rust-rocksdb" 77 + +branch = "master" 78 + +replace-with = "vendored-sources" 79 + + 80 + +[source."https://github.com/paritytech/rust-secp256k1"] 81 + +git = "https://github.com/paritytech/rust-secp256k1" 82 + +branch = "master" 83 + +replace-with = "vendored-sources" 84 + + 85 + +[source."https://github.com/paritytech/rust-snappy"] 86 + +git = "https://github.com/paritytech/rust-snappy" 87 + +branch = "master" 88 + +replace-with = "vendored-sources" 89 + + 90 + +[source."https://github.com/paritytech/trezor-sys"] 91 + +git = "https://github.com/paritytech/trezor-sys" 92 + +branch = "master" 93 + +replace-with = "vendored-sources" 94 + + 95 + +[source."https://github.com/tomusdrw/ws-rs"] 96 + +git = "https://github.com/tomusdrw/ws-rs" 97 + +branch = "master" 98 + +replace-with = "vendored-sources"
+5 -5
pkgs/applications/audio/ams-lv2/default.nix
··· 1 - { stdenv, fetchFromGitHub, cairo, fftw, gtkmm2, lv2, lvtk, pkgconfig, python }: 1 + { stdenv, fetchFromGitHub, cairo, fftw, gtkmm2, lv2, lvtk, pkgconfig, python3 }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "ams-lv2-${version}"; ··· 12 12 }; 13 13 14 14 nativeBuildInputs = [ pkgconfig ]; 15 - buildInputs = [ cairo fftw gtkmm2 lv2 lvtk python ]; 15 + buildInputs = [ cairo fftw gtkmm2 lv2 lvtk ]; 16 16 17 - configurePhase = "python waf configure --prefix=$out"; 17 + configurePhase = "${python3.interpreter} waf configure --prefix=$out"; 18 18 19 - buildPhase = "python waf"; 19 + buildPhase = "${python3.interpreter} waf"; 20 20 21 - installPhase = "python waf install"; 21 + installPhase = "${python3.interpreter} waf install"; 22 22 23 23 meta = with stdenv.lib; { 24 24 description = "An LV2 port of the internal modules found in Alsa Modular Synth";
+65
pkgs/applications/audio/cadence/default.nix
··· 1 + { stdenv 2 + , fetchurl 3 + , pkgconfig 4 + , qtbase 5 + , makeWrapper 6 + , jack2Full 7 + , python3Packages 8 + , a2jmidid 9 + }: 10 + 11 + stdenv.mkDerivation rec { 12 + version = "0.9.0"; 13 + name = "cadence"; 14 + 15 + src = fetchurl { 16 + url = "https://github.com/falkTX/Cadence/archive/v${version}.tar.gz"; 17 + sha256 = "07z1mnb0bmldb3i31bgw816pnvlvr9gawr51rpx3mhixg5wpiqzb"; 18 + }; 19 + 20 + buildInputs = [ 21 + makeWrapper 22 + pkgconfig 23 + qtbase 24 + ]; 25 + 26 + apps = [ 27 + "cadence" 28 + "cadence-jacksettings" 29 + "cadence-pulse2loopback" 30 + "claudia" 31 + "cadence-aloop-daemon" 32 + "cadence-logs" 33 + "cadence-render" 34 + "catarina" 35 + "claudia-launcher" 36 + "cadence-pulse2jack" 37 + "cadence-session-start" 38 + "catia" 39 + ]; 40 + 41 + makeFlags = '' 42 + PREFIX="" 43 + DESTDIR=$(out) 44 + ''; 45 + 46 + propagatedBuildInputs = with python3Packages; [ pyqt5 ]; 47 + 48 + postInstall = '' 49 + # replace with our own wrappers. 50 + for app in $apps; do 51 + rm $out/bin/$app 52 + makeWrapper ${python3Packages.python.interpreter} $out/bin/$app \ 53 + --set PYTHONPATH "$PYTHONPATH:$out/share/cadence" \ 54 + --add-flags "-O $out/share/cadence/src/$app.py" 55 + done 56 + ''; 57 + 58 + meta = { 59 + homepage = https://github.com/falkTX/Cadence/; 60 + description = "Collection of tools useful for audio production"; 61 + license = stdenv.lib.licenses.mit; 62 + maintainers = with stdenv.lib.maintainers; [ genesis ]; 63 + platforms = stdenv.lib.platforms.linux; 64 + }; 65 + }
+81
pkgs/applications/audio/reaper/default.nix
··· 1 + { stdenv, fetchurl, autoPatchelfHook, makeWrapper 2 + , alsaLib, xorg 3 + , fetchFromGitHub, pkgconfig, gnome3 4 + , gnome2, gdk_pixbuf, cairo, glib, freetype 5 + , libpulseaudio 6 + }: 7 + 8 + let 9 + libSwell = stdenv.mkDerivation { 10 + name = "libSwell"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "justinfrankel"; 14 + repo = "WDL"; 15 + rev = "e87f5bdee7327b63398366fde6ec0a3f08bf600d"; 16 + sha256 = "147idjqc6nc23w9krl8a9w571k5jx190z3id6ir6cr8zsx0lakdb"; 17 + }; 18 + 19 + nativeBuildInputs = [ pkgconfig ]; 20 + buildInputs = [ gnome3.gtk ]; 21 + 22 + buildPhase = '' 23 + cd WDL/swell 24 + make 25 + ''; 26 + 27 + installPhase = '' 28 + mv libSwell.so $out 29 + ''; 30 + }; 31 + 32 + in stdenv.mkDerivation rec { 33 + name = "reaper-${version}"; 34 + version = "5.94"; 35 + 36 + src = fetchurl { 37 + url = "https://www.reaper.fm/files/${stdenv.lib.versions.major version}.x/reaper${builtins.replaceStrings ["."] [""] version}_linux_x86_64.tar.xz"; 38 + sha256 = "16g5q12wh1cfbl9wq03vb7vpsd870k7i7883z0wn492x7y9syz8z"; 39 + }; 40 + 41 + nativeBuildInputs = [ autoPatchelfHook makeWrapper ]; 42 + 43 + buildInputs = [ 44 + alsaLib 45 + stdenv.cc.cc.lib 46 + 47 + xorg.libX11 48 + xorg.libXi 49 + 50 + gnome3.gtk 51 + gdk_pixbuf 52 + gnome2.pango 53 + cairo 54 + glib 55 + freetype 56 + ]; 57 + 58 + dontBuild = true; 59 + 60 + installPhase = '' 61 + ./install-reaper.sh --install $out/opt 62 + rm $out/opt/REAPER/uninstall-reaper.sh 63 + 64 + cp ${libSwell.out} $out/opt/REAPER/libSwell.so 65 + 66 + wrapProgram $out/opt/REAPER/reaper \ 67 + --prefix LD_LIBRARY_PATH : ${libpulseaudio}/lib 68 + 69 + mkdir $out/bin 70 + ln -s $out/opt/REAPER/reaper $out/bin/ 71 + ln -s $out/opt/REAPER/reamote-server $out/bin/ 72 + ''; 73 + 74 + meta = with stdenv.lib; { 75 + description = "Digital audio workstation"; 76 + homepage = https://www.reaper.fm/; 77 + license = licenses.unfree; 78 + platforms = [ "x86_64-linux" ]; 79 + maintainers = with maintainers; [ jfrankenau ]; 80 + }; 81 + }
+41 -10
pkgs/applications/audio/spotify/default.nix
··· 1 - { fetchurl, stdenv, dpkg, xorg, alsaLib, makeWrapper, openssl, freetype 1 + { fetchurl, stdenv, squashfsTools, xorg, alsaLib, makeWrapper, openssl, freetype 2 2 , glib, pango, cairo, atk, gdk_pixbuf, gtk2, cups, nspr, nss, libpng 3 3 , libgcrypt, systemd, fontconfig, dbus, expat, ffmpeg_0_10, curl, zlib, gnome3 }: 4 4 5 5 let 6 - # Please update the stable branch! 7 - # Latest version number can be found at: 8 - # http://repository-origin.spotify.com/pool/non-free/s/spotify-client/ 9 - # Be careful not to pick the testing version. 10 - version = "1.0.80.480.g51b03ac3-13"; 6 + # "rev" decides what is actually being downloaded 7 + version = "1.0.80.474.gef6b503e-7"; 8 + # To get the latest stable revision: 9 + # curl -H 'X-Ubuntu-Series: 16' 'https://api.snapcraft.io/api/v1/snaps/details/spotify?channel=stable' | jq '.download_url,.version,.last_updated' 10 + # To get general information: 11 + # curl -H 'Snap-Device-Series: 16' 'https://api.snapcraft.io/v2/snaps/info/spotify' | jq '.' 12 + # More exapmles of api usage: 13 + # https://github.com/canonical-websites/snapcraft.io/blob/master/webapp/publisher/snaps/views.py 14 + rev = "16"; 15 + 11 16 12 17 deps = [ 13 18 alsaLib ··· 49 54 stdenv.mkDerivation { 50 55 name = "spotify-${version}"; 51 56 57 + # fetch from snapcraft instead of the debian repository most repos fetch from. 58 + # That is a bit more cumbersome. But the debian repository only keeps the last 59 + # two versions, while snapcraft should provide versions indefinately: 60 + # https://forum.snapcraft.io/t/how-can-a-developer-remove-her-his-app-from-snap-store/512 61 + 62 + # This is the next-best thing, since we're not allowed to re-distribute 63 + # spotify ourselves: 64 + # https://community.spotify.com/t5/Desktop-Linux/Redistribute-Spotify-on-Linux-Distributions/td-p/1695334 52 65 src = fetchurl { 53 - url = "https://repository-origin.spotify.com/pool/non-free/s/spotify-client/spotify-client_${version}_amd64.deb"; 54 - sha256 = "e32f4816ae79dbfa0c14086e76df3bc83d526402aac1dbba534127fc00fe50ea"; 66 + url = "https://api.snapcraft.io/api/v1/snaps/download/pOBIoZ2LrCB3rDohMxoYGnbN14EHOgD7_${rev}.snap"; 67 + sha512 = "45b7ab574b30fb368e0b6f4dd60addbfd1ddc02173b4f98b31c524eed49073432352a361e75959ce8e2f752231e93c79ca1b538c4bd295c935d1e2e0585d147f"; 55 68 }; 56 69 57 - buildInputs = [ dpkg makeWrapper ]; 70 + buildInputs = [ squashfsTools makeWrapper ]; 58 71 59 72 doConfigure = false; 60 73 doBuild = false; ··· 63 76 64 77 unpackPhase = '' 65 78 runHook preUnpack 66 - dpkg-deb -x $src . 79 + unsquashfs "$src" '/usr/share/spotify' '/usr/bin/spotify' '/meta/snap.yaml' 80 + cd squashfs-root 81 + if ! grep -q 'grade: stable' meta/snap.yaml; then 82 + # Unfortunately this check is not reliable: At the moment (2018-07-26) the 83 + # latest version in the "edge" channel is also marked as stable. 84 + echo "The snap package is marked as unstable:" 85 + grep 'grade: ' meta/snap.yaml 86 + echo "You probably chose the wrong revision." 87 + exit 1 88 + fi 89 + if ! grep -q '${version}' meta/snap.yaml; then 90 + echo "Package version differs from version found in snap metadata:" 91 + grep 'version: ' meta/snap.yaml 92 + echo "While the nix package specifies: ${version}." 93 + echo "You probably chose the wrong revision or forgot to update the nix version." 94 + exit 1 95 + fi 67 96 runHook postUnpack 68 97 ''; 69 98 ··· 74 103 libdir=$out/lib/spotify 75 104 mkdir -p $libdir 76 105 mv ./usr/* $out/ 106 + 107 + cp meta/snap.yaml $out 77 108 78 109 # Work around Spotify referring to a specific minor version of 79 110 # OpenSSL.
+49
pkgs/applications/audio/spotify/update.sh
··· 1 + channel="stable" # stable/candidate/edge 2 + nixpkgs="$(git rev-parse --show-toplevel)" 3 + spotify_nix="$nixpkgs/pkgs/applications/audio/spotify/default.nix" 4 + 5 + 6 + 7 + # create bash array from snap info 8 + snap_info=($( 9 + curl -H 'X-Ubuntu-Series: 16' \ 10 + "https://api.snapcraft.io/api/v1/snaps/details/spotify?channel=$channel" \ 11 + | jq --raw-output \ 12 + '.revision,.download_sha512,.version,.last_updated' 13 + )) 14 + 15 + revision="${snap_info[0]}" 16 + sha512="${snap_info[1]}" 17 + version="${snap_info[2]}" 18 + last_updated="${snap_info[3]}" 19 + 20 + # find the last commited version 21 + version_pre=$( 22 + git grep 'version\s*=' HEAD "$spotify_nix" \ 23 + | sed -Ene 's/.*"(.*)".*/\1/p' 24 + ) 25 + 26 + if [[ "$version_pre" = "$version" ]]; then 27 + echo "Spotify is already up ot date" 28 + exit 0 29 + fi 30 + 31 + echo "Updating from ${version_pre} to ${version}, released on ${last_updated}" 32 + 33 + # search-andreplace revision, hash and version 34 + sed --regexp-extended \ 35 + -e 's/rev\s*=\s*"[0-9]+"\s*;/rev = "'"${revision}"'";/' \ 36 + -e 's/sha512\s*=\s*".{128}"\s*;/sha512 = "'"${sha512}"'";/' \ 37 + -e 's/version\s*=\s*".*"\s*;/version = "'"${version}"'";/' \ 38 + -i "$spotify_nix" 39 + 40 + if ! nix-build -A spotify "$nixpkgs"; then 41 + echo "The updated spotify failed to build." 42 + exit 1 43 + fi 44 + 45 + git add "$spotify_nix" 46 + # show diff for review 47 + git diff HEAD 48 + # prepare commit message, but allow edit 49 + git commit --edit --message "spotify: $version_pre -> $version"
+2 -14
pkgs/applications/editors/android-studio/common.nix
··· 1 - { channel, pname, version, build, sha256Hash, deprecated ? false }: 1 + { channel, pname, version, build, sha256Hash }: 2 2 3 3 { bash 4 4 , buildFHSUserEnv ··· 37 37 }: 38 38 39 39 let 40 - # TODO: This is a bit stupid to be honest... 41 - # The problem is that we have to make sure this is only executed if the 42 - # derivation is actually build to avoid always printing this warning (e.g. 43 - # "nix-env -qaP"). Since this will always evaluate to "" it won't actually 44 - # change the derivation (only generate a side-effect) but we have to make 45 - # sure this expression is evaluated lazily! 46 - printDeprecationWarning = if deprecated then (builtins.trace '' 47 - android-studio-preview and androidStudioPackages.preview are old aliases 48 - and will be dropped at some point, please use androidStudioPackages.beta 49 - instead (corresponds to the correct channel name).'' 50 - "") 51 - else ""; 52 40 drvName = "android-studio-${channel}-${version}"; 53 41 androidStudio = stdenv.mkDerivation { 54 42 name = drvName; ··· 142 130 text = '' 143 131 #!${bash}/bin/bash 144 132 ${fhsEnv}/bin/${drvName}-fhs-env ${androidStudio}/bin/studio.sh 145 - '' + printDeprecationWarning; 133 + ''; 146 134 } // { 147 135 meta = with stdenv.lib; { 148 136 description = "The Official IDE for Android (${channel} channel)";
+5 -9
pkgs/applications/editors/android-studio/default.nix
··· 18 18 sha256Hash = "016nyn1pqviy089hg0dq7m4cqb39fdxdcy4zknkaq7dmgv1dj6x9"; 19 19 }; 20 20 latestVersion = { # canary & dev 21 - version = "3.3.0.2"; # "Android Studio 3.3 Canary 3" 22 - build = "181.4884283"; 23 - sha256Hash = "0r93yzw87cgzz60p60gknij5vaqmv1a1kyd4cr9gx8cbxw46lhwh"; 21 + version = "3.3.0.3"; # "Android Studio 3.3 Canary 4" 22 + build = "182.4924367"; 23 + sha256Hash = "03fxjxlsbrpklsss1nvlkb41skr5ymmq9vdns8iikcm1ng925vfd"; 24 24 }; 25 25 in rec { 26 - # TODO: Drop old alias after 18.09 27 - preview = mkStudio (betaVersion // { 28 - channel = "beta"; 29 - pname = "android-studio-preview"; 30 - deprecated = true; 31 - }); 26 + # Old alias 27 + preview = beta; 32 28 33 29 # Attributes are named by their corresponding release channels 34 30
+14 -5
pkgs/applications/editors/atom/default.nix
··· 1 - { stdenv, pkgs, fetchurl, makeWrapper, gvfs, atomEnv}: 1 + { stdenv, pkgs, fetchurl, makeWrapper, wrapGAppsHook, gvfs, gtk3, atomEnv }: 2 2 3 3 let 4 4 common = pname: {version, sha256, beta ? null}: ··· 14 14 inherit sha256; 15 15 }; 16 16 17 - nativeBuildInputs = [ makeWrapper ]; 17 + nativeBuildInputs = [ 18 + wrapGAppsHook # Fix error: GLib-GIO-ERROR **: No GSettings schemas are installed on the system 19 + ]; 20 + 21 + buildInputs = [ 22 + gtk3 # Fix error: GLib-GIO-ERROR **: Settings schema 'org.gtk.Settings.FileChooser' is not installed 23 + ]; 24 + 25 + preFixup = '' 26 + gappsWrapperArgs+=( 27 + --prefix "PATH" : "${gvfs}/bin" \ 28 + ) 29 + ''; 18 30 19 31 buildCommand = '' 20 32 mkdir -p $out/usr/ ··· 25 37 rm -r $out/share/lintian 26 38 rm -r $out/usr/ 27 39 sed -i "s/${pname})/.${pname}-wrapped)/" $out/bin/${pname} 28 - # sed -i "s/'${pname}'/'.${pname}-wrapped'/" $out/bin/${pname} 29 - wrapProgram $out/bin/${pname} \ 30 - --prefix "PATH" : "${gvfs}/bin" 31 40 32 41 fixupPhase 33 42
+2 -2
pkgs/applications/gis/qgis/default.nix
··· 5 5 }: 6 6 7 7 stdenv.mkDerivation rec { 8 - name = "qgis-2.18.20"; 8 + name = "qgis-2.18.22"; 9 9 10 10 buildInputs = [ gdal qt4 flex openssl bison proj geos xlibsWrapper sqlite gsl qwt qscintilla 11 11 fcgi libspatialindex libspatialite postgresql qjson qca2 txt2tags pkgconfig ] ··· 34 34 35 35 src = fetchurl { 36 36 url = "https://qgis.org/downloads/${name}.tar.bz2"; 37 - sha256 = "0bm9sv268lc3v48zjypsjjs62xnyb7zabzrms4jsy020waz6sk9g"; 37 + sha256 = "00b3a2hfn3i7bdx7x96vz2nj0976vpkhid4ss7n8c33fdvw3k82a"; 38 38 }; 39 39 40 40 # CMAKE_FIND_FRAMEWORK=never stops the installer choosing system
+2 -2
pkgs/applications/graphics/renderdoc/default.nix
··· 12 12 }; 13 13 in 14 14 stdenv.mkDerivation rec { 15 - version = "1.0"; 15 + version = "1.1"; 16 16 name = "renderdoc-${version}"; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "baldurk"; 20 20 repo = "renderdoc"; 21 21 rev = "v${version}"; 22 - sha256 = "0l7pjxfrly4llryjnwk42dzx65n78wc98h56qm4yh04ja8fdbx2y"; 22 + sha256 = "0kb9m1dm0mnglqyh1srvl0f1bgjghxzbqarn0xfqw49wphqwhmcd"; 23 23 }; 24 24 25 25 buildInputs = [
+5 -4
pkgs/applications/misc/antfs-cli/default.nix
··· 1 - { stdenv, fetchFromGitHub, pythonPackages }: 1 + { stdenv, fetchFromGitHub, python3Packages }: 2 2 3 - pythonPackages.buildPythonApplication rec { 4 - name = "antfs-cli-unstable-2017-02-11"; 3 + python3Packages.buildPythonApplication rec { 4 + pname = "antfs-cli"; 5 + version = "unstable-2017-02-11"; 5 6 6 7 meta = with stdenv.lib; { 7 8 homepage = https://github.com/Tigge/antfs-cli; ··· 17 18 sha256 = "0v8y64kldfbs809j1g9d75dd1vxq7mfxnp4b45pz8anpxhjf64fy"; 18 19 }; 19 20 20 - propagatedBuildInputs = [ pythonPackages.openant ]; 21 + propagatedBuildInputs = [ python3Packages.openant ]; 21 22 }
+5 -5
pkgs/applications/misc/gutenberg/default.nix
··· 1 - { stdenv, fetchFromGitHub, rustPlatform, cmake, CoreServices, cf-private }: 1 + { stdenv, fetchFromGitHub, rustPlatform, cmake, pkgconfig, openssl, CoreServices, cf-private }: 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 name = "gutenberg-${version}"; 5 - version = "0.3.4"; 5 + version = "0.4.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "Keats"; 9 9 repo = "gutenberg"; 10 10 rev = "v${version}"; 11 - sha256 = "1v26q1m3bx7mdmmwgd6p601ncf13rr4rrx9s06fiy8vnd0ar1vlf"; 11 + sha256 = "1i2jcyq6afswxyjifhl5irv84licsad7c83yiy17454mplvrmyg2"; 12 12 }; 13 13 14 - cargoSha256 = "0cdy0wvibkpnmlqwxvn02a2k2vqy6zdqzflj2dh6g1cjbz1j8qh5"; 14 + cargoSha256 = "0hzxwvb5m8mvpfxys4ikkaag6khflh5bfglmay11wf6ayighv834"; 15 15 16 - nativeBuildInputs = [ cmake ]; 16 + nativeBuildInputs = [ cmake pkgconfig openssl ]; 17 17 buildInputs = stdenv.lib.optionals stdenv.isDarwin [ CoreServices cf-private ]; 18 18 19 19 postInstall = ''
+4 -2
pkgs/applications/misc/hugo/default.nix
··· 2 2 3 3 buildGoPackage rec { 4 4 name = "hugo-${version}"; 5 - version = "0.42.1"; 5 + version = "0.46"; 6 6 7 7 goPackagePath = "github.com/gohugoio/hugo"; 8 8 ··· 10 10 owner = "gohugoio"; 11 11 repo = "hugo"; 12 12 rev = "v${version}"; 13 - sha256 = "17m8bkldvnd7yyzxi4rc8vv3qfypjzik38bjy4qavb7sjdjmfij9"; 13 + sha256 = "0w5xkb6s03hprb4v151gdk8zzsgvy0i406363j1w03bic8ajwgmj"; 14 14 }; 15 15 16 16 goDeps = ./deps.nix; 17 + 18 + buildFlags = "-tags extended"; 17 19 18 20 postInstall = '' 19 21 rm $bin/bin/generate
+84 -30
pkgs/applications/misc/hugo/deps.nix
··· 1 1 # This file was generated by https://github.com/kamilchm/go2nix v1.2.1 2 2 [ 3 3 { 4 + goPackagePath = "github.com/BurntSushi/locker"; 5 + fetch = { 6 + type = "git"; 7 + url = "https://github.com/BurntSushi/locker"; 8 + rev = "a6e239ea1c69bff1cfdb20c4b73dadf52f784b6a"; 9 + sha256 = "1xak4aync4klswq5217qvw191asgla51jr42y94vp109lirm5dzg"; 10 + }; 11 + } 12 + { 4 13 goPackagePath = "github.com/BurntSushi/toml"; 5 14 fetch = { 6 15 type = "git"; ··· 32 41 fetch = { 33 42 type = "git"; 34 43 url = "https://github.com/alecthomas/chroma"; 35 - rev = "d7b2ed20a4989ab604703f61f86523560f8a6a87"; 36 - sha256 = "0ni2ncck787sxk9gl14xnyjnw4y27ipypjf4kc00g635fvc64ik6"; 44 + rev = "5d7fef2ae60b501bbf28d476c3f273b8017d8261"; 45 + sha256 = "150jv4vhsdi1gj3liwkgicdrwnzgv5qkq2fwznlnzf64vmfb0b9f"; 37 46 }; 38 47 } 39 48 { ··· 50 59 fetch = { 51 60 type = "git"; 52 61 url = "https://github.com/bep/gitmap"; 53 - rev = "012701e8669671499fc43e9792335a1dcbfe2afb"; 54 - sha256 = "10ixv4zwmrpxvpchws78yzsjvw1zplljw3iqvwpina2mkwwp71ql"; 62 + rev = "ecb6fe06dbfd6bb4225e7fda7dc15612ecc8d960"; 63 + sha256 = "0zqdl5h4ayi2gi5aqf35f1sjszhbcriksm2bf84fkrg7ngr48jn6"; 64 + }; 65 + } 66 + { 67 + goPackagePath = "github.com/bep/go-tocss"; 68 + fetch = { 69 + type = "git"; 70 + url = "https://github.com/bep/go-tocss"; 71 + rev = "2abb118dc8688b6c7df44e12f4152c2bded9b19c"; 72 + sha256 = "12q7h6nydklq4kg65kcgd85209rx7zf64ba6nf3k7y16knj4233q"; 55 73 }; 56 74 } 57 75 { ··· 68 86 fetch = { 69 87 type = "git"; 70 88 url = "https://github.com/cpuguy83/go-md2man"; 71 - rev = "48d8747a2ca13185e7cc8efe6e9fc196a83f71a5"; 72 - sha256 = "01hpll16rvxhnvv35vs3z8p51x54c5jyl1gjdm0g7kwfwp2chvjx"; 89 + rev = "691ee98543af2f262f35fbb54bdd42f00b9b9cc5"; 90 + sha256 = "1864g10y9n6ni0p1yqjhvwyjdh0lgxnf7dlb0c4njazdg5rppww9"; 73 91 }; 74 92 } 75 93 { ··· 86 104 fetch = { 87 105 type = "git"; 88 106 url = "https://github.com/disintegration/imaging"; 89 - rev = "5e63c9a565d0a3260d23d060a795783dab90fefe"; 90 - sha256 = "1mmiz439lygi30dj1rbps57iqh762jkinnpb4wfl382v4h136qvp"; 107 + rev = "8021a62ea0dfe0ed2e6107f5ccd37e0d4a92a996"; 108 + sha256 = "1c32sqfz78g9wxvpng8n9r404lf2lgjn9b24mg8y3rxylx29gks7"; 91 109 }; 92 110 } 93 111 { ··· 176 194 fetch = { 177 195 type = "git"; 178 196 url = "https://github.com/jdkato/prose"; 179 - rev = "e27abfd3f31b84c37bbce37179b0428fcb1384be"; 180 - sha256 = "04rjqh3jdxaqr9czp4vcj14hqfv7yppv4nb7ynb04c9jcq23ajw7"; 197 + rev = "99216ea17cba4e2f2a4e8bca778643e5a529b7aa"; 198 + sha256 = "1mdh276lmj21jbi22ky8ngdsl9hfcdv6czshycbaiwjr5y9cv7bn"; 181 199 }; 182 200 } 183 201 { ··· 235 253 }; 236 254 } 237 255 { 256 + goPackagePath = "github.com/mitchellh/hashstructure"; 257 + fetch = { 258 + type = "git"; 259 + url = "https://github.com/mitchellh/hashstructure"; 260 + rev = "2bca23e0e452137f789efbc8610126fd8b94f73b"; 261 + sha256 = "0vpacsls26474wya360fjhzi6l4y8s8s251c4szvqxh17n5f5gk1"; 262 + }; 263 + } 264 + { 238 265 goPackagePath = "github.com/mitchellh/mapstructure"; 239 266 fetch = { 240 267 type = "git"; 241 268 url = "https://github.com/mitchellh/mapstructure"; 242 - rev = "bb74f1db0675b241733089d5a1faa5dd8b0ef57b"; 243 - sha256 = "1aqk9qr46bwgdc5j7n7als61xvssvyjf4qzfsvhacl4izpygqnw7"; 269 + rev = "f15292f7a699fcc1a38a80977f80a046874ba8ac"; 270 + sha256 = "0zm3nhdvmj3f8q0vg2sjfw1sm3pwsw0ggz501awz95w99664a8al"; 244 271 }; 245 272 } 246 273 { ··· 257 284 fetch = { 258 285 type = "git"; 259 286 url = "https://github.com/nicksnyder/go-i18n"; 260 - rev = "f6ac3d9cf0c4b6a32527779e992ebde26bd3d948"; 261 - sha256 = "1vg25khaf7lr90xwf97bsyn873cdi1j7nxh68s80jrg2a86zw0ff"; 287 + rev = "461e8b98df7454b4cb46a1611a6734f05ee331d0"; 288 + sha256 = "0aq1q06y6azsi6mfmary5xs7gmmg8fh8lhx1wbpdlqk11asm9rq0"; 262 289 }; 263 290 } 264 291 { ··· 275 302 fetch = { 276 303 type = "git"; 277 304 url = "https://github.com/pelletier/go-toml"; 278 - rev = "c01d1270ff3e442a8a57cddc1c92dc1138598194"; 279 - sha256 = "1fjzpcjng60mc3a4b2ql5a00d5gah84wj740dabv9kq67mpg8fxy"; 305 + rev = "c2dbbc24a97911339e01bda0b8cabdbd8f13b602"; 306 + sha256 = "0v1dsqnk5zmn6ir8jgxijx14s47jvijlqfz3aq435snfrgybd5rz"; 280 307 }; 281 308 } 282 309 { ··· 320 347 fetch = { 321 348 type = "git"; 322 349 url = "https://github.com/spf13/cobra"; 323 - rev = "1e58aa3361fd650121dceeedc399e7189c05674a"; 324 - sha256 = "1d6dy60dw7i2mcab10yp99wi5w28jzhzzf16w4ys6bna7ymndiin"; 350 + rev = "7c4570c3ebeb8129a1f7456d0908a8b676b6f9f1"; 351 + sha256 = "16amh0prlzqrrbg5j629sg0f688nfzfgn9sair8jyybqampr3wc7"; 325 352 }; 326 353 } 327 354 { ··· 365 392 fetch = { 366 393 type = "git"; 367 394 url = "https://github.com/spf13/viper"; 368 - rev = "15738813a09db5c8e5b60a19d67d3f9bd38da3a4"; 369 - sha256 = "1mjfzg8zvnxckaq6l8gw99i2msrfqn9yr04dc3b7kd5bpxi6zr4v"; 395 + rev = "d493c32b69b8c6f2377bf30bc4d70267ffbc0793"; 396 + sha256 = "1jq46790rkjn6c1887wz98dqjk792ij6wnrifzk1maglmfb061hh"; 397 + }; 398 + } 399 + { 400 + goPackagePath = "github.com/tdewolff/minify"; 401 + fetch = { 402 + type = "git"; 403 + url = "https://github.com/tdewolff/minify"; 404 + rev = "cf3a1790b606e292e4a0ee82e949a4f0d1c7617d"; 405 + sha256 = "1r496149l5iqzxkfcbll5dqcqxy4a7jjxvzm62c8hrybmwj574kn"; 406 + }; 407 + } 408 + { 409 + goPackagePath = "github.com/tdewolff/parse"; 410 + fetch = { 411 + type = "git"; 412 + url = "https://github.com/tdewolff/parse"; 413 + rev = "4ceb50b40fad068875f5b093c5df0619012dc544"; 414 + sha256 = "1ap76hdiabn41r7zxc7nq3n3ld7zqf97jaf71zlzzjrphi3fwrg1"; 415 + }; 416 + } 417 + { 418 + goPackagePath = "github.com/wellington/go-libsass"; 419 + fetch = { 420 + type = "git"; 421 + url = "https://github.com/wellington/go-libsass"; 422 + rev = "615eaa47ef794d037c1906a0eb7bf85375a5decf"; 423 + sha256 = "0imjiskn4vq7nml5jwb1scgl61jg53cfpkjnb9rsc6m8gsd8s16s"; 370 424 }; 371 425 } 372 426 { ··· 374 428 fetch = { 375 429 type = "git"; 376 430 url = "https://github.com/yosssi/ace"; 377 - rev = "ea038f4770b6746c3f8f84f14fa60d9fe1205b56"; 378 - sha256 = "1kbvbc56grrpnl65grygd23gyn3nkkhxdg8awhzkjmd0cvki8w1f"; 431 + rev = "2b21b56204aee785bf8d500c3f9dcbe3ed7d4515"; 432 + sha256 = "0cgpq1zdnh8l8zsn9w63asc9k7cm6k4qvjgrb4hr1106h8fjwfma"; 379 433 }; 380 434 } 381 435 { ··· 383 437 fetch = { 384 438 type = "git"; 385 439 url = "https://go.googlesource.com/image"; 386 - rev = "af66defab954cb421ca110193eed9477c8541e2a"; 387 - sha256 = "0dgi7svwzs37c7m5dz2jig3xr45fyjihhr8cg0x8nc8sc8fsyq4h"; 440 + rev = "c73c2afc3b812cdd6385de5a50616511c4a3d458"; 441 + sha256 = "1kkafy29vz5xf6r29ghbvvbwrgjxwxvzk6dsa2qhyp1ddk6l2vkz"; 388 442 }; 389 443 } 390 444 { ··· 392 446 fetch = { 393 447 type = "git"; 394 448 url = "https://go.googlesource.com/net"; 395 - rev = "db08ff08e8622530d9ed3a0e8ac279f6d4c02196"; 396 - sha256 = "1f6q8kbijnrfy6wjqxrzgjf38ippckc5w34lhqsjs7kq045aar9a"; 449 + rev = "f4c29de78a2a91c00474a2e689954305c350adf9"; 450 + sha256 = "02nibjrr1il8sxnr0w1s5fj7gz6ayhg3hsywf948qhc68n5adv8x"; 397 451 }; 398 452 } 399 453 { ··· 410 464 fetch = { 411 465 type = "git"; 412 466 url = "https://go.googlesource.com/sys"; 413 - rev = "6c888cc515d3ed83fc103cf1d84468aad274b0a7"; 414 - sha256 = "18anqrdajp4p015v3f5y641k3lmgp2jr0lfyx0pb3ia0qvn93mrp"; 467 + rev = "3dc4335d56c789b04b0ba99b7a37249d9b614314"; 468 + sha256 = "1105b7jqzz8g2bfkdbkj2pdzq4vhfmhm42khir88vjqfd1l7ha31"; 415 469 }; 416 470 } 417 471 { ··· 419 473 fetch = { 420 474 type = "git"; 421 475 url = "https://go.googlesource.com/text"; 422 - rev = "5c1cf69b5978e5a34c5f9ba09a83e56acc4b7877"; 423 - sha256 = "03br8p1sb1ffr02l8hyrgcyib7ms0z06wy3v4r1dj2l6q4ghwzfs"; 476 + rev = "96e34ec0e18a62a1e59880c7bf617b655efecb66"; 477 + sha256 = "1n1p5zz0vyvlhac40hxml6c5xwpsw8rjx1pbls9381a0s19ncbdg"; 424 478 }; 425 479 } 426 480 {
+3 -3
pkgs/applications/misc/rtl_433/default.nix
··· 1 1 { stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, libusb1, rtl-sdr }: 2 2 stdenv.mkDerivation rec { 3 3 4 - version = "2018-02-23"; 4 + version = "18.05"; 5 5 name = "rtl_433-${version}"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "merbanan"; 9 9 repo = "rtl_433"; 10 - rev = "51d275c"; 11 - sha256 = "1j443wmws5xgc18s47bvw3pqljk747izypz52rmlrvs16v96cg2g"; 10 + rev = "18.05"; 11 + sha256 = "0vfhnjyrx6w1m8g1hww5vdz4zgdlhcaps9g0397mxlki4sm77wpc"; 12 12 }; 13 13 14 14 nativeBuildInputs = [ autoreconfHook pkgconfig ];
+397 -397
pkgs/applications/networking/browsers/firefox-bin/beta_sources.nix
··· 1 1 { 2 - version = "62.0b10"; 2 + version = "62.0b14"; 3 3 sources = [ 4 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/ach/firefox-62.0b10.tar.bz2"; 4 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/ach/firefox-62.0b14.tar.bz2"; 5 5 locale = "ach"; 6 6 arch = "linux-x86_64"; 7 - sha512 = "141e5f280b13c1440012f6b796cc361e3b5a29bd3301a18ee13ca4b860e21b8c5ff8e6640cd2c57c577d4f4ba3922bd89d96dcd9dcde8f7090238d663604461c"; 7 + sha512 = "b2f8ed7231fd1e3ed6530a6458c4831c636b21011e532d90b5b72116d1537b569ea08340e83ace86ffc2d4fbc15ea706b6fd989b265d8da74f43effb86b66192"; 8 8 } 9 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/af/firefox-62.0b10.tar.bz2"; 9 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/af/firefox-62.0b14.tar.bz2"; 10 10 locale = "af"; 11 11 arch = "linux-x86_64"; 12 - sha512 = "dec1fc688e936e24e390436d881eb2adebede9eede6ec5b15c7732413d7eaf545d5f93e5515f4e216aea8ee26d5ada2f02ab8f45fe045669659089839a3d2de4"; 12 + sha512 = "fc3d6e21f1650e107a2974107a96e1a3f0d338a3fb11a4550aee4147f4ccebc055497b02e30658cd8e34d2971a50b27d645bfdc497b7534af3680e6b2d025281"; 13 13 } 14 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/an/firefox-62.0b10.tar.bz2"; 14 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/an/firefox-62.0b14.tar.bz2"; 15 15 locale = "an"; 16 16 arch = "linux-x86_64"; 17 - sha512 = "3c25a7ca65184198ae3618047fc9f7592164367926492da6839e50ef2f72866bade1f44e9991fa817503b1a6b02a5d7400339ba330018e21f6fe863f6b7f389b"; 17 + sha512 = "2fb2c2acd46e9405928ae90125edf41c59b30cb786a0273732a3529e9ef23dd7d179c832a68937acf05a602578c8c568ef9aa0fd535f77cedfae09b611292258"; 18 18 } 19 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/ar/firefox-62.0b10.tar.bz2"; 19 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/ar/firefox-62.0b14.tar.bz2"; 20 20 locale = "ar"; 21 21 arch = "linux-x86_64"; 22 - sha512 = "7d7edb00be607d01ed2e4dd50027b2839e4abeb26a89b4d85a2581545c8cd43002ec116e2073ffeaaf98b6c76fe185ed836e49aff2a2bab6f2e486dad55bf5da"; 22 + sha512 = "841a0eb8feb42a09bfd2c4145f9742533bbc7de3b0a79271be43a30bd3933f03f8d2ea0bb381937a5963ce23417ebfd50018a14002672bd403f4d86a41e107b7"; 23 23 } 24 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/as/firefox-62.0b10.tar.bz2"; 24 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/as/firefox-62.0b14.tar.bz2"; 25 25 locale = "as"; 26 26 arch = "linux-x86_64"; 27 - sha512 = "0a8d24f7c1b67b97d511f545a108dcacad9a1c1ec5004a1f1f6571551c52c14e9f98b341a61d4a13e6e26490a3c74fcb1608ab9dbb260d5f1e4d421fc71bfab9"; 27 + sha512 = "9cbd161fa8cd987387a48e4587b6b9e109f2ebc0ff68d104a235e0a02af0df65f82186657f03d88b3ee2e6956452c97ff63622dda19cbb8164474783b438a561"; 28 28 } 29 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/ast/firefox-62.0b10.tar.bz2"; 29 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/ast/firefox-62.0b14.tar.bz2"; 30 30 locale = "ast"; 31 31 arch = "linux-x86_64"; 32 - sha512 = "5123dcd2f0d4dafbedf3efdac669ed9f3837e092d53f23a6b4802b83e8f61b401f03e41911645125138bd09da1c3f575c053b86cc27bad78ad49dedebaa79ce6"; 32 + sha512 = "e352479b16a20c8de5cad7d7483235f15f5a2aa14256d2a8f880083553c49b3926750c4d9383f781e04113e054623cdcae88fe3a1bf744ae66660d89c50aa666"; 33 33 } 34 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/az/firefox-62.0b10.tar.bz2"; 34 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/az/firefox-62.0b14.tar.bz2"; 35 35 locale = "az"; 36 36 arch = "linux-x86_64"; 37 - sha512 = "aef97cda7e502651e88fa2099d39420da38ba06093516946223940fb18ea0fe52e0e5c83d1a7234003d70280320c40a83bd7e4a3329dd5c92e7b97144d884595"; 37 + sha512 = "8ad214e95cf493a9544fa587d8c790054470f7c5abeeffc11d7c8a0bc77438fabde6b3add423ff1ffe5a8db4c54b10419fd242780a6ac145c3b0513a0cac1bff"; 38 38 } 39 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/be/firefox-62.0b10.tar.bz2"; 39 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/be/firefox-62.0b14.tar.bz2"; 40 40 locale = "be"; 41 41 arch = "linux-x86_64"; 42 - sha512 = "d6e04dce19047627906d38362012de87f6f64f919de2f1d23e60d4c686d1a7434290710def14a2cf3e932876949f64e74be3de1ab5318ef1a6118d32b916850a"; 42 + sha512 = "145adec7ea9af6c35b0b3a98839b96b9a7525adcff14beca171470877f2e6e2948b4f82a299e7e46939dde27a742705007be3b09f20b3767eb49f4c18697f135"; 43 43 } 44 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/bg/firefox-62.0b10.tar.bz2"; 44 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/bg/firefox-62.0b14.tar.bz2"; 45 45 locale = "bg"; 46 46 arch = "linux-x86_64"; 47 - sha512 = "8f2fcd0777da4d0bebee0151fcef871db78512cfebfb1ee3bcabf069e14134ff56734fa784fee12160f8a2ad3d12bb4f524b831169a916713b5ba5ea1324ce3a"; 47 + sha512 = "1ca43d1945f1a1d4fa2823ec2489fa54ec0002698529942d884388ed9ab75662fc0ef12a2ce0dbc5e773186dcd0cc7f0fefca8f42c3946bd17acf919754ba9a2"; 48 48 } 49 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/bn-BD/firefox-62.0b10.tar.bz2"; 49 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/bn-BD/firefox-62.0b14.tar.bz2"; 50 50 locale = "bn-BD"; 51 51 arch = "linux-x86_64"; 52 - sha512 = "63e81570ab71eaf477a661f7f6484de53ac7200395ce2ccaac7b73d6f28f73abda7f4c100b6c65da39e075c0d63f7e3a3636832d0469a252c9aee1cc5e36ba95"; 52 + sha512 = "89535f73b7c53e79fa6f83736ea7f74946b41bb7bb3c628dee362d84212618b0b53b9b68dbdf3d9468181877696ce83461e3ed29d7a413e069227cf412d42340"; 53 53 } 54 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/bn-IN/firefox-62.0b10.tar.bz2"; 54 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/bn-IN/firefox-62.0b14.tar.bz2"; 55 55 locale = "bn-IN"; 56 56 arch = "linux-x86_64"; 57 - sha512 = "011c335a62dd7cdcfe1000f616bdc7b826437e09134b1773c5380d05d68b6e32f33ea0ea7d75b132a6098d676c5326ec33f35f5ae6acdf125e5cf607f803718f"; 57 + sha512 = "021855aa955cc6c166318466a78aa4fbd31ba4d792db603db49b2af19e2494d46286d0bb1c0707122ae53317c2093527065c83db4943995255ff8f7f27cdb83b"; 58 58 } 59 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/br/firefox-62.0b10.tar.bz2"; 59 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/br/firefox-62.0b14.tar.bz2"; 60 60 locale = "br"; 61 61 arch = "linux-x86_64"; 62 - sha512 = "a3f052252ab65fb284ade27c67ef55eeb7bc0f78a8a8dca539e356617fcd3144946c55c08eae2aa09a8337cf3ec2063f21e2d976248b647ae26cc159bdfc9e83"; 62 + sha512 = "b60bfaf65e6c2da0d97d53c619e345affffa6980620d2d72388d890587b8f5ab3a06707c783f72b58ef04e15de168a27cbeb0c33fd593871282f2fb38898baea"; 63 63 } 64 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/bs/firefox-62.0b10.tar.bz2"; 64 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/bs/firefox-62.0b14.tar.bz2"; 65 65 locale = "bs"; 66 66 arch = "linux-x86_64"; 67 - sha512 = "30473eab751e7af94478b9a79af008a33a1a7438c85db0f46d96a5848a707cd511a82d67c91bd4bfdfb473c6bf8228ee0375ba58395c82b56b6b4fa5a714d3d0"; 67 + sha512 = "6fd1c5340e8772538ab4678e5ff99525e12da56959116cfdafd427da8d7d9ca17ce91652bd2c714c171b25abe1295acaee79c2c7c5c68311c83d861fa899b51c"; 68 68 } 69 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/ca/firefox-62.0b10.tar.bz2"; 69 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/ca/firefox-62.0b14.tar.bz2"; 70 70 locale = "ca"; 71 71 arch = "linux-x86_64"; 72 - sha512 = "424486171233702a57601d16f1706175bbc4d32bafb7786a4d01226ff16c1da0a7f3df08343c317e9dd2da3f7aa4ef65e3545265271f7303b65e35deda0a8d20"; 72 + sha512 = "5fd83248adba2fb6e2581ccb6189fa68b6beb517df3ed6a5ac839dbb5aee5f59e193af76e1ca31475570a81042d2442522f442b094bf3e83447bc59de9228147"; 73 73 } 74 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/cak/firefox-62.0b10.tar.bz2"; 74 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/cak/firefox-62.0b14.tar.bz2"; 75 75 locale = "cak"; 76 76 arch = "linux-x86_64"; 77 - sha512 = "0ee06e265f188696f0f73047cc1b8b25df9e4d6940b6d907d9a8cbd241dfcdbb75013a7f9300d29b07144a92ad509d87637807f19d1235c4886d5ff4ccab5fc0"; 77 + sha512 = "f860174039af2224f02420fc7846b7f6a179ab4ae3cf0af6fe4b0b9dd38fefd23a84f596facb68c5c9cbcecc2b2f6ba59d8f19459263c3cc65c61ef665df7c7f"; 78 78 } 79 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/cs/firefox-62.0b10.tar.bz2"; 79 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/cs/firefox-62.0b14.tar.bz2"; 80 80 locale = "cs"; 81 81 arch = "linux-x86_64"; 82 - sha512 = "50678ddbcd6064dd2295496aac5ff3e8e563531163fea9dad4c25601c755680ddb50c06f5ca038167c0f8af0d6f003cd578eea90314d8f7628b5057f7a9631d5"; 82 + sha512 = "fd0f33bccab87be09d41d88955d2231f290ef907044e969b6822a7e64665133b7b16865288b0b14e6623b134e8a9cd28ed5b946a89271b1b29ef738d47514f6e"; 83 83 } 84 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/cy/firefox-62.0b10.tar.bz2"; 84 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/cy/firefox-62.0b14.tar.bz2"; 85 85 locale = "cy"; 86 86 arch = "linux-x86_64"; 87 - sha512 = "6a3b71137b1a11824fbcf5e1585c12edf8f43fa25b725bdd0658336c9f89c7c8b73b0598165b22b28be77296d889fc006c4bc13a505fa9716296775a95cfc1fc"; 87 + sha512 = "4a2f10fd719fc0f94f188a5b6b87e44546b81d67a7e5814b20b788ccc78cb359f28e69820ef8a14d57e0d7a7f73fa993b3a603a0761698aa50fa10d1e1e5057c"; 88 88 } 89 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/da/firefox-62.0b10.tar.bz2"; 89 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/da/firefox-62.0b14.tar.bz2"; 90 90 locale = "da"; 91 91 arch = "linux-x86_64"; 92 - sha512 = "b86d5c201bef12e50cad61046f15c06c0641e686134ab1d698147538a766bb01081f1430afe509a7fbdecc70daab983175151968639078df6af1cdae2f92a01e"; 92 + sha512 = "5a7ff771499189323d5bcf0209a0dd26fbdcfb4b3ae2cd9eaac7ef42486582db7975effe23eb0fac719ad2b3b7f02ef2aebdb81d2b12d17bb406725e3b9b9746"; 93 93 } 94 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/de/firefox-62.0b10.tar.bz2"; 94 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/de/firefox-62.0b14.tar.bz2"; 95 95 locale = "de"; 96 96 arch = "linux-x86_64"; 97 - sha512 = "2d3abad249aa1e20f45a448f66a515debefcd410be48a952be46c8a75b8ec7afff528a9353fb3ed11497891d2646df3edc5be8bb231bd2e41c24da4598ccf377"; 97 + sha512 = "c69bfba7aa6893ce72c017a49a770de39dea27b00b6459739d7001000b65f496263ebaaa7bbc8dfb96a09c4b9ffc909721af6872d4e1c884399d2a9e082a60b8"; 98 98 } 99 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/dsb/firefox-62.0b10.tar.bz2"; 99 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/dsb/firefox-62.0b14.tar.bz2"; 100 100 locale = "dsb"; 101 101 arch = "linux-x86_64"; 102 - sha512 = "1648fceab23c77fa0fc39b95e0cc52f501a82ea1bc5f3feaa431ae8ea934db155bbde0dba32802c2233422c230befb1062a959a37b73343cff73712faa047c7c"; 102 + sha512 = "cf1f0db44f876d38a22e82a8dabb37e83f5c6e41f9c980f1d1a16c525ef9dc247dbd271429caa62cba65fc93bd23770e0b80f1369b50b836f8e809abfc7428f0"; 103 103 } 104 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/el/firefox-62.0b10.tar.bz2"; 104 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/el/firefox-62.0b14.tar.bz2"; 105 105 locale = "el"; 106 106 arch = "linux-x86_64"; 107 - sha512 = "e6158fa1919f6929a3ca870ffa85c372f78e9d0f949d61852d7c12a5876c257b853dfb709983297a139d61a47a6de8ccbcdd770898a5db924b83ceb102295fd4"; 107 + sha512 = "010e6bd3ae67d500ccbcf3604c11007e86a6a98ad96b5ac50f3a752ea3d1987301ef2e3a4acb4b46f7e7476dfbc0e8dc37275f33807de2cab2af1b4198687da6"; 108 108 } 109 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/en-CA/firefox-62.0b10.tar.bz2"; 109 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/en-CA/firefox-62.0b14.tar.bz2"; 110 110 locale = "en-CA"; 111 111 arch = "linux-x86_64"; 112 - sha512 = "2212ea13768d65fbc05341e0e1763874aad3731b35f342289e82bb9de1f539044049a0c66b5b94be6daec35993671ee8c1e06e4097c0f22ae9e6561b0baeba29"; 112 + sha512 = "d01c01923d800e6c20c2a8c41ecc2b6112ed50b7e72746b7b634fffa8beb8b030976d6d02eb25bad71eab411c2fdb77d3b54a7de39c6610c0a32194a5191f3c3"; 113 113 } 114 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/en-GB/firefox-62.0b10.tar.bz2"; 114 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/en-GB/firefox-62.0b14.tar.bz2"; 115 115 locale = "en-GB"; 116 116 arch = "linux-x86_64"; 117 - sha512 = "09405b6e4cefae4cd61a9cdc05f5b69584771c4eeb5a211ae278ad7b9eaf67ff493c62065e5ef4544abc3ed509c53c665163bc5fbb3cc95eecf09df1f6a222e6"; 117 + sha512 = "810984cbb9f97174bd2ac08acb19f999d75d77e99ce439b8990f8632641231c9e36eacc824c56fa653d4ac806240c71c2e05c8bdcabe72aff0c06c27c9371c5d"; 118 118 } 119 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/en-US/firefox-62.0b10.tar.bz2"; 119 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/en-US/firefox-62.0b14.tar.bz2"; 120 120 locale = "en-US"; 121 121 arch = "linux-x86_64"; 122 - sha512 = "69208896166416d4e9dcb528053d7bcad796912d564c3b6a265dee4425eaea910a14fde18dcac8dc615f5f4477c1c62bc500bd50caafe53022238097bbf2312f"; 122 + sha512 = "4e20e98e2d75db156c78b3bc879be1c979b77e1f42d4dac6ca0b78a39c07c46e71fe97bdd36e7e6c197f888705f4445bb88bb9bc135159d7a802b86399112904"; 123 123 } 124 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/en-ZA/firefox-62.0b10.tar.bz2"; 124 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/en-ZA/firefox-62.0b14.tar.bz2"; 125 125 locale = "en-ZA"; 126 126 arch = "linux-x86_64"; 127 - sha512 = "00c6f274b35b38e68bd8745437e73458851145fd5a5797e8e90d11a9f8d373e0832e337ec4e77cd76ec5713a97b3d7e8a400d65c91f60b704881ce410d4305ab"; 127 + sha512 = "7ea0951139b320994402d508e80d65e0e1bad7cd0f058b07141aff5837a34da90c8ad00544fe9173f912d90ce58e15db645e58ac1ae25c724e19fd1ae824596a"; 128 128 } 129 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/eo/firefox-62.0b10.tar.bz2"; 129 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/eo/firefox-62.0b14.tar.bz2"; 130 130 locale = "eo"; 131 131 arch = "linux-x86_64"; 132 - sha512 = "0d5ad1a42c1a95bb7c7025bd41ef1c8edcbb30f8ac97894e6881db4249fcaff4c1fb4b669d5c201e871af15087fe1155bb769af5c99851127f240d694e8f8f6a"; 132 + sha512 = "487f947f2f15bd54b34d5aa0d18a3dfa1bc4ed6a4a5ff7badbf91b1ad8471a3b61746e3d359c8e683d749a46b2255d57dc550a5542890b236bc87f3dbffc61f0"; 133 133 } 134 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/es-AR/firefox-62.0b10.tar.bz2"; 134 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/es-AR/firefox-62.0b14.tar.bz2"; 135 135 locale = "es-AR"; 136 136 arch = "linux-x86_64"; 137 - sha512 = "290d020b458546f2c70098555d0a76eb49acf8c8f57e2ee64d3eb640a503af2488cfd7d6a99d033993d742c030c15385d6cd111267bb4cd8d40d277e6f34fd43"; 137 + sha512 = "2bdce008b41cbd6804e8c5e6fabf69bf26b581cbdfdf0ec74eef345230693d160a1ce0b1555ee4f79cb0fc17a4068ffed1d433eecfb4649d478915ad83ba3f32"; 138 138 } 139 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/es-CL/firefox-62.0b10.tar.bz2"; 139 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/es-CL/firefox-62.0b14.tar.bz2"; 140 140 locale = "es-CL"; 141 141 arch = "linux-x86_64"; 142 - sha512 = "a258208143404590fbf367f554169f441a3e626dd100e9145de0d3777f7598fe2f404a945bcbeede4743535763d19c619a221b3774004327e315a61e565f7a28"; 142 + sha512 = "39547a9f684cd707c2c1c0eee6a324c0caa3a58896128e33494ca96d71d3ba44e070e28edde48ce6442126c44525429714f7fbdb1c579f48a51b91baa4aa2389"; 143 143 } 144 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/es-ES/firefox-62.0b10.tar.bz2"; 144 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/es-ES/firefox-62.0b14.tar.bz2"; 145 145 locale = "es-ES"; 146 146 arch = "linux-x86_64"; 147 - sha512 = "daa7a7f23935aba9b156dea9597d65386b95146a47872ad74213c188360eddb03b630b143866b37e6ffae7f271dc72a27f0d84c71c6cf73c48aaa686696416f6"; 147 + sha512 = "f6a7ee71c174571933c5d2c2dc0f5c2d65c57d2f3ff3e21ca2f7ea140c1376e1f4a5605f81a8a28ac3bf58e23b296d92fdbb29973edda25508f67a4650336f92"; 148 148 } 149 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/es-MX/firefox-62.0b10.tar.bz2"; 149 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/es-MX/firefox-62.0b14.tar.bz2"; 150 150 locale = "es-MX"; 151 151 arch = "linux-x86_64"; 152 - sha512 = "208d9d9a53ffb8daf32a35e3500765a2c700847afa70dd355fff2c6242165ddd35b0044bc8512bd5fc4ddf8a8422a109833f8bcc15f0b6349464984126094749"; 152 + sha512 = "8c092f385345005ffa93333f16c895882e6c4911b7ae129d91a281698ac8f9fb50ade047539c88a852609d855fb544accaa1e05a76bf09c8a82c4be50299cb02"; 153 153 } 154 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/et/firefox-62.0b10.tar.bz2"; 154 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/et/firefox-62.0b14.tar.bz2"; 155 155 locale = "et"; 156 156 arch = "linux-x86_64"; 157 - sha512 = "6e68b76b140b2823d5bbca1c6705b2f71b01cc66c6296e28674e85f8294d6a663e27d2e2f92a150be5f79457e7b542963fce45b0146323f736c221eebf199dd1"; 157 + sha512 = "5f9c86d6a230a03a729a30bda5a519513f5762e6a746b7bfde371a0761a4c1ea18ad781793205f4909950d9d7d020ff823fab6db93f96f726bfa0849ab6a2a1a"; 158 158 } 159 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/eu/firefox-62.0b10.tar.bz2"; 159 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/eu/firefox-62.0b14.tar.bz2"; 160 160 locale = "eu"; 161 161 arch = "linux-x86_64"; 162 - sha512 = "f916ae9cb531aa5bd217ede28bf09495c989f8e833d66562fa2cfb9e26edc600fbbefefd59aed117dbc0e292ebab5bcf62b39aee6daff37050353945a7602309"; 162 + sha512 = "d2c23cc2b6e0e1bab0e6c1ebe28aae860fea4d33700e40c808b1da2dfa1a79331c59ff9ee8129f9bb1721e230f8a0287567eb00e82fd9f95bc91ecb65089ddac"; 163 163 } 164 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/fa/firefox-62.0b10.tar.bz2"; 164 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/fa/firefox-62.0b14.tar.bz2"; 165 165 locale = "fa"; 166 166 arch = "linux-x86_64"; 167 - sha512 = "0e9b6e7c98a91d90b885378ca7281124f9b53b2e139d6238d75da1e118358703dcf882261cf2c85350c372f5439e629dfd75fb1759138fd69fe63ddc0b09e4eb"; 167 + sha512 = "cd6ca466d4cb9e6f8354d9cd4170632785a18a99070bfbf1ef16775afa86b08c60fda74f1283f824a7bc548787a6bbe56fb5698587c09892ad5e11498ae3f4da"; 168 168 } 169 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/ff/firefox-62.0b10.tar.bz2"; 169 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/ff/firefox-62.0b14.tar.bz2"; 170 170 locale = "ff"; 171 171 arch = "linux-x86_64"; 172 - sha512 = "02c6cd4956391a935d663393ea1af8f97721e5417d0747b3b0ede403e7376503a4628bf600ad7849b289fb6e6940e5f0ab048862b1f20d4d8f7a593d6abf9d18"; 172 + sha512 = "a01e612337d001cd85793fc8d0377781c657b1c05c54db86fad147365c4aa049885392bfda2523778887f23d34c1d13d3e359e60bb0d1a52c5c238c974342411"; 173 173 } 174 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/fi/firefox-62.0b10.tar.bz2"; 174 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/fi/firefox-62.0b14.tar.bz2"; 175 175 locale = "fi"; 176 176 arch = "linux-x86_64"; 177 - sha512 = "a0baa3de6c78bf8acb655c0b30585abdf4a886945b7e97389e80eb3372fdeee4e01c0c376508bafbe7727bc6df8058472616afa395f79535b67763d8f2559ad2"; 177 + sha512 = "04bd9a513e950df861f1d81965b165ce1357c13a79c32c87a8467d63cc90ea019614f3a555487c2789bec15fd5fee81847f4e20e890ed5a880aff894f8e720f2"; 178 178 } 179 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/fr/firefox-62.0b10.tar.bz2"; 179 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/fr/firefox-62.0b14.tar.bz2"; 180 180 locale = "fr"; 181 181 arch = "linux-x86_64"; 182 - sha512 = "0c9e076c1e7c563cdca8aa80cd097cd2b232276fb14ed56b28ae56ebb26f8d5ca1c720784b44dad860f0b86f17fc2c53888d59b0aa6495c2d8cbd82703c0db9a"; 182 + sha512 = "07440ebb0c8f98bb9fbcead42493aebd76b76886ca5a48ad748565953aa131de9c1e3a40fde032fbe1b726e166a5b1f292212a0c6c2e1beb8f0b40730185940d"; 183 183 } 184 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/fy-NL/firefox-62.0b10.tar.bz2"; 184 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/fy-NL/firefox-62.0b14.tar.bz2"; 185 185 locale = "fy-NL"; 186 186 arch = "linux-x86_64"; 187 - sha512 = "3c262e88505932ef95d45530d822e1331ba63a8a7f54f04bf17f3a53bf28bb91ee42ff76318a582f58227b61ca1ca9c1780da9a257c5a51a0494ba59467a33b2"; 187 + sha512 = "c45a3a7eb3624029172c9d80f0f565621cf7f553c56cf8d68c71446b3b9966c74013c86c4063ec526d9d3179c21301fe1cef51198f3d6c82a0a30d61af997d3a"; 188 188 } 189 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/ga-IE/firefox-62.0b10.tar.bz2"; 189 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/ga-IE/firefox-62.0b14.tar.bz2"; 190 190 locale = "ga-IE"; 191 191 arch = "linux-x86_64"; 192 - sha512 = "9baeabfd553b98b4c53ba02a58524b2c1ec07cce92b9e51edabc2583d3ad8bc525376b2604330bcb6764bc62830dacf641e3de82916a6df0003ee0b52072f46c"; 192 + sha512 = "ec881458637d2f41b112e5d9b4121e25f6fae362c4f250aa931dc7085a80973c24e6ef215c7c3b1043701f902aa182933610fa9e20f43d7152a7bb716f703fdd"; 193 193 } 194 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/gd/firefox-62.0b10.tar.bz2"; 194 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/gd/firefox-62.0b14.tar.bz2"; 195 195 locale = "gd"; 196 196 arch = "linux-x86_64"; 197 - sha512 = "16b07a0f348b58448c9646d0de7f8d686838dc74caf87184dfe395fc1ce5b1a887c57caa3da2e3bae21a52d283f3929362b826925b62ca757ca4acb80ddd9ad6"; 197 + sha512 = "be9b5a3f3cf5d24491fa3a41e82d3f0ebfa840a588f75340ca7428b9e870583e1e8a97b957eff131af28a2da0d091257f0a55c57e42ea9f8ecf21885093224fe"; 198 198 } 199 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/gl/firefox-62.0b10.tar.bz2"; 199 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/gl/firefox-62.0b14.tar.bz2"; 200 200 locale = "gl"; 201 201 arch = "linux-x86_64"; 202 - sha512 = "230b7144c19a1536efd264952797be74e6f615aa5a25a648e03dd8f47dcd50f1bc9b22708d7ed3a4cc10d3364cd043c57860b9c1a152b83d67439fb238b81e5b"; 202 + sha512 = "f59656428f9f681799c5fcdbeff54e437dba664c5dc9098b0b1d818df360075617d347d5677624b9e6831c6c4c8ddc55ba160a3543726983d0d39dee4551db64"; 203 203 } 204 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/gn/firefox-62.0b10.tar.bz2"; 204 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/gn/firefox-62.0b14.tar.bz2"; 205 205 locale = "gn"; 206 206 arch = "linux-x86_64"; 207 - sha512 = "b917ea11cf2bbe49367259eec378a4674eab86c926b89d090137056dd459d8d2c7670a9733eb4b0d4e0fd6166ba58854c4eba190a1d99a5376b390a945195cd7"; 207 + sha512 = "2037a091cea614268c3d12d389333e2a8018a73d027dd992cd97e1d2f92178308380c087047ff58040bc829bf47eb01f877407bc67bbb72baf92d680e2dd657c"; 208 208 } 209 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/gu-IN/firefox-62.0b10.tar.bz2"; 209 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/gu-IN/firefox-62.0b14.tar.bz2"; 210 210 locale = "gu-IN"; 211 211 arch = "linux-x86_64"; 212 - sha512 = "339c69eee74cc48d3aa0c04625cad84ef564c56f4471230a737d126fb77e15a08e7b98dde625cea4225b7e95f75b2fb1aa7ba4f8a005ed3518a2949638c739b0"; 212 + sha512 = "44342a1e47bc8ef3660f4cdcdc83f6549d4dd3fb2f6cd97d2adbf12835b3b0b9b1ee58628a2d92f71a32a22e301a5143668cbff24759e6ab17bee8b2736c11fc"; 213 213 } 214 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/he/firefox-62.0b10.tar.bz2"; 214 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/he/firefox-62.0b14.tar.bz2"; 215 215 locale = "he"; 216 216 arch = "linux-x86_64"; 217 - sha512 = "f04d05f5808f194a8a2d675e88d255aed01f6e6b91f90e6459b896cfc6a9c9af3cbc669274a07bb8ece0d401786090f05e0a762812ceb0005a4f28345d4bd32e"; 217 + sha512 = "d0b96156d934839d2155ce4aa9e5c17a77258c4e3d840ac3db005b9cf12d5f3703e09690b239122298d9b639a0a7beab5473ca1dcf23581868e237b361e2fe2d"; 218 218 } 219 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/hi-IN/firefox-62.0b10.tar.bz2"; 219 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/hi-IN/firefox-62.0b14.tar.bz2"; 220 220 locale = "hi-IN"; 221 221 arch = "linux-x86_64"; 222 - sha512 = "d8204c6e70710e5ec4944d59609314ee8bf8e0a54ac637aa63ffe15e5b5fad215f6af8f3fdc7ef3765e72a70559dc8c5b5b7cd7d31c0445c64e5c9b401fa29f2"; 222 + sha512 = "138a7c93737d3e73f70a496c4fdadb6d050d8c65169d96bc96d9c252f763ef3bf498dd09fb457034d7ae9c44b062ad98d40fdf687f55a1adafebe9a2ff495dd7"; 223 223 } 224 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/hr/firefox-62.0b10.tar.bz2"; 224 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/hr/firefox-62.0b14.tar.bz2"; 225 225 locale = "hr"; 226 226 arch = "linux-x86_64"; 227 - sha512 = "0628e53b0b88bb8cd959391c1d071772b0bd07f7585466fa8a8b0a5f6be63b880a904c9c8a8f059a0a287546594a532365756fc5d6ddf302aba8c70e3d9f26cd"; 227 + sha512 = "d31de5787021c37ff52c759c7d7a78f7d150f972122bc3c58dedb98cf5cc95a942aa7e326b604387cab2a9064b9ad6f2d9cb1f4681621dc4e0f5ea3ee0e2a3f9"; 228 228 } 229 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/hsb/firefox-62.0b10.tar.bz2"; 229 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/hsb/firefox-62.0b14.tar.bz2"; 230 230 locale = "hsb"; 231 231 arch = "linux-x86_64"; 232 - sha512 = "853e05c9ef13ee2d8c8739cd0d5173ea45747d9e85820343f292fdedd7ec3aa0894cf33d3d3787109fe30fc3bbb25d5ec0149a5905c7ae9ef81a35ecc69b5a8a"; 232 + sha512 = "49f0fabb87a9b1651d800f0b6d1c9722becd854a1d870c7cd90d2f012caa3e16e69ed6fdc5e534d56928b72ddd2f7a3206c25ec1fe6f5b7781288e5732f4b296"; 233 233 } 234 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/hu/firefox-62.0b10.tar.bz2"; 234 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/hu/firefox-62.0b14.tar.bz2"; 235 235 locale = "hu"; 236 236 arch = "linux-x86_64"; 237 - sha512 = "cf3d52618cf17aef06158d7843253b3933a727ef40ee2cf0d68635247aea8bac30b0d3a13b962382155857026bc1ee41bf08edfc5d359241d9292bfb60917142"; 237 + sha512 = "76721e6cac02a5e724213bb035776574f79b0f6a39b53684f68f5bc9257cc34705554875b621c476978361c45507730906b1c455417e9d40233739758a52fd57"; 238 238 } 239 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/hy-AM/firefox-62.0b10.tar.bz2"; 239 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/hy-AM/firefox-62.0b14.tar.bz2"; 240 240 locale = "hy-AM"; 241 241 arch = "linux-x86_64"; 242 - sha512 = "9d17bec7877c2f9d9d3760549398d98547ff8b9401ad562a38d904b87bf9fa19c42099f15c12376e87ef0c6d0e11bf4549fcd1d404e45c898278aa5a115ef691"; 242 + sha512 = "4fb3eef7acb7017231ea5803caf12e4b4aa4c4dfd51ba90f1c02a1e78bae8200b3378b129349859d5a5e3911257eeddad32f5a45e337cd77b573e4e1cdae928a"; 243 243 } 244 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/ia/firefox-62.0b10.tar.bz2"; 244 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/ia/firefox-62.0b14.tar.bz2"; 245 245 locale = "ia"; 246 246 arch = "linux-x86_64"; 247 - sha512 = "5fe3b888a35a2efc32ebd706254537cbed9e6d97856f1010728aa1ca4bedcbcfe05ad4c6bd6a69d7bad4a88013f0aa5c722be3cc32f0d623f9e6275368d80e5b"; 247 + sha512 = "b48e83d16b99f009ddc8303eb5fdbc0bd464ef1f30c2b32ecab0321557be03320f87a6c8e916c68a7e32589aa4edbb1d16f3a2cf2b89a1f2684bb2e9d26a0bdc"; 248 248 } 249 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/id/firefox-62.0b10.tar.bz2"; 249 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/id/firefox-62.0b14.tar.bz2"; 250 250 locale = "id"; 251 251 arch = "linux-x86_64"; 252 - sha512 = "a24db960cf6146b98af16953103c88296affb340368cf11f2c16f2d9c3ab65a93d7b288e1d643070e6b68ccf80be7386748b9ff5696f5e4ecefd3f66b9f538a8"; 252 + sha512 = "a2b576cb99013989c9003730bbf3454185a8354dfd00f6e0e925dd57615d251fd873d0c84d8688896dbbb0f180b9fb9b28774de8737195d808d5bd531273cf29"; 253 253 } 254 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/is/firefox-62.0b10.tar.bz2"; 254 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/is/firefox-62.0b14.tar.bz2"; 255 255 locale = "is"; 256 256 arch = "linux-x86_64"; 257 - sha512 = "9c89abaf1db0aacf4199638cf5b5a4c07b955b5350e4f084496f9cecbd5d0060b4e2d1d4dbcfea7bcdc02d1ad356bb4aa49ad167861911f7611e72fc51c520d5"; 257 + sha512 = "c1da1f41e3dcb0c128c053f6f2d9d5e78f181a1c89790c213989bfbf3c247e990b2acedea933f8610cf53c7e82a3a66ef2970b75087ead3c02d6c057fb275aec"; 258 258 } 259 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/it/firefox-62.0b10.tar.bz2"; 259 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/it/firefox-62.0b14.tar.bz2"; 260 260 locale = "it"; 261 261 arch = "linux-x86_64"; 262 - sha512 = "5e04b44e4c479bd9cce19de826c92a0824ed48517dc18c5061bfc9e04192705de281adaab0207261835be423eec28659fa87a0fb1b5da2eec379d5b75215d0e0"; 262 + sha512 = "48efb19f2cb9c23400f81d175643213c32e35252d24a6128d7102c38ca96675574976a869867f8cd0db5036288200fba31d06f103716542e25d6cd5d9d46feac"; 263 263 } 264 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/ja/firefox-62.0b10.tar.bz2"; 264 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/ja/firefox-62.0b14.tar.bz2"; 265 265 locale = "ja"; 266 266 arch = "linux-x86_64"; 267 - sha512 = "150f257a0ce943546589cf97c9acc3536e3eb34d7cbdd47924e3d3889cd7ad88ce6ca175851eb3d9201ef3aff7795f8027ee31dcb163f06e186bd36ea9d6ce6d"; 267 + sha512 = "19c0e17fdd880d4fc5ff2ca467e5ef4f70e66dd336f7d166f20120fd221eed2173d40e2f9a2937d09b76917c2913bf7764185e54439f8b26a0835ee163ec59e9"; 268 268 } 269 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/ka/firefox-62.0b10.tar.bz2"; 269 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/ka/firefox-62.0b14.tar.bz2"; 270 270 locale = "ka"; 271 271 arch = "linux-x86_64"; 272 - sha512 = "9b7ed329a473077fdae2faef685b0e45123cff6629a1f205645150eb6a1fd00d2559b82835b04f061340489ea46ad2e8056da49870db3e561efd4efff002499c"; 272 + sha512 = "26cda491ba912ee68c09cc346817dc17b2258fc463772bb67fbc460811e8c916c595f37b7cb28f2d63bbcaa7499e97347570c020d7c4bb737a535ea54fd2cc91"; 273 273 } 274 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/kab/firefox-62.0b10.tar.bz2"; 274 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/kab/firefox-62.0b14.tar.bz2"; 275 275 locale = "kab"; 276 276 arch = "linux-x86_64"; 277 - sha512 = "df5f981d1d689e62bdf1eedfefe5b83750fb289e4fcfcff83b7656a4ff422a03125021efa713385a03547e27caa16e07af731ce118d7145a7a622a29dbef4158"; 277 + sha512 = "9140bd417c9202830a96cf97fa23642ce142143dc1c72e64af2a325deec1d977629423e95839877383a2a5cfeccb3ed46d1f9e4b9786816fce9602b458337cc9"; 278 278 } 279 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/kk/firefox-62.0b10.tar.bz2"; 279 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/kk/firefox-62.0b14.tar.bz2"; 280 280 locale = "kk"; 281 281 arch = "linux-x86_64"; 282 - sha512 = "3ca6c1b04223dc2faa6e978897f398cdb87c9621c1f9a35b7d160d6071c1fa776434feceafc743d6efd280c966d5ac462f6d51284c81a15acf4111dd6c49b326"; 282 + sha512 = "66217822bca59445189479df14d9a8e92274fa78e052794a0efa19cf7c0b07459207225c3be9c2de3c369ec0da7e050e090c8d0990fb390ec7d93534bdbfe385"; 283 283 } 284 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/km/firefox-62.0b10.tar.bz2"; 284 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/km/firefox-62.0b14.tar.bz2"; 285 285 locale = "km"; 286 286 arch = "linux-x86_64"; 287 - sha512 = "e23f125394069cb6a02f9c24324bbbfba9bca8e04a29840704c9fd100745a84151db0b09d6792560a29680d6c5543fd446affbe34ba1cd73f06225a1a799cf5c"; 287 + sha512 = "9431417150af9361a3ab018e92f055523db5acd560d489602d7dc48054bc502c85042b880ee7502cf7f8ab5093f88c3deb0b4ed72f29b2a922b6337f5b7f68f3"; 288 288 } 289 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/kn/firefox-62.0b10.tar.bz2"; 289 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/kn/firefox-62.0b14.tar.bz2"; 290 290 locale = "kn"; 291 291 arch = "linux-x86_64"; 292 - sha512 = "15550f601fdda8166140ab74955ef870e597b7e6fec72571c1e3b190f7a19856fce6bf90c9f233d9a90bef709d3eb54632e788a86f3b14186353bbfefe183ca5"; 292 + sha512 = "9f4562d889c62acbb070c055275c355214dc2c9ac9df2321fbd0a55a18613c38c5e632347b105fa6dcb20c60fd9fea06a6b481e685a6f2b820ece62456f837d3"; 293 293 } 294 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/ko/firefox-62.0b10.tar.bz2"; 294 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/ko/firefox-62.0b14.tar.bz2"; 295 295 locale = "ko"; 296 296 arch = "linux-x86_64"; 297 - sha512 = "3ce50f80908e80decdb6e71bb89b7d9a4ce3dfedbe5785efd4f7870d1b2c46da7c660ecee2b6532741222da3502043b8a23e96ca31fc9f9a3098182173571325"; 297 + sha512 = "bd2499500abe90eb186d62ac143459fb760b46f3bc77693197ab8b067fd2836fe93817214663df275992725afff71fb351e878a2a595293316e6e72480ef2654"; 298 298 } 299 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/lij/firefox-62.0b10.tar.bz2"; 299 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/lij/firefox-62.0b14.tar.bz2"; 300 300 locale = "lij"; 301 301 arch = "linux-x86_64"; 302 - sha512 = "55405f1cccbb3bf8b9f554a45a7d9270e1e7766ad82b202cbf733b95ae88fd77452a3bac476122dd4c149fc76c5e59d9a14a53fab7b9669adc10f1fead679388"; 302 + sha512 = "19c4ef854c94db700b7e9c4f579d1aa91962d8ee75d8677a12364a094f574fd3ace7c9717a4bbccd2ab96fd76f3663fc5be0c1b7d9bc2b7400658a6379a15ea3"; 303 303 } 304 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/lt/firefox-62.0b10.tar.bz2"; 304 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/lt/firefox-62.0b14.tar.bz2"; 305 305 locale = "lt"; 306 306 arch = "linux-x86_64"; 307 - sha512 = "d7ea10bca7bfc0d4de8e4c21d8e1c409b03921cf553bfb5ec6bdc51f9a8864d271f58d96af33bb657663e9aaf6f00882ffc225da555eab52605f625b18db01e1"; 307 + sha512 = "8d36889cb3d1d96e04af1b3ca3c2eea287a059fda5b19c55eb622763e14e2d471d7747685952a317352062bb2c2f08159b017d290052146567ee4df335d87c0c"; 308 308 } 309 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/lv/firefox-62.0b10.tar.bz2"; 309 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/lv/firefox-62.0b14.tar.bz2"; 310 310 locale = "lv"; 311 311 arch = "linux-x86_64"; 312 - sha512 = "9e54689a8302723ad301687dcca888317892f0f03a9e2b6640e9ded1cbef4618d263119a956836ed387c926e3bde6463266f47f9c656df86941728b12c0ae546"; 312 + sha512 = "61c467dd3d67a17861b35e2c2004b1c115aec8c7859589495adabb5a0aa9da0d8e672ca4aef39bf5a0d4e3daa8baa57c0f4019fb19b772793cfd6047309794d5"; 313 313 } 314 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/mai/firefox-62.0b10.tar.bz2"; 314 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/mai/firefox-62.0b14.tar.bz2"; 315 315 locale = "mai"; 316 316 arch = "linux-x86_64"; 317 - sha512 = "8411e135b81863bd49d76e68565ccb1240ff383b0fe0bed835af204c95374f6c5bbe14716f1e5dbdb9dc5bd3e2d5e003c98005f2e7c93cd85c38b85dc4b93895"; 317 + sha512 = "92670613c9cb84c59196710ed3f8a45c81f4cc1b91df0f996d289cd4af606aea6d18b0a0528fe2220cc2614e1e417ae951ee4e65cc48ff5a64c781b0ea1860c3"; 318 318 } 319 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/mk/firefox-62.0b10.tar.bz2"; 319 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/mk/firefox-62.0b14.tar.bz2"; 320 320 locale = "mk"; 321 321 arch = "linux-x86_64"; 322 - sha512 = "c426bef4210a9dcf67644e67f4e316a6547a5f02716030c8688564de2993524564178a36e964f159022ba007c95d85ab697a7f718b932b1c2d88a699cad14a77"; 322 + sha512 = "f47fad56e39c1e97b594c22bb8dd6e607d8b0dcf4d1992cf5ac74940709e361382709faa08630355150e6c3b2d324f4f76354b67c34980e68dd70de135c5d921"; 323 323 } 324 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/ml/firefox-62.0b10.tar.bz2"; 324 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/ml/firefox-62.0b14.tar.bz2"; 325 325 locale = "ml"; 326 326 arch = "linux-x86_64"; 327 - sha512 = "47b2afd069a86270a7a227286997d75a50ab83e56e36e310252dd8a7b20b3a6cb34aeea379550d695c01b627e5265579a4b75f267cafba20badb1332fbc258fb"; 327 + sha512 = "fbac9fd1fed364442d7d50722d23d7951a8c770b783b4e3b57fd6dde760cd14ef238376a98e8d79e5eb4622cfa0d8a140e4d45b667c0ce9b51a9953c1f3f1352"; 328 328 } 329 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/mr/firefox-62.0b10.tar.bz2"; 329 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/mr/firefox-62.0b14.tar.bz2"; 330 330 locale = "mr"; 331 331 arch = "linux-x86_64"; 332 - sha512 = "72d65a3ba9e39a30d15b79b241b76a9ffcc2c03ef1942067c4a5947250610ab289926e9a0e3b8ee4903164bc07e31c8d548abefdaeed696ca0c5fbac401f341f"; 332 + sha512 = "e792001270fc3f335dc97d9aaae2b7cb5a62ec32637c65e0566eea0e559d08f3328a60b0e74725a6aeae0211d666e787b9723e2ab326da9fd7894c6af65c10f4"; 333 333 } 334 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/ms/firefox-62.0b10.tar.bz2"; 334 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/ms/firefox-62.0b14.tar.bz2"; 335 335 locale = "ms"; 336 336 arch = "linux-x86_64"; 337 - sha512 = "7bfc29f2f04395a8bbac0bb0df647769ca8fdb5d24411b66204a2fc3b03df380977b2bdc07e62cc9cee9bc15cfdc637166706505712fdcab644d08b19324b62e"; 337 + sha512 = "f50775e2eb2625c31d68d1f62fa27f15ee8b80cdf07bbf15905cb7dd7b8800698d6166d8d666f354a8ac2fe033d5f680cb666f6d325fb6d91848879fdc6216b0"; 338 338 } 339 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/my/firefox-62.0b10.tar.bz2"; 339 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/my/firefox-62.0b14.tar.bz2"; 340 340 locale = "my"; 341 341 arch = "linux-x86_64"; 342 - sha512 = "b7b0ac4fd8c577d3208dfd99e68f491c7292e320da4be5e69d87c35a7289ef85937743ddf94b94ea29956859caa61b2926221a523c28a6502b170f9a53756598"; 342 + sha512 = "36013973b45250946ecf98ea07f6bbec62ab8dd740b6c4c16ac142177d9e63c9e9181f9a53598dd085286696f14c48f55df1b7b6d4bd32f48971c0639fb5627f"; 343 343 } 344 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/nb-NO/firefox-62.0b10.tar.bz2"; 344 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/nb-NO/firefox-62.0b14.tar.bz2"; 345 345 locale = "nb-NO"; 346 346 arch = "linux-x86_64"; 347 - sha512 = "ebc6b1f6559f8f2af68116b1439d5cee695991d458234b36afd0621e9ee98d4361ef5e9dff4d8b5c3721756a16857de7bb1928e99767fcf374ebb5478e69b9f0"; 347 + sha512 = "1e9b654c01ce1b0fbbf3e60839d68b1ee036b333c6636da36317e5e24dff1a3c4265e2d08387062f5006e25a4f3e5f1d7f64558f69efa66d492ab10e36447cb7"; 348 348 } 349 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/ne-NP/firefox-62.0b10.tar.bz2"; 349 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/ne-NP/firefox-62.0b14.tar.bz2"; 350 350 locale = "ne-NP"; 351 351 arch = "linux-x86_64"; 352 - sha512 = "148c56f85858815f8f3206f2cea2915c46bf2cec601fe7355517474d10bf6f087504d43f80aac83171c867ac4ee7b2a83e19cfa515dacbde56a1c36ca45c7a59"; 352 + sha512 = "6315ba2f17ee086ceff4a5e8fb22aa4d6e71fd3a7aee0f65ae5782cd16d25b4dd82f7bbbd5d390fe7c2e394d922e3a293cfc6aa3bac86ac43640c3e289e08209"; 353 353 } 354 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/nl/firefox-62.0b10.tar.bz2"; 354 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/nl/firefox-62.0b14.tar.bz2"; 355 355 locale = "nl"; 356 356 arch = "linux-x86_64"; 357 - sha512 = "59e18eae1b625b74d1f6c51bd2e3d5c790521f4fe64d81448b7a2260b02b8e40c69f1a681002a1307adf0e725f30ca027e761ab055f0463465a264bccfdc5b97"; 357 + sha512 = "2a485fe1e90c4c177b00d0eb9f9a9eb85ddbb3aef9855a4b488f089f28f09d5357410dab86f062f753f6edc9d5a19541c1fbe5d34f9693b3d9129fa6432305ed"; 358 358 } 359 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/nn-NO/firefox-62.0b10.tar.bz2"; 359 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/nn-NO/firefox-62.0b14.tar.bz2"; 360 360 locale = "nn-NO"; 361 361 arch = "linux-x86_64"; 362 - sha512 = "59bc40dd5c0c597ed2b5c65b6a911800f90faf6e1576ee3d62ff26caa6aa91673e7f8e002fe65cac1030ba4b5f3b00d22e362d06556b7124cde5a41213d4dd1a"; 362 + sha512 = "c46fccf172459e5768e3c0367d87616c025648bef4198cf40ad635a36275814a817b11a5a3932900f8bf1cd5c2795699f47af71fea7122579a163c8a444aad7a"; 363 363 } 364 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/oc/firefox-62.0b10.tar.bz2"; 364 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/oc/firefox-62.0b14.tar.bz2"; 365 365 locale = "oc"; 366 366 arch = "linux-x86_64"; 367 - sha512 = "487132fa97faa3fd152261e94c0d5d2c7ddd05051b437fdb1ad586e75fac5072369f4f6fbc3109f00cac5cc9aa99b96300fce3536d364b916f080f98da27139e"; 367 + sha512 = "5344a17d3de222e76e08a3528580bd9599ff8b62d15f08bfac5a977ca1de837e6d6ce8ea5e961fd9e2b50b5ac30f09379ba4f0da2b5b8a186b126daafe60c2a3"; 368 368 } 369 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/or/firefox-62.0b10.tar.bz2"; 369 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/or/firefox-62.0b14.tar.bz2"; 370 370 locale = "or"; 371 371 arch = "linux-x86_64"; 372 - sha512 = "83f19eb17c6bd977b244be27ea374335be1ddabba084ca4a44a6a89bf1beb0b6bc52c196d66e39c947e8ba756ee52c1b0f157afa1dbe907b9009c4d404399c18"; 372 + sha512 = "b64ec4fbbfab124744338c20a1f6899ebdbbc176eecaf9461e05133e24c1b444d88f2659a548afa4898dd2ff0b0f470065515ebc4cd0fbd0947d225893ba1dfe"; 373 373 } 374 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/pa-IN/firefox-62.0b10.tar.bz2"; 374 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/pa-IN/firefox-62.0b14.tar.bz2"; 375 375 locale = "pa-IN"; 376 376 arch = "linux-x86_64"; 377 - sha512 = "d9a61327cbb8a7a497421a2a00174d1e8d1989dec9c10e50f4b1c17e935b82d6871949dd6fd35506c5dedd6d729c968650a3d25a160da32b9d20111b5b63893e"; 377 + sha512 = "4f1bdd0215afc7cb5c6f44e0741b975e19b082e4125035b5cea0e5492f0e107ce63fe38415cf535deda98d95aebc5b8cb04356d979b591443ed718919d4fc8b5"; 378 378 } 379 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/pl/firefox-62.0b10.tar.bz2"; 379 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/pl/firefox-62.0b14.tar.bz2"; 380 380 locale = "pl"; 381 381 arch = "linux-x86_64"; 382 - sha512 = "848187b6f530ddf5f78de17974fedf3662e2f03dbcf7f5f47a0d0ca6507ecc6764242c5a727bb39a728e4ca54b7aaea27492fbb5a0670c2186f5ad581ee9f1a6"; 382 + sha512 = "7149a1a2908ec510619f882b2b6c17479a48bc65e1c8606b67e99e0a3c406667f43135ff2abcc74e5151bb9dbe39d492511997b713ae2b29a2bc7eb6446dc08a"; 383 383 } 384 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/pt-BR/firefox-62.0b10.tar.bz2"; 384 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/pt-BR/firefox-62.0b14.tar.bz2"; 385 385 locale = "pt-BR"; 386 386 arch = "linux-x86_64"; 387 - sha512 = "bab7b0b13a4b2e0be7ccf4fdfd35edc5829af8ab661a52549a511644da78ad220d2bc57be0d2193f3d9365476bbdc38cf55a42e774bc113fec26f6ca60dd31b4"; 387 + sha512 = "59b3e9944b271bf1dce5007ede76d49c4620ec3e6756274622c74e14d7fb192e55d15417a89dc5d031ed5236b0fed1650e0d3c0db2f79f817d2ff34dedeeee0c"; 388 388 } 389 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/pt-PT/firefox-62.0b10.tar.bz2"; 389 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/pt-PT/firefox-62.0b14.tar.bz2"; 390 390 locale = "pt-PT"; 391 391 arch = "linux-x86_64"; 392 - sha512 = "848e886a84a3df7e1ea0a5c4e5fa9910112524d4f30034feb5587467cd4ec9dca2d89e680a95564534dbd3716c8105b772c9b463e735ccdd365cdec80649f525"; 392 + sha512 = "9c0264645b5ed426cdd9d644bcfadd1b59f39585d4268d5c86e3013321bb9c195c98011c6c36fb454c995417fff4bd7d7d7206b7abf1bf750fa0ca5383a6fda2"; 393 393 } 394 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/rm/firefox-62.0b10.tar.bz2"; 394 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/rm/firefox-62.0b14.tar.bz2"; 395 395 locale = "rm"; 396 396 arch = "linux-x86_64"; 397 - sha512 = "dfc0c340c66c66f3b20e44f3cd58cd2c829f8c99fb08658c02c13e21092734803256e39e4dea41f26d681bec91448338fea39b1fe44e5c459626ae3f2b330cc1"; 397 + sha512 = "2b23a56cdb7ff0d08db2184cf03bef8ad7297dc3bef81796d6454d46786ca508614d66496ce3b9305f37f67687884f4bac9d44c15fbbe2bb032995c9def2354e"; 398 398 } 399 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/ro/firefox-62.0b10.tar.bz2"; 399 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/ro/firefox-62.0b14.tar.bz2"; 400 400 locale = "ro"; 401 401 arch = "linux-x86_64"; 402 - sha512 = "b245f08c080d108b15ecbbbc50726099987971a5514e9973835c43a84acc718e014e46eb6c384eed19193b253b69c3bf053ae6452c5c6c036162c9989ce62e40"; 402 + sha512 = "e4297a173ce54732cc1153f2e19d5dff576b261ba00494546d2240fbeb79c1d8375d05b10c78c0495432246761103c2a67a81980025e3822cae84e7ab62f307a"; 403 403 } 404 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/ru/firefox-62.0b10.tar.bz2"; 404 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/ru/firefox-62.0b14.tar.bz2"; 405 405 locale = "ru"; 406 406 arch = "linux-x86_64"; 407 - sha512 = "72f329ccffdde5e17d47d44d49342b7bb6e0d635672b61af01d4e06d7e3a6dea7a84775caf6443f48bcd706815cce4c98844cf15a9a376798a99bd1061b01560"; 407 + sha512 = "db0db90be42a656ea6841495cfb2796d9d2f41aa1f55e243db01738127d774a0e610f684ca71198249ae830ddc7522feee96939941859427d5258ce834147da6"; 408 408 } 409 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/si/firefox-62.0b10.tar.bz2"; 409 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/si/firefox-62.0b14.tar.bz2"; 410 410 locale = "si"; 411 411 arch = "linux-x86_64"; 412 - sha512 = "f9441776e6a09f7637c5f482c80ba95fee10812214cbabd737cf2a791434b1bdbc5effcb3d1e0a91f7f6b4accaeec097ce80652c4ca0237bcbec2632c425f8de"; 412 + sha512 = "0cf491fcbc7596ab6f3835510e199d73913d5873da1a31eee04de14a00dea421a9a73d72ae3f09d9e841e0e0f90b89afdd8f550599488652dc15ceb76822d741"; 413 413 } 414 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/sk/firefox-62.0b10.tar.bz2"; 414 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/sk/firefox-62.0b14.tar.bz2"; 415 415 locale = "sk"; 416 416 arch = "linux-x86_64"; 417 - sha512 = "06b07da3df2ab84f1ecb1364c847e883d36f2269d09d8265d80c24036ef8fe141b7456e649924505f8114b26143490cf956807800f03850a538fba1c43885add"; 417 + sha512 = "4bce5f9d2323f2b6d627d0cc5633918cc01e8ac026e63e6dc8652a106fbfa32ca6fec842d0b229138b60408f6959fb22a92ee7a4049f37b2ed5bcaad27955270"; 418 418 } 419 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/sl/firefox-62.0b10.tar.bz2"; 419 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/sl/firefox-62.0b14.tar.bz2"; 420 420 locale = "sl"; 421 421 arch = "linux-x86_64"; 422 - sha512 = "d74d17ec500e8c65509b97ec30ec3e14f31accd4cd50804de0774389c84a859a8c15cddd53ecf2ea89b864951ddea43f54020f40f2bd33fc77911afa878869ca"; 422 + sha512 = "edf682b9a40047dbd0f1ff5b0d71741332148e2701e05346b701a0b10b56a8b3fc3c65016b71f4fb6f30ad040ceea558d457dc7aceb3104f40ac66dfd52248b0"; 423 423 } 424 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/son/firefox-62.0b10.tar.bz2"; 424 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/son/firefox-62.0b14.tar.bz2"; 425 425 locale = "son"; 426 426 arch = "linux-x86_64"; 427 - sha512 = "c5f347218ae3f5f41e7323099a5b9aa9535df6a88e9d5b5cb1d9c1c64fd2370575c47ccd1d67d599003002e9fddea1a640e04d19d1bca05669baa83739ad1843"; 427 + sha512 = "bf5bde63bc0f87f044b0580bd6f9c63ed21990a4d0df0777c3fb20851498e6500deebed6e66f39dac73123c3bf1cb4a6827afc1b66b398b4e3046172758773ef"; 428 428 } 429 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/sq/firefox-62.0b10.tar.bz2"; 429 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/sq/firefox-62.0b14.tar.bz2"; 430 430 locale = "sq"; 431 431 arch = "linux-x86_64"; 432 - sha512 = "273f8f45ca61978de31451f53ac2759a1174cc4fefa8c5e10f1307f8a91a6939ce339b1ea56dc4b7f394789f46418a6a0dfcd174b7020c66308ae32ad4d74971"; 432 + sha512 = "5cd30675610f982dd3cc09dff55c2bf0ef727599d86ab06eca338ab7d520e87137b5b4cc25137d9c6dcfb644d59729e4baf9c2980c99530eba533255e9052e16"; 433 433 } 434 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/sr/firefox-62.0b10.tar.bz2"; 434 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/sr/firefox-62.0b14.tar.bz2"; 435 435 locale = "sr"; 436 436 arch = "linux-x86_64"; 437 - sha512 = "33c79d802d4d9537743ecfc54c477261dcfe69952b418070bc7c0e40bb8f253127a6bc8a1b001c99d406f18261ac4f65454d373962203352e6828764b5017b5d"; 437 + sha512 = "2128b1bd6605ac8b4207980623f0f8d3e0313b329faba3597b3552a6ec6a7b40ad88cd5522a13c79c5123c6a425006c08259ab55d33773b0b231a5186f5b5ea6"; 438 438 } 439 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/sv-SE/firefox-62.0b10.tar.bz2"; 439 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/sv-SE/firefox-62.0b14.tar.bz2"; 440 440 locale = "sv-SE"; 441 441 arch = "linux-x86_64"; 442 - sha512 = "7cb1ace78d0f8a4dbc6425fa3cbcf141e63b595dede03f81eb2f4408c7aaba20ebf869790918ea7849c8edb415ddcc6d12a02c41e6f31c40d4bc37867c982c00"; 442 + sha512 = "b8d0a505c78d61488b090da9d98dfe670c05e5a675c86b2d7c85b1b3e3489112dfb0a5e26901032800b8eccfe537f7b543e76384a1222a3e6a78a46e0a242c43"; 443 443 } 444 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/ta/firefox-62.0b10.tar.bz2"; 444 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/ta/firefox-62.0b14.tar.bz2"; 445 445 locale = "ta"; 446 446 arch = "linux-x86_64"; 447 - sha512 = "4011c45ff581eec5c4db22a487f1de1b027b7d40dd133cffef892e3f1dfc817d1b9d06c46c1ada6a3f0b9a45bfa628621eff562d05265bb6adf4a3a8cc4627f9"; 447 + sha512 = "c8b97fb14ecec268d33aa5e7d52215a3f65e4fdc22cbe36cb528a9cec43268f911dbd43ce71c51be8cee90beb8437365866689bea1e95c05a3e5b05b03bf1230"; 448 448 } 449 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/te/firefox-62.0b10.tar.bz2"; 449 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/te/firefox-62.0b14.tar.bz2"; 450 450 locale = "te"; 451 451 arch = "linux-x86_64"; 452 - sha512 = "a060d98fb193fff7f44eb5f21077baecaf0f0658d49474cac2a8e57809403cf7b288e8b590af5f23b160e2097fc8b09a92fe9aba0edf5b5482e6056577c8a1f0"; 452 + sha512 = "a783e8ca22d21851a2b956ed5324b9976438dd09ace79262c376b35ce5775ce29d8acdfd63ec98581d6d936f0e6b8de80c22eaf35ad449f40f386fb303429549"; 453 453 } 454 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/th/firefox-62.0b10.tar.bz2"; 454 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/th/firefox-62.0b14.tar.bz2"; 455 455 locale = "th"; 456 456 arch = "linux-x86_64"; 457 - sha512 = "c059806bc61111639ff803f342e9e3863561c8e89a9a075e107f5672d46bfe73f98355c0c5c4376550addbd89e9958375413e4e8cd4dd244845f08f936121de9"; 457 + sha512 = "b4615cc63ed9ae4f1c61493b76ee10ffef9bfd3c7c1a78d865e8b2df1b824cd34c934ce220a35357710e5c7b09ec22892f3fa7b60f7d0cc4347f31e52c28663c"; 458 458 } 459 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/tr/firefox-62.0b10.tar.bz2"; 459 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/tr/firefox-62.0b14.tar.bz2"; 460 460 locale = "tr"; 461 461 arch = "linux-x86_64"; 462 - sha512 = "1630209404ac8eddfcc831eb485f63454ca6336a87268d7cef8923e54d2922be004e7ebfd1251a42b98be170d1831edf5360d7918629668b3eacd955ede8c8de"; 462 + sha512 = "01a07a4d64c6f6089128375d23cb1596fc6d92b487e377d39da0afdc0d34409f3d04094f9efbca8cf5185a64d33fda9a23be5b4e3013409a0ea2d6a8db6f9a8e"; 463 463 } 464 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/uk/firefox-62.0b10.tar.bz2"; 464 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/uk/firefox-62.0b14.tar.bz2"; 465 465 locale = "uk"; 466 466 arch = "linux-x86_64"; 467 - sha512 = "cce5824503a866959ea24160179b24eb56511eee9a2905c08f1fb48379cdbc450554d4f432d37e649248cf75bb411d8e37de0dbaffeb172b417195b037584253"; 467 + sha512 = "e675c65f54011b9345dfa74d9d503d749ea26f2648fac5a7bdcdf8ef4649b8a46e6b5930bf09bbf8fec96e12394566e18c524bc74753a174ee546aba8a3d684a"; 468 468 } 469 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/ur/firefox-62.0b10.tar.bz2"; 469 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/ur/firefox-62.0b14.tar.bz2"; 470 470 locale = "ur"; 471 471 arch = "linux-x86_64"; 472 - sha512 = "ed0f789dca473901e00aba562c633eb1bd53d83e91a17a4943079832b22e77825ce50fe4c347ea1534c3a017837ea3f4c4d4bcb028af11db3149a886db435104"; 472 + sha512 = "89808ea1b6c7d578020face2ac109aa5448da11b53456ea8373548ee77d75fa0024a0aff72cff1ceceb2c59f386ccfa27384b03aa024146e2e4e69a6e09dd059"; 473 473 } 474 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/uz/firefox-62.0b10.tar.bz2"; 474 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/uz/firefox-62.0b14.tar.bz2"; 475 475 locale = "uz"; 476 476 arch = "linux-x86_64"; 477 - sha512 = "4ac79e3f3f5fe2a5bc86577847e7e227baec60d69e34eb0b42c4cc0561b9d3cb020ac64c865fb282fd3b308a0713e8d63342c19fb46c4b477709850062b7cebe"; 477 + sha512 = "c529119efa1224c847a020dcdb5b86791bafb421367d9c14a53dbc1d1d786071dd73a4cfea06a718bbbe966307363bd35ba274c67d5fc6f4e09e55da0467d345"; 478 478 } 479 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/vi/firefox-62.0b10.tar.bz2"; 479 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/vi/firefox-62.0b14.tar.bz2"; 480 480 locale = "vi"; 481 481 arch = "linux-x86_64"; 482 - sha512 = "af9b5197c345481597b7af1c7600ea07d2604d0dac93b2cd87db1e70fbf5833ce579cf8e89e13f28ebfc3106f993964e2a8314934121038de5444736c68cd08d"; 482 + sha512 = "cf8f6210cbc781496350cda7155f8b4fb601e4a086b600a9688c95a6890337a65984e2f9d966303bf5ddfe55f6f6383c514f200ea5097b73d47e0304d7ff389d"; 483 483 } 484 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/xh/firefox-62.0b10.tar.bz2"; 484 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/xh/firefox-62.0b14.tar.bz2"; 485 485 locale = "xh"; 486 486 arch = "linux-x86_64"; 487 - sha512 = "38218acbf09ca1aa67d0bd9897e1dcaa27e13ce6eaa0b40bf94df25e17e7259bbadf6fa58a86977f6e05d7dd344ee38be4d14ca2a10653188c9de8e3b950f472"; 487 + sha512 = "09684b5efce0ff84023e62e364f6adeacb27ab477af6488037df7538cf874e8fc4b8eabca6b37aa6bd09d0d68a015d0f65055c9f6d941797ffca68f9a31de9e3"; 488 488 } 489 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/zh-CN/firefox-62.0b10.tar.bz2"; 489 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/zh-CN/firefox-62.0b14.tar.bz2"; 490 490 locale = "zh-CN"; 491 491 arch = "linux-x86_64"; 492 - sha512 = "a69df7a6883535f84e67240b07530f4fde5f40a3ff526914f0e13d02ddc31297708aaf3f75f4283570fa31136fa8bfb179ec2b5110c2588c7f662ebae27845f6"; 492 + sha512 = "ed3485d04b07bd2d9e6a62e09dcf65e08b7c35f8cbac274aca563c60a8765eb37b9f3bbec7555b2d3ebb13db500916b6208796fc1ce8dc28ef2408032ebf9ffd"; 493 493 } 494 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-x86_64/zh-TW/firefox-62.0b10.tar.bz2"; 494 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-x86_64/zh-TW/firefox-62.0b14.tar.bz2"; 495 495 locale = "zh-TW"; 496 496 arch = "linux-x86_64"; 497 - sha512 = "63440f9ead6d1dea97761a8ee3820da2b9bb99a91ea862124a81a7f5a9115f865b449729d748aa3f078ca85057382602216c3935ff63d93013d383699c8e820f"; 497 + sha512 = "1dab4d9a68a2967cf4ced75c0e03ce1d08f91bcd57f8c4edefddf48c75a2ddf275b14ae7f8ad502502adfc3a3e3f5609c5949c738d00ad4b11811921990fbbf2"; 498 498 } 499 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/ach/firefox-62.0b10.tar.bz2"; 499 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/ach/firefox-62.0b14.tar.bz2"; 500 500 locale = "ach"; 501 501 arch = "linux-i686"; 502 - sha512 = "bfe0baeabd282fd3cd6a1b4dc69c888c58ac0c4f2caf7842af844b9e13c2b5467ff0748c836b00d6eee338a74891e1bdab7909e6142d0598417889104bee0b78"; 502 + sha512 = "ed536fd9966bd41964eef2aa3d28e6e0e26d3c76e2206681167f7ad0d3d4af75ebf82022c1d9ce02ab84485ab1ceedd8df36a292fe7ddbf989fabab82b7181a0"; 503 503 } 504 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/af/firefox-62.0b10.tar.bz2"; 504 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/af/firefox-62.0b14.tar.bz2"; 505 505 locale = "af"; 506 506 arch = "linux-i686"; 507 - sha512 = "ac652cbbfc3a6b7173af0bb3abc142024c3d62f12cb2877d24897231b3576fb4a27ee25f78b4ede5a960c2b870a801990910650bbd725c5fce68ac6239e575ce"; 507 + sha512 = "146c8f6e67924addc58af23e8b0b5c3abac444809ee71a4c2405630e3c451ac6956ef5c27883959b64d802a71b21fc9913576585a950c9e9535e1e96d47e330f"; 508 508 } 509 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/an/firefox-62.0b10.tar.bz2"; 509 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/an/firefox-62.0b14.tar.bz2"; 510 510 locale = "an"; 511 511 arch = "linux-i686"; 512 - sha512 = "b45b34e7ff3bf73258c2b26bc613d9748d179df9366ca0f74702ff7fc5d5e7eff6df4f00ac0d7e0e37f68fa15cd6c4b61dadc16e86f7d563ef890ef502193d8d"; 512 + sha512 = "9978651e290ae85286dcc32ebf2e45508ca52aea7b83a5ca68c49ebcbf3c2fe96d69e5017894732504020f248245eecedba97cd146412a116234f95d1c9b573d"; 513 513 } 514 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/ar/firefox-62.0b10.tar.bz2"; 514 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/ar/firefox-62.0b14.tar.bz2"; 515 515 locale = "ar"; 516 516 arch = "linux-i686"; 517 - sha512 = "8c0a69b3d5edb1a5829c6a3968497efda942f9e5c0fb314af85f192b32f671eca6283c590daff428029fef5de8be0febb262036bbad0df64df5f07a268e7beb9"; 517 + sha512 = "d1973d48bc7b56ecd3c2549f2038cfa2d3051b3a4fcb5576cee78a68eccf1268396a671bee9a208995df96e370275dc32ec084be9f506bbeb681172ff37af9bf"; 518 518 } 519 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/as/firefox-62.0b10.tar.bz2"; 519 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/as/firefox-62.0b14.tar.bz2"; 520 520 locale = "as"; 521 521 arch = "linux-i686"; 522 - sha512 = "d2cb19ac615c36a74177fd565afbe2c451727b66ef09c5c9fe9ac4a45b249b009e33c0684bf0c497b2474899b59899c11bea275b0f03d57d12b14d0dc685c10d"; 522 + sha512 = "c2707088ff4430f3aa2d09f32c5b978a34cb2826c7cc3b0a21ff367ac2bd124942b445e73d4e7ea39feb533bfa5b6a3d6fd8db63f93442bb527afe2cc8778e96"; 523 523 } 524 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/ast/firefox-62.0b10.tar.bz2"; 524 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/ast/firefox-62.0b14.tar.bz2"; 525 525 locale = "ast"; 526 526 arch = "linux-i686"; 527 - sha512 = "90b0c69503bcc24cf082a8c6aece55dfc4ef0567c4f4fdda084376f5216d2165b441a6160208c307383211ae191a5d4b1dab4129d5176338a0101790976d9b35"; 527 + sha512 = "d3b896436935a75922d9c4330f4148109c3d552b49132f2f56e43d684482b8e83da183b49f3ab6f9f55d629488c3df57794bbd8db4e6f7b5caf4534a746f8980"; 528 528 } 529 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/az/firefox-62.0b10.tar.bz2"; 529 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/az/firefox-62.0b14.tar.bz2"; 530 530 locale = "az"; 531 531 arch = "linux-i686"; 532 - sha512 = "4cb4bdd55cdb65a3b989a01cceee343f7962889802801d6a5c42b8125b1db5e5127da33d73b9013d97a5dba4cf495528c857b5bd2439da0e0b636d0b3ab81fd4"; 532 + sha512 = "a9dfb189256df97d9d5bab19501ffc860c3d7f71cc9ffd88bd90f2f2f775d060934287ebcc5f52601e28f854e3bad9399a86f997ec0070932231eda14af6e0c7"; 533 533 } 534 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/be/firefox-62.0b10.tar.bz2"; 534 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/be/firefox-62.0b14.tar.bz2"; 535 535 locale = "be"; 536 536 arch = "linux-i686"; 537 - sha512 = "1d134ac3f604bdf5a70888d40192633701294fee6d1441469cb51315d6a06308f9c35848d7629c5703e6533f0c3b6d2665a15a2f97eef55cc713c171cf8596f9"; 537 + sha512 = "1c241b53fcc4f16d6e200a59ec250a365b28969325d219e3bce1b8767811361e9d5f1e103e7a7987f35dda0693b2ca2c92780d70b0744d7712be7ef913905a79"; 538 538 } 539 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/bg/firefox-62.0b10.tar.bz2"; 539 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/bg/firefox-62.0b14.tar.bz2"; 540 540 locale = "bg"; 541 541 arch = "linux-i686"; 542 - sha512 = "805779852caec7b5700568fb422162b3adb4c68dc8f3e1457766877355c34f4c0bb6f5032b5e20adda8a99db8bf0385bfc1442feaf624fca24f5b6741bd0fbff"; 542 + sha512 = "0ac963b52c76bf4e8425cd25379db5c13474edec47479b0d1c28694ed6b22a9d45fa28ad58f6311aed30e5c8bd2f836cd0792a0649140b187b03f3c30897d735"; 543 543 } 544 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/bn-BD/firefox-62.0b10.tar.bz2"; 544 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/bn-BD/firefox-62.0b14.tar.bz2"; 545 545 locale = "bn-BD"; 546 546 arch = "linux-i686"; 547 - sha512 = "2bb5382a81c1f26bbdf9ac224fb132cf0384231f0bdd3e4f428deda1f61acc2dbdff79125adbb7b13f1f13d2b0ee6c0ded37b1303aa58a87d98e1cbb7e80fe02"; 547 + sha512 = "f8925f66edb85c108c2005100628ea279e8b28322ef92239cf1d96a89dba1036c18205744e8055816b9a0be7ccbda726ba2e33e3d57af7259cd1672a68f94c6f"; 548 548 } 549 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/bn-IN/firefox-62.0b10.tar.bz2"; 549 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/bn-IN/firefox-62.0b14.tar.bz2"; 550 550 locale = "bn-IN"; 551 551 arch = "linux-i686"; 552 - sha512 = "5f3fa574a1f81cd3567db4da19bc1925abb137febb65da56dc18535c22b270f193877c8c486df02c547454b72b0b72c5b0cb42c26ffa7c3f072bd5b6eea542af"; 552 + sha512 = "e6de9869002661a7d177623d670854c405818872fbab33f3c99929762bc9cc745ca9b98f5e1f97ce38ac91afe765e7c86da4cff73fda799e0d845a99641d64d1"; 553 553 } 554 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/br/firefox-62.0b10.tar.bz2"; 554 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/br/firefox-62.0b14.tar.bz2"; 555 555 locale = "br"; 556 556 arch = "linux-i686"; 557 - sha512 = "53b3cfb12ff230336f96af103b2b18b676b2283d57601a97883de941f1bdcd0b05451cff96c345d5bd2491fd3be98478ee0b797bcffa50ebff54706f84de761f"; 557 + sha512 = "3d2277110e062909857da353cf95d220b1d0c756b772b88c75de0e19233477d66d9a21911dfb714ca9f70254a3d0260c4659e037c3a1d17796d9695f1dc79fc1"; 558 558 } 559 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/bs/firefox-62.0b10.tar.bz2"; 559 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/bs/firefox-62.0b14.tar.bz2"; 560 560 locale = "bs"; 561 561 arch = "linux-i686"; 562 - sha512 = "aa61f35cf869d383a0752c7502e94a03f24b1f9460fc0af950bc30d02c7a48e0bec4f21e6336e4ab897fcb566faaa79c56dce2f29b4c66a280bb61ac4a16c97e"; 562 + sha512 = "071c5060a0bdfa587563f2b2df44fe4e6f9c23dfec93d3933234543ed7b89d3bb61d62c1c396177722b681648a7041a17d0ab6fd198fe573f067ddd712f06e91"; 563 563 } 564 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/ca/firefox-62.0b10.tar.bz2"; 564 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/ca/firefox-62.0b14.tar.bz2"; 565 565 locale = "ca"; 566 566 arch = "linux-i686"; 567 - sha512 = "a3b69bce98be7ffe94f7850bbd10ea8bdd7480579f2382616f3d4b491cbc88d0b74f0ba84ee36f407bf6ea1de9849ecd182d5486470be2cb23723e26da11c2fe"; 567 + sha512 = "fecdfe856d9b9730d0abe9a91712972388d2ff1098a9ddaf0b5847475899f436ca49ebd0d4b8c65ab9400366e5bbb668129d40896cb2948d95f7eaca4e43dc3a"; 568 568 } 569 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/cak/firefox-62.0b10.tar.bz2"; 569 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/cak/firefox-62.0b14.tar.bz2"; 570 570 locale = "cak"; 571 571 arch = "linux-i686"; 572 - sha512 = "1e2c63f40827a00416e663ff601a4414f0c2f0123dfd53af4f74b0d9ae82b1805ce124511107296abedc95d921e306f8a5fd516f669fb4fa3a41bf0619654ecf"; 572 + sha512 = "7fc92c5ed3564910235624675c5747060c31f8d36a527a9ea76d9fb28bf59563c4fd8104d9cfde0a3c68aa20803d8f8c356c93785e958c0bb64045becf521581"; 573 573 } 574 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/cs/firefox-62.0b10.tar.bz2"; 574 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/cs/firefox-62.0b14.tar.bz2"; 575 575 locale = "cs"; 576 576 arch = "linux-i686"; 577 - sha512 = "cab4ad092fdea3ff0e109493a21723e36bdc33e508195a53ea1a1f047dcf6dc3428b94f58fe5f00c87baed398fe02545b13c6852f8b15cdb777443793d7d0f38"; 577 + sha512 = "83ab5571948c5c3cf37158d3b85989810eb962412b4326541a3bdfdfb45d76f1f736d835044ff5484a8f0062ff692de600c3984e93a107313f1e1df649d803c6"; 578 578 } 579 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/cy/firefox-62.0b10.tar.bz2"; 579 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/cy/firefox-62.0b14.tar.bz2"; 580 580 locale = "cy"; 581 581 arch = "linux-i686"; 582 - sha512 = "c70d0ef9d6ec38cd2dc5029436b9125e8ccb44a8da340bb24094b5d39b56a70c9583fe13379ed82c95ebf3a547886a22e89cbe9ab125ed0765d7998519b95695"; 582 + sha512 = "ee194f855ce351c3a552ce5a03b361dc76b62f158f5d6d08b42bc87b77fcf82fef819c8ea77ba29f44daaea9e395906927b41d344487b309a8912a3a9e92933d"; 583 583 } 584 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/da/firefox-62.0b10.tar.bz2"; 584 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/da/firefox-62.0b14.tar.bz2"; 585 585 locale = "da"; 586 586 arch = "linux-i686"; 587 - sha512 = "a0f75c5b3615fa714360f436771f0a05a6afda2d9375a8392fbc87b5f2db25dea1f70e3dbcc4ad7a4298ff63c7a86bd1ec7c9fe37289b4135126859b74ee887b"; 587 + sha512 = "b5a5f00e423eac90041209ba942519ef9a38643819d0de7e37896ef19682f1a3b5a5328b7d454a24fb619a234c962e43cc913b63ca6a42596011412381d9fa72"; 588 588 } 589 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/de/firefox-62.0b10.tar.bz2"; 589 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/de/firefox-62.0b14.tar.bz2"; 590 590 locale = "de"; 591 591 arch = "linux-i686"; 592 - sha512 = "14b60dd4e8e0e53d250ab42fda33ab7c5c46699538015d055956db97ec6c3424b92518f44fc7b620293425811326b4cf22d1f8108bd60137ed31268a913a3f9d"; 592 + sha512 = "2bfe57c3f070594eebbb5c96a17eb60ea3371ce8fed97f483c47500a7aba535fb2692c2e5013293baee269ec2fb925d1eed195501357e102377e53ab61dd8628"; 593 593 } 594 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/dsb/firefox-62.0b10.tar.bz2"; 594 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/dsb/firefox-62.0b14.tar.bz2"; 595 595 locale = "dsb"; 596 596 arch = "linux-i686"; 597 - sha512 = "9ab7752b05496b35efed2e32630c883d5c760f579c8733b80c3e5d3c6dda958856ff33997f5dcdf1e34276fea1784762aecddb64cfffcb2dea8b0c09e4ef5ca4"; 597 + sha512 = "902de4c1b693ae76a1d406d0fa3e9513d2dd105ed6f5459b900b4ae17d777f99e21cecabe4c2c3349f5366420fded49699a0d6b120dcae2a558ce88757d81e6b"; 598 598 } 599 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/el/firefox-62.0b10.tar.bz2"; 599 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/el/firefox-62.0b14.tar.bz2"; 600 600 locale = "el"; 601 601 arch = "linux-i686"; 602 - sha512 = "26eb2c42b5b70309e0c039e67005fd45af08eac5f47d016179571f30288e5083c0aa5b099a9c6bde611fa3b064d9bd4b81af16618d516cab45d09f914661332d"; 602 + sha512 = "1d638efe999dbf2a8cb58802da9ec5c985ce50cf1a24d2fb38ee886fbef2269576976b3ea1581647ce2009fb166be4ebe835eb44e9a21ad8a8c2e3ad7238d0a4"; 603 603 } 604 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/en-CA/firefox-62.0b10.tar.bz2"; 604 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/en-CA/firefox-62.0b14.tar.bz2"; 605 605 locale = "en-CA"; 606 606 arch = "linux-i686"; 607 - sha512 = "dcd8853c17ccec0b6db65d1fd950ae669a260a3860fdf128853af2358d1e59e968c470a0e1da087730d6a5808648ca0e9a7d922cd8478cc10dd5e4a1fc15c268"; 607 + sha512 = "aa66a5f0b75356a8bdb7e0ca6b8fcfdda6dccd60e8708bfd74d365245560ea50c51f57ef346bfd066d6364255b1c79b7c24cc4f4c3aba0a23af9585b482d7698"; 608 608 } 609 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/en-GB/firefox-62.0b10.tar.bz2"; 609 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/en-GB/firefox-62.0b14.tar.bz2"; 610 610 locale = "en-GB"; 611 611 arch = "linux-i686"; 612 - sha512 = "58bc4d24bf787617c9adee99046e1991572a71ad742ab0912b49c8b9c393472b17f959d0fd155c51e26510020a1ba71f1126200802a8eb29930741a067d5cf35"; 612 + sha512 = "d1deb40d9f21c9b285a1fe4088abfc1eb96c0001f767cb28e7dd3b57c189244119343bd73d599c00eb0a4b89f516ad490b37b7e93e590703e90e833293964530"; 613 613 } 614 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/en-US/firefox-62.0b10.tar.bz2"; 614 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/en-US/firefox-62.0b14.tar.bz2"; 615 615 locale = "en-US"; 616 616 arch = "linux-i686"; 617 - sha512 = "0dee04349296fcc57e3c8438d61e38eb9909833e2a5125e3ce9b13210d8158a732b24c9149ba20132bd4b07f9b75986c58a379b22497d1148cfa051ddcef6f44"; 617 + sha512 = "d432a53313a5714cc999d3caf3bd9c0d9028b93c5e84601947a3e65c1fcce96fbdc232d16f0436820e50833f725365338db66b152001deb5c5c2358729f75004"; 618 618 } 619 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/en-ZA/firefox-62.0b10.tar.bz2"; 619 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/en-ZA/firefox-62.0b14.tar.bz2"; 620 620 locale = "en-ZA"; 621 621 arch = "linux-i686"; 622 - sha512 = "d75b85d0b16786658c7c81386ada836abd5956850d878369c08a9aa1075a7d73167ee1be3d740dd5730f72bd6859982be56acef898d67ef3431fbbe7b2180b2a"; 622 + sha512 = "530dce84154a0dc9d4712727e72050f2dbd00160c84cce8f92fa47943d907500bdee9e7b2be78699db81d2f781297e07f088bed28d04c4f38450b0ad3704d95c"; 623 623 } 624 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/eo/firefox-62.0b10.tar.bz2"; 624 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/eo/firefox-62.0b14.tar.bz2"; 625 625 locale = "eo"; 626 626 arch = "linux-i686"; 627 - sha512 = "24505cc22b65f389071ccf9deaf5694a931f9fdef9e3e0a139fdf1b7343b16873b6f9941a3194ee113e2f0aad2efeaae425da62e0e0e9f02a31771d3090c20f8"; 627 + sha512 = "247d3c00e423ea76e2b0ebb8358427feb4b0cd03050005dbee99653915ed76d006036293ac01561a2089e1e00f8c460f0d98fab1e6d6018aff3583e2d685bbad"; 628 628 } 629 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/es-AR/firefox-62.0b10.tar.bz2"; 629 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/es-AR/firefox-62.0b14.tar.bz2"; 630 630 locale = "es-AR"; 631 631 arch = "linux-i686"; 632 - sha512 = "84597be9df488f0f269b93f54412880662b507bd9eb42fc71ef8d2029e69f25da5592e39b529ac8c94496a37aceffd292a05e38ac51ebbd242d6afadb9d7ef3b"; 632 + sha512 = "ceab3af65f57c5b851876de49177e6d996f39caeae9280c216ef855ffa3d1f8dbd2ff74a087ac1942a5d4b042a726ef6e440e2e12088f8faf268e409e16ec7c4"; 633 633 } 634 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/es-CL/firefox-62.0b10.tar.bz2"; 634 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/es-CL/firefox-62.0b14.tar.bz2"; 635 635 locale = "es-CL"; 636 636 arch = "linux-i686"; 637 - sha512 = "e67eeeaefa96bd59159cdc95ba7eab27144c38434530cb4b25949016b9a39aa09e451c4199450fe1976981f354bcf7724865e28938964904d652e76fda4f35e4"; 637 + sha512 = "d18a4b2f7d5d8b3e0cdd89f83db21e403acf9353e893595e716e081a4366756bbd7a8f45d7beab159bce1b2cbe3d00f61ac884372d302440aeac72ab414dc1e7"; 638 638 } 639 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/es-ES/firefox-62.0b10.tar.bz2"; 639 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/es-ES/firefox-62.0b14.tar.bz2"; 640 640 locale = "es-ES"; 641 641 arch = "linux-i686"; 642 - sha512 = "535a9138633d8cc5362e7f42394252e95b332d6ee35515a0434aadb58b0b7ff359e1e2b7ba7c5b682a4f11f3361534e83b3f10fc7bcfe766b8ebc54b61b08ba4"; 642 + sha512 = "7fbfce97a89670199d9b1479a9a5563adad90ff6b1f86ade6f2d6eaaf4772ee599df817fcadb6e412b5080e1ee7abd4455d974637fa90dc0fff395722326a711"; 643 643 } 644 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/es-MX/firefox-62.0b10.tar.bz2"; 644 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/es-MX/firefox-62.0b14.tar.bz2"; 645 645 locale = "es-MX"; 646 646 arch = "linux-i686"; 647 - sha512 = "f7d0bdd4afe35f01ab01c1b846ca66814e83a11155c110f08fd03418649bf478996f15b8d7990aa3d77f2fd4e2f3b2b516b8e1c34f304e105c05a35989b9880b"; 647 + sha512 = "f6d613302d70e1deb49ea2562c368ea0dec623dbe4c30092d42ac43e0d890542e041afd204fd1094822198c78319d488b9676645ce9497504154586e621f177f"; 648 648 } 649 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/et/firefox-62.0b10.tar.bz2"; 649 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/et/firefox-62.0b14.tar.bz2"; 650 650 locale = "et"; 651 651 arch = "linux-i686"; 652 - sha512 = "8ebf14e8e31f602889a6022989934e1842d7f3c8b2682ecbd86890fc9c3f2acfd8992a7b2a3dd2ed5a4e0854622c0041e0c4630f08afe800b67254dcda2a1db2"; 652 + sha512 = "92c9ce2fc6fb4d3a5a6915d8398d4790b138853eff1a82005addb034ad95ec7d075b0e4d8b399a8b08184ceb54d258147fc0fa76fe66930648f88ef942183c19"; 653 653 } 654 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/eu/firefox-62.0b10.tar.bz2"; 654 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/eu/firefox-62.0b14.tar.bz2"; 655 655 locale = "eu"; 656 656 arch = "linux-i686"; 657 - sha512 = "e247421a99dce2fb9a1b6ce1ac11a3e9427dcf56b83719e73a894036319af7404b856e70b5170c0a9cce1bbceb99e9aa3d47310a5f0bdd48afcba0023d77d4a6"; 657 + sha512 = "108b341d27641871b196d208b106a676474e272b6fae15a1a65c0992dd48d4fb7e583560dca7dfb7f47655a91a79ea8c496bc5abfd532318618959d0eedd6891"; 658 658 } 659 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/fa/firefox-62.0b10.tar.bz2"; 659 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/fa/firefox-62.0b14.tar.bz2"; 660 660 locale = "fa"; 661 661 arch = "linux-i686"; 662 - sha512 = "c9e134eb933bb3b176e229748233cb840c690720e932fd00877e0c1cc374316c02837acdcf132e687e00da50c922545bf643e37fbecd37a2493738987e36d98c"; 662 + sha512 = "b1d7f7d167537cb590d800c5c834e9d6bebe697300d9ce85a1588751df0baa01a7d0ec9521071a20e2da823f75f5c13c957cd42e1a47382ffb9f46f532d9aa82"; 663 663 } 664 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/ff/firefox-62.0b10.tar.bz2"; 664 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/ff/firefox-62.0b14.tar.bz2"; 665 665 locale = "ff"; 666 666 arch = "linux-i686"; 667 - sha512 = "3f574d2aef865fd60b0a8e2c51144c27eeac6ee9258a6e97587ba3f38c8fc0759e636d6ce023a48ed6136f6b06a913633278534c3b8bf2b9c82ba86c696a2b61"; 667 + sha512 = "f1a9dad9e090cc3e9cc7fdec0a56c7c0fecec9a485b0f572652285d3896e30e334108be1061eaf20e717c3e60d109cd071b3ed049c52fb5d3f390b3f6e73a00d"; 668 668 } 669 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/fi/firefox-62.0b10.tar.bz2"; 669 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/fi/firefox-62.0b14.tar.bz2"; 670 670 locale = "fi"; 671 671 arch = "linux-i686"; 672 - sha512 = "12cd6a2918e9f27867fc49d763a24560ec80b57093669ae5604118ff940fa772a63dad46b9fe4c88486b4e465a4d63a312a9734137095f232980a29debcc08ec"; 672 + sha512 = "8e5d2bbdf413cec2e8fbd31df494f07d800baba19cb36be72999af72bddbcdfe8ef89753fa36a22588cd15e12eab985dda784615c0f1b07de755a24f4ecdaa96"; 673 673 } 674 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/fr/firefox-62.0b10.tar.bz2"; 674 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/fr/firefox-62.0b14.tar.bz2"; 675 675 locale = "fr"; 676 676 arch = "linux-i686"; 677 - sha512 = "273a2724765f6484d9712e58e24640f4c286f209f1869f696f43eb219a2b474cadcf151b5af72acdbef0446cf345fd8633bcaf0d20d8ce43a7e3e27b735ff371"; 677 + sha512 = "e69c972a155eb30d5a2bf16cdc6230ed4b343048c985853b43fa27002d2789b2d1c6fef683e96468820ad77be36f92abb0dc8f8b79206354de858602ec36cd4f"; 678 678 } 679 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/fy-NL/firefox-62.0b10.tar.bz2"; 679 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/fy-NL/firefox-62.0b14.tar.bz2"; 680 680 locale = "fy-NL"; 681 681 arch = "linux-i686"; 682 - sha512 = "dd9e0544a454208c49260f03b1016642d05efdd89aa8e58e5cfd2d2ba2ecebdfa4faca8ac225a0072ab0995673dcbd736ba178a04da11bb790f2a82bb2bd5c42"; 682 + sha512 = "1e90bf49ccd6aafe0834b55d4f6988b180f2e629fa22b29ea6d555ad74989b94127a2acf967f0647fd8276b055c2414d2b6938485439477f74f9e9e1428327d5"; 683 683 } 684 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/ga-IE/firefox-62.0b10.tar.bz2"; 684 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/ga-IE/firefox-62.0b14.tar.bz2"; 685 685 locale = "ga-IE"; 686 686 arch = "linux-i686"; 687 - sha512 = "88abfe08ac9d415f21ec61d54242fc8b19c45ce549f1a09ee76c8bc3fcc3f69b29fb03f1892b52e924c5087e5f835e5f0b7e10cbd829b484d98fb1cf2e4a16a8"; 687 + sha512 = "a4eb5d1e8a89103a4102f1f666918e92429b73371778aa10dc0df428c69ca33aeda395d4d44be256911a77b8bc219593dc2bc0265b4a99044c64643f5b69502a"; 688 688 } 689 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/gd/firefox-62.0b10.tar.bz2"; 689 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/gd/firefox-62.0b14.tar.bz2"; 690 690 locale = "gd"; 691 691 arch = "linux-i686"; 692 - sha512 = "3a56f21e53bad283b76f7ad6ded6aeea44f06e2694f078a39d8bd898f3965eebf0330f7a0a09adc37a0fa39e2a123108c8b7e3942c6fc1c402eb29ed8acf021f"; 692 + sha512 = "8407feb5845d5ddfb0dcaf632e0a06476a94c55c7f3a34c7305b3c9a5ccd7b3e2f50a6b87b4344c9aad940b19724b875590ce13b0ed0064920d697be21d8de8f"; 693 693 } 694 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/gl/firefox-62.0b10.tar.bz2"; 694 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/gl/firefox-62.0b14.tar.bz2"; 695 695 locale = "gl"; 696 696 arch = "linux-i686"; 697 - sha512 = "d393d86f05975163609c1b878d0d9a88398147788c5e4c943502ae0b892bb6a7677a32d66275dd116ae9fe6a2c8e205530b255c004b63d24ce985700b328bd6b"; 697 + sha512 = "e668e58a60af41005a7faf56a14c8d05fd8a5bd30e51d0062cedbc92bb733efb13ac48cf193c430de73b16c21ea421a691ad66bfd0e3e391dc660a6aaa14ad0a"; 698 698 } 699 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/gn/firefox-62.0b10.tar.bz2"; 699 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/gn/firefox-62.0b14.tar.bz2"; 700 700 locale = "gn"; 701 701 arch = "linux-i686"; 702 - sha512 = "39b50c156f561436af31f728770ba114c02c4006a078453b9e5716d4973d1bd8a470e6184344715d77b3b9c978d23ce41d86cfb958d26efdf505cdafdfd42359"; 702 + sha512 = "7b9f1ca75d9e53007c3458717e3cefd59bc51e47966b40f923af2edd896042a3f3dcb71b75de0a1958c560ea78eca70b1a0fd8b93cf4e1ca7d4fb2bfb13e0584"; 703 703 } 704 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/gu-IN/firefox-62.0b10.tar.bz2"; 704 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/gu-IN/firefox-62.0b14.tar.bz2"; 705 705 locale = "gu-IN"; 706 706 arch = "linux-i686"; 707 - sha512 = "886a9c9ed15c04766e14250a244f10abc6ec35d65d81a7b89226425df7abcdf0654b23d1fb03fc94a4d38c7370ae16617142995510ab9cc91142e1646f9f4458"; 707 + sha512 = "f34785d37efad0df07a6111fe706bba1534bd48e135549a25938cb834e1ca4a7cffe793a8f42b7dc1bab4cb2014f67a28dd989f5b72b7cce6b33d2b1137fda07"; 708 708 } 709 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/he/firefox-62.0b10.tar.bz2"; 709 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/he/firefox-62.0b14.tar.bz2"; 710 710 locale = "he"; 711 711 arch = "linux-i686"; 712 - sha512 = "f09f8b374e34cc117978f1293e1216774ee6981f00b0e1754cacf9de52c693bc0196be1a5cf3e8063d69bd9784892edbc3a38b6ced06633c9cfa99eb12be76ff"; 712 + sha512 = "d3a4596edc283c09a952b948722616c264b1d28cd857517d3b7aa164c427f31364e46b9d7a1eaa21a4f49a1a16bbfe50c0512e8f06dffdf7cb3e605067a8887f"; 713 713 } 714 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/hi-IN/firefox-62.0b10.tar.bz2"; 714 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/hi-IN/firefox-62.0b14.tar.bz2"; 715 715 locale = "hi-IN"; 716 716 arch = "linux-i686"; 717 - sha512 = "c60c4bed569222f1fefe97f519edcfb3098ee2769addc6233da16c9ea49b5192e5672adb72a12de0deb00dcfb033f4e48435f9048e27477caef749cdb14bbc06"; 717 + sha512 = "17350812826e42e4b627f30b0a6cb51a3b79f581e34fa2426a3c34963734523b0115186537d9d57cfe160f671e3dce2e0bb2fe9771b6da70aaafbd9a12988d45"; 718 718 } 719 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/hr/firefox-62.0b10.tar.bz2"; 719 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/hr/firefox-62.0b14.tar.bz2"; 720 720 locale = "hr"; 721 721 arch = "linux-i686"; 722 - sha512 = "826c3a6727894b521ef6a5960e4fadb230b51c1518872b1d9bfd99e6b975431bac992d183060d031c378644112110809faeb92d2d26aa9326a2ea327d7513d08"; 722 + sha512 = "ad41978a91e79ce8b8bf5f0a428ece2bb639bc32bc868a5e045561e8dcde5e909138e0389a992ec9a55213e903edb536d6e35f1d452c97234e2831fb6f797a0f"; 723 723 } 724 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/hsb/firefox-62.0b10.tar.bz2"; 724 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/hsb/firefox-62.0b14.tar.bz2"; 725 725 locale = "hsb"; 726 726 arch = "linux-i686"; 727 - sha512 = "df9b791279f5d0ffafc48489095c7847f003f007a19e77af996fbd6ddb19fa79ecb8a9d07bd98821516dc85c78ba7c628511253311176e8a85581d28c7fe52db"; 727 + sha512 = "07c272ac7433d246943138fe6f6cbe44f38b39f2f8c6670201a0ce255ad6b77e10229eaa562cb48e7c240abf3cc6030f9940a4830900e68b4777c312ece49ab3"; 728 728 } 729 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/hu/firefox-62.0b10.tar.bz2"; 729 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/hu/firefox-62.0b14.tar.bz2"; 730 730 locale = "hu"; 731 731 arch = "linux-i686"; 732 - sha512 = "f8751b0908d220ed6444c2ad6fa5a2070ae843190bdeff9db1f032a260a1b5e752703fc4543e91a67df0b12cf62a7af22804b74f1004cfc4bbbe6be4f28c446a"; 732 + sha512 = "3a37dd82ddcfa5e2d0debf2b87cf904295c36d4cb0140b7b0f1d76e7df4934bfaf1224451f4954f2c7a65c1c921a742266af776ff81a9a0997513fe44c71c36a"; 733 733 } 734 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/hy-AM/firefox-62.0b10.tar.bz2"; 734 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/hy-AM/firefox-62.0b14.tar.bz2"; 735 735 locale = "hy-AM"; 736 736 arch = "linux-i686"; 737 - sha512 = "0eee3e6e29c408a1e14da2c89c5f14f19b0d2edf8ef914d132b94ed9685a09c3de2908c8ee0264eb2564b466cd8779a58a0fd4eff38a2a8ae73191469ce327d1"; 737 + sha512 = "6f8003d9c143cb58a9609cb36aeefda2bada612d395a01394eab040b20f9748d58194b9b62e2abc17e59a653f2145f5ea1a9e217b2d9e90d897ab3e134a8548b"; 738 738 } 739 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/ia/firefox-62.0b10.tar.bz2"; 739 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/ia/firefox-62.0b14.tar.bz2"; 740 740 locale = "ia"; 741 741 arch = "linux-i686"; 742 - sha512 = "3ec0feb25c12cba1c1641b5e91d79318f81c1fc635e32fd3ffeaef6acf0fb55d2c5c8fb6917175ca0ea6534a74469cfed283565c94a1d5a87f69ba70f9d25a98"; 742 + sha512 = "12154ae51bd9e5ae303d0f2bfbee765e8094a89015e1a1dd093b91fa927a438da954dae30526e9cabcfaca86ab7c646caddda407b139640f6ca06c968f88ef64"; 743 743 } 744 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/id/firefox-62.0b10.tar.bz2"; 744 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/id/firefox-62.0b14.tar.bz2"; 745 745 locale = "id"; 746 746 arch = "linux-i686"; 747 - sha512 = "4cf4521fa259ffda0b71bff3c01a1296a22da00844e3b357a2df2442b9129ab19027df8eb766ae2197d8cfb7193fb8cf49cb6baf4f32ee9b0264c85763a1cb0a"; 747 + sha512 = "80ec1f1f77db0fd6a340834fd9f2183a114f477eb4c52930a0c70bea25198fa4dc690bf772dd4d1adc29ded5db9c583583dfabd931eb746148754b6de82718f5"; 748 748 } 749 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/is/firefox-62.0b10.tar.bz2"; 749 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/is/firefox-62.0b14.tar.bz2"; 750 750 locale = "is"; 751 751 arch = "linux-i686"; 752 - sha512 = "921260f5dac381ac51ea859515e7016f3528c9e985c09566c06342d225614878cf25eed6dd74ffba9d108d9cbcaea7c44852d3010493d7586ce34ed1e0312315"; 752 + sha512 = "d3a4599637a26b11990f261e53586bceb6d9168f8255985c0840420273ad72ae3aded3ab651d5773e395a6cabde552e60ce1d1a5e5eb81339089692d7a22ac6f"; 753 753 } 754 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/it/firefox-62.0b10.tar.bz2"; 754 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/it/firefox-62.0b14.tar.bz2"; 755 755 locale = "it"; 756 756 arch = "linux-i686"; 757 - sha512 = "31edbc72aa5088466f49dbf28efe97484000cc7cac1d84c14fb22af3aa551f378df04c8f08683b5a1a690e6fc7d6c061db3ceb639fc94ca6d91245de252bbb79"; 757 + sha512 = "241c3f44e6df189bbe7f2bba2ee5a25d00fb391a8e3c1c1f94615ed7469265ff71f14530f550947582a79ad862d024d635ad53465ce8eec4bc4116b15d47bfbf"; 758 758 } 759 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/ja/firefox-62.0b10.tar.bz2"; 759 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/ja/firefox-62.0b14.tar.bz2"; 760 760 locale = "ja"; 761 761 arch = "linux-i686"; 762 - sha512 = "db1ffa1be437f472100f748bf09f2c7d8fd82554cc04c7b95bfdae5903c69b1421eb4b35d67e7fdab9dcac6780322c1cfc55fd70fa12dfa55980c2344e49218a"; 762 + sha512 = "4dcf8f26ed899d08762501067edbdf4e850423a6e2d82677e28f8bf64888734f21fb34b6f9e154e3f7eedbdb7b734661c14247e152dc1530c1ac6d00b429b6a1"; 763 763 } 764 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/ka/firefox-62.0b10.tar.bz2"; 764 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/ka/firefox-62.0b14.tar.bz2"; 765 765 locale = "ka"; 766 766 arch = "linux-i686"; 767 - sha512 = "c0bf7cf8fd9a89871ee57b3b56a1c648f89cf59425bbf8d95e9b41a13040b06f714a8fe2cfc99379473ff925ab4eeaaaa618685843e7669c9a92c66adf9957fe"; 767 + sha512 = "aa411a3c484bba37b65ece7b5822fc9fbba669862552769eec6321ece3c6574a5fb7b7af58c72c9a18026ed278f0005c688a5ce59dbdfdd550af535f13aec122"; 768 768 } 769 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/kab/firefox-62.0b10.tar.bz2"; 769 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/kab/firefox-62.0b14.tar.bz2"; 770 770 locale = "kab"; 771 771 arch = "linux-i686"; 772 - sha512 = "69853a72eae2a40490f5005cb7666586025eb481f0be8a5b2aaa66f10b1bd60d66185b34a24b76932b0f2b551a79a832aa3cf7997ea08f038e9471bf9310f838"; 772 + sha512 = "6e2654d169dfdf574d98cb709b4afee9df41a3d05f4d656894d948d502f69fe3b30f109b9a3719b277de82bdfd065d83e280c2c5344b2a2354d172716f1097f2"; 773 773 } 774 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/kk/firefox-62.0b10.tar.bz2"; 774 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/kk/firefox-62.0b14.tar.bz2"; 775 775 locale = "kk"; 776 776 arch = "linux-i686"; 777 - sha512 = "f5605483a35424d0658d3fe662c1c50371924a3e51dc3761c2a0cd5a91266d95421d2ede9f5cc0d6af93fb6ef2abd8a15aafb0bbba724c37241c4b3b16eedade"; 777 + sha512 = "c63d039688ec548ed3eb736ca109238d210fea74f9361defce0ee4637b11a7a2a0dd74634f18bed36d958c5af4516f02ae93e0a29b8fafa175e42c5dc38c2eae"; 778 778 } 779 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/km/firefox-62.0b10.tar.bz2"; 779 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/km/firefox-62.0b14.tar.bz2"; 780 780 locale = "km"; 781 781 arch = "linux-i686"; 782 - sha512 = "c1c48e1982a1961755a336e804bd1b40ced909808557d4afb3cd53761fcba2183afef6c91c408ab53adbbf39861438a7f3ce728323c410889d2568f90f4d1ec3"; 782 + sha512 = "61d968ec933da006456c7b30020d52c3080d3ba6bf3b6d2727b9b294f8d36b165ff73fdb4ec1c8cca5d88f48f14211e5f14084af0b06dd918d76d294df5591ea"; 783 783 } 784 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/kn/firefox-62.0b10.tar.bz2"; 784 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/kn/firefox-62.0b14.tar.bz2"; 785 785 locale = "kn"; 786 786 arch = "linux-i686"; 787 - sha512 = "947d68caabde62361d7b4e5efb1550d963c3d6795d45301aadd36d31952bc5445e6179b5db6a26ede685216ede369b2f486e8945fb573d71962569554d1b19d3"; 787 + sha512 = "54ff4b48ed61fc1a138ea6aab09af04c4364a78d2658ca6ffdd425a3918c46bec6120cf96d70f7287f9645061f5f21f92345339e47138791e5617b0fafc4064a"; 788 788 } 789 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/ko/firefox-62.0b10.tar.bz2"; 789 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/ko/firefox-62.0b14.tar.bz2"; 790 790 locale = "ko"; 791 791 arch = "linux-i686"; 792 - sha512 = "86e0e12d63d3acfdcff623492da49ebf7a405556fe57289622910097847f8d64adffbe27bdd2de9954431af7a4516feb692a4f9c0e79c46ae1eff8b301e36870"; 792 + sha512 = "ca4f3e1dead36792708201afb1a33a7c612dd1fefd1d7cf9bfa33ed923884bb736187ee6c2eb331f3dac5b5ff79b52f1f480a930395e2d92b3b86310ab93c14e"; 793 793 } 794 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/lij/firefox-62.0b10.tar.bz2"; 794 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/lij/firefox-62.0b14.tar.bz2"; 795 795 locale = "lij"; 796 796 arch = "linux-i686"; 797 - sha512 = "2b726e938679f36f4d6fceae5f12ba746468b6f4cff03e29c1f7d52ddcac75d380fdc8d780b46be2d2a2581ba83278fdb233e9b91e42a0f68e3d0ed784e59b67"; 797 + sha512 = "2b52352a43ceb44a443412f1cf0bb7ea4af6fe13a579ab94ec22486ad96a6df1e6db487fb66ae864b3e26ceea13bc229fc6ac8c601ebf60c0abf9b71af3b6a40"; 798 798 } 799 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/lt/firefox-62.0b10.tar.bz2"; 799 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/lt/firefox-62.0b14.tar.bz2"; 800 800 locale = "lt"; 801 801 arch = "linux-i686"; 802 - sha512 = "49c991aad99f32c3f1901af207ce62d8a2a4445fdc5d6b06ba47e2da64bac7e99af80a330f03ad65210a636230b1099fcdbc0b526665f4a8657e529b1c3be102"; 802 + sha512 = "d44724f79f7fe42e165a3b776dc23ae1a119c7d8282a06d5057066623d52b2816a15b9d174b579ff94b5770ae885630a9147fe544eca6089c8d76a72a9368487"; 803 803 } 804 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/lv/firefox-62.0b10.tar.bz2"; 804 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/lv/firefox-62.0b14.tar.bz2"; 805 805 locale = "lv"; 806 806 arch = "linux-i686"; 807 - sha512 = "01344f2ac444d9d7d87da48335d3ec7e4456e61062c3b9ce9f398be2fbe16aa9ddb01709358642b7f69ba0a6d987093e07022d25f66319d2b1e2b56a2ba3865f"; 807 + sha512 = "a2ae3d5059639d1e119b4ee54e8870b5786de15385b35f5f53f8c732ffb6e5a2688f3b7c047a039fda5fcd408280b891f4afd7fefdf485f600fff1780c327c7b"; 808 808 } 809 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/mai/firefox-62.0b10.tar.bz2"; 809 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/mai/firefox-62.0b14.tar.bz2"; 810 810 locale = "mai"; 811 811 arch = "linux-i686"; 812 - sha512 = "95693deb31f66f6d8303c0f34bc003903322adf8563d19ee0918eac00c83cfac7911d9b11c28bf7eaa5b8b1b08f8a90cc248a8639f655978cd9589b313aaca83"; 812 + sha512 = "6141319790a70e164878793c0d42446b4dd572737b394dd356d01e9cdffb92caa2cb7a89acf184add6176aa62e19f7cd9b2a9e358123a308be0e8aecf72cd289"; 813 813 } 814 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/mk/firefox-62.0b10.tar.bz2"; 814 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/mk/firefox-62.0b14.tar.bz2"; 815 815 locale = "mk"; 816 816 arch = "linux-i686"; 817 - sha512 = "26cf1ce58796e570317e693b30658e3b423f2ba2a1e3614c3ecfce0b0de8aa224cc1b6c6cbac161763bf0ae8d3594b856ed15a6a40bf1f159f7d5869178eb4aa"; 817 + sha512 = "b9727123275bcd553ac36491f7a82dbbcaf124f04d91f3c4f2a864c9cbc50a7f643ad819901c635b316811df21bfcd2bb478b9501f6fc308c0cb3b9cdb19dbe0"; 818 818 } 819 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/ml/firefox-62.0b10.tar.bz2"; 819 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/ml/firefox-62.0b14.tar.bz2"; 820 820 locale = "ml"; 821 821 arch = "linux-i686"; 822 - sha512 = "c835c1f3776cf34d0fd5f626f61b57b70a200215800634010fcb758c9ae11df9f989c618682e85bc04936f83b105b30cea39a9cd350c6f9d6364f2a268a56b4d"; 822 + sha512 = "ffb58fd2a23a177db2a286937b97c250bfb999009dac189f83b1a1b0667919f26d726fb13aa9dd0d94b0c0596cb7f47950da9aed76bee42ef01f93f898b3d1b0"; 823 823 } 824 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/mr/firefox-62.0b10.tar.bz2"; 824 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/mr/firefox-62.0b14.tar.bz2"; 825 825 locale = "mr"; 826 826 arch = "linux-i686"; 827 - sha512 = "d63731ce8920ffab15c23b477e9bbfe9d4fd8b6202f329f333c557111a21458aca6fb2d6573bdb5c83c258092603ab105e43a5c8f890586fca7346ec5d468ef7"; 827 + sha512 = "b17a16ba1e6ebddfcc205990dd78fc0c54b302a73fd99370cf13f545e481859d750a256acb1b170e2f08cdde8ccd1c28782d14bccd0609795169d0eb653b2c35"; 828 828 } 829 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/ms/firefox-62.0b10.tar.bz2"; 829 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/ms/firefox-62.0b14.tar.bz2"; 830 830 locale = "ms"; 831 831 arch = "linux-i686"; 832 - sha512 = "0a592487eb0aaafb37b8d2a27cd9f7a1fffe215b5a04595dae25f2cb8f309fa17ab1f642be2bc640eeac55a301ee75c5e7a25b10b3b193ebee361ec9e4829b39"; 832 + sha512 = "efbcb8bf1b3bc799a44be6ff1476631091018bbb68355ca37af2eab436bed63eae51568f824e52318412dd6fe56d662333320254024bc33ff1fe48ded761d792"; 833 833 } 834 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/my/firefox-62.0b10.tar.bz2"; 834 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/my/firefox-62.0b14.tar.bz2"; 835 835 locale = "my"; 836 836 arch = "linux-i686"; 837 - sha512 = "0c4b2c54893d3398bffdae9a3c0cd6c61bb23b11b9984849facd9b17221b065e4527289ece0e1ffa731dd9d6cd0f8c75ec884c47bf41c072e72251b33eb4fa17"; 837 + sha512 = "83198104ce9699ccc1f638784568f981034ca5690b65ea9fe47f03ee0db2be34b68396179b6728da27c9a9728c2d6f6f4cbb4a7182cf08220567203aaafe18d4"; 838 838 } 839 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/nb-NO/firefox-62.0b10.tar.bz2"; 839 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/nb-NO/firefox-62.0b14.tar.bz2"; 840 840 locale = "nb-NO"; 841 841 arch = "linux-i686"; 842 - sha512 = "b1bef0780fd17e0e6ae543c23c6c9fb89c500b0668b30c4596cf340d2fa5bd2663bdd683b18aa02de8f7945b84a23d9b43e71b60a5b6b6142996062e72e20df5"; 842 + sha512 = "827a7e69b1aeb931aeb137f2d083cf4c3af8350f98b5f1663d5b975b314ab9960271b970b26fdc37a362a53bf5cb32df9b620d357cc9b79327291eca6182fda9"; 843 843 } 844 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/ne-NP/firefox-62.0b10.tar.bz2"; 844 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/ne-NP/firefox-62.0b14.tar.bz2"; 845 845 locale = "ne-NP"; 846 846 arch = "linux-i686"; 847 - sha512 = "e80503ec40fe25c43b622e4542f6a011d2101a8cbe9452b2ff17ec584422e3f3e0ce962b441efd929c764d69c0ee2a8f8bd56d62bfd3ec89c6bdcb1cbe66d12a"; 847 + sha512 = "191e49c56422486d0fd9bfc3d003db1396b13b9b1bfaf78e0c4f0520d7b11e905ed450fbc281e4e7bccba3be61c2f35f5ccdd4fa81d96aa835f244f95d8a9387"; 848 848 } 849 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/nl/firefox-62.0b10.tar.bz2"; 849 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/nl/firefox-62.0b14.tar.bz2"; 850 850 locale = "nl"; 851 851 arch = "linux-i686"; 852 - sha512 = "a3aba8b75413ef60a379f58a4456ac5ec9e67c3b5a591b05f86252bc12901140a5e84975cff07475b3fa03fc65f1141e13c9538d1071a9c39d919c484d36d636"; 852 + sha512 = "0f36eda39ac26e5df282ec1eefa15aefe54fb4348e2a0a1c36d90d55f410fd2ef0291ed52161784decac2dba708c887e854f2e6cbee0a223bf37eb21565bb293"; 853 853 } 854 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/nn-NO/firefox-62.0b10.tar.bz2"; 854 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/nn-NO/firefox-62.0b14.tar.bz2"; 855 855 locale = "nn-NO"; 856 856 arch = "linux-i686"; 857 - sha512 = "79e5bfb8a3db4c22097e3c7edc71578da7db59a64f66f9598f3c49bc619c83aa94652d9fdecd2021696c22e2301235cd9d83ed0000f48d30ae2a1be7d0fa5aa3"; 857 + sha512 = "c56db951182a03a0e705393214b63cc53de8bca6ef259355bc459ec2b9f03cf07808b07572c4d889dea7f3564e63f77e0edf7e3afe6fd0c0ee9be71345a8a6e2"; 858 858 } 859 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/oc/firefox-62.0b10.tar.bz2"; 859 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/oc/firefox-62.0b14.tar.bz2"; 860 860 locale = "oc"; 861 861 arch = "linux-i686"; 862 - sha512 = "5405154cff12e11f5cca920e5120661884185f1972c2bcb79a61be5ff49dc2359876e9b18ffaf6ec4429bd13f787b047ff83f1b0061d6bcbe94f9add319a7f71"; 862 + sha512 = "2a905ddd650ef5b21ad7861daa62960f468caa7763efb9fd0b19c5702a68bbb71c9a5711ed62ed459c4997bd8a63a304b1e699f323ee3deeb6d36e44e70e9b60"; 863 863 } 864 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/or/firefox-62.0b10.tar.bz2"; 864 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/or/firefox-62.0b14.tar.bz2"; 865 865 locale = "or"; 866 866 arch = "linux-i686"; 867 - sha512 = "c3ae13e279b9443418307e34f25a0bac54844d70edaae6d7e77a370197f2fa82608a0f666ad7d6f59830ac7f0425c7818992ab4dc62ed44979b7c774e82b115e"; 867 + sha512 = "7e4df2008c6171b31552c53ca13d9a76fe4707778b43a8a16fb76a11dee50ea7be83796404dca48b8288b3621f7b9c6552b31b81a586f4545d92bab4421a4b5f"; 868 868 } 869 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/pa-IN/firefox-62.0b10.tar.bz2"; 869 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/pa-IN/firefox-62.0b14.tar.bz2"; 870 870 locale = "pa-IN"; 871 871 arch = "linux-i686"; 872 - sha512 = "aa91fa31a4415d50c8f3b73520e4bfbbc4e520c632af1b7b8b7b45e9bbcba1f29d2a18df87c2296cb0c6471741e75bc2b4044c0e1c361400b51c20c6a0baae66"; 872 + sha512 = "f5a8ba4ec19a4d614556bddadfb4b65629cb6f8d99d9cc832df8be92ee22974ded90f34084b16497cb6d3e1b1a701b3143bdffd535d2fb59b3a28e6605df0f5b"; 873 873 } 874 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/pl/firefox-62.0b10.tar.bz2"; 874 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/pl/firefox-62.0b14.tar.bz2"; 875 875 locale = "pl"; 876 876 arch = "linux-i686"; 877 - sha512 = "f655ed4d8bb895b9e966aaa4f95eb6cb9a450daac31a164ff0a8107f87a460a40fd9fde913613f7099b601a003862c33e2af0eca0eb75936bc767f0afd826b7f"; 877 + sha512 = "fea0d07d39cbd75a4e16329998fd0c4ece1da006aea3c86347be153c6c880127e0ec425011c201e88ce3d99398c76c465d9d436d796984eaec4b38053eff061f"; 878 878 } 879 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/pt-BR/firefox-62.0b10.tar.bz2"; 879 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/pt-BR/firefox-62.0b14.tar.bz2"; 880 880 locale = "pt-BR"; 881 881 arch = "linux-i686"; 882 - sha512 = "1f2102b4b6e57d75b9cebf0669ded9f3e88de67b545cc95a7a38408330006dcdfaf206b792f16e94c6374e722baa77733e64255eaa6d94662df0352852978d50"; 882 + sha512 = "7898403f37263b90416aba181b8059af729a19bbcfed750d7d5bb662e19c4b53616c205e4d59f2742c3c103b30d694fa4717839d623be9903f4e9a8ae831211b"; 883 883 } 884 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/pt-PT/firefox-62.0b10.tar.bz2"; 884 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/pt-PT/firefox-62.0b14.tar.bz2"; 885 885 locale = "pt-PT"; 886 886 arch = "linux-i686"; 887 - sha512 = "9971127f170ebe9549680fbb22ae1ebdccfa52ced00b5afd20d14c552f3c5b12754b00552986eb1a658515960bf71cdbaf5f85fbf9dfcc059ab713814460630c"; 887 + sha512 = "cbac5e8896f2a92f82847197d30a24713d7e479129c82bbef2f8f401e77ba61e1c4c2e5638540c254f0788b67d5d5963a68567905a569c8e33f9992da548b8eb"; 888 888 } 889 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/rm/firefox-62.0b10.tar.bz2"; 889 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/rm/firefox-62.0b14.tar.bz2"; 890 890 locale = "rm"; 891 891 arch = "linux-i686"; 892 - sha512 = "3c7f660809598f80116f8081d7a7f3e1455739e65b99a28a707c3c93a7dc2d0023327c5fbf9bb0a8f484ad640b53fd9356a8e0fdfc5d3c9ce4f3c54ad47983a8"; 892 + sha512 = "496a00b842355c342630f9a7c4523c7bc0b86807beaa2a7af608e96189676e4ef120a64b491dd191eceb226cdc12ac6cfe87ce895411cfce90a908a3c5254b3e"; 893 893 } 894 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/ro/firefox-62.0b10.tar.bz2"; 894 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/ro/firefox-62.0b14.tar.bz2"; 895 895 locale = "ro"; 896 896 arch = "linux-i686"; 897 - sha512 = "4752405e671d48899d9cc306555d40eb2eb5eadad2228777232c7c12d26dac1dd60eb66758df012fa5fa58366df65bd33513eff02ab7592b35ce605dc2201ab7"; 897 + sha512 = "87870e2b7bcd221f75f060d69d8ea603f1e7fb96b43f8caebcabc014f63721894fcafc7f7bae2ef5bf66eace16c774d6c5e6142ecaf46b4eba6bf0df29f0f000"; 898 898 } 899 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/ru/firefox-62.0b10.tar.bz2"; 899 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/ru/firefox-62.0b14.tar.bz2"; 900 900 locale = "ru"; 901 901 arch = "linux-i686"; 902 - sha512 = "2dd94e26837bf9f52d80480069674d54e7851999f89d36940249475e7262eb66c2f88b6776b0e798a45236930ec4eabcd818b9ff5186ab4688959bd4c120e8fb"; 902 + sha512 = "b426aa28d8c456d91c508a9e25cd33dcfe244732a9e351b7ca4c55ac611e4a72a8bcfb40c9f3d4a60c57e0edaf6cbbe35a0df41f6f3d7a99c19a875fadd87bf9"; 903 903 } 904 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/si/firefox-62.0b10.tar.bz2"; 904 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/si/firefox-62.0b14.tar.bz2"; 905 905 locale = "si"; 906 906 arch = "linux-i686"; 907 - sha512 = "788f0eeec94ce2506522eddc9ecbb4d1873003fa6813dfc419819d3b957844b81af98f01d686d94bc2d5ff28d075a999a54caa27b07ba05b3707edd9b4b967f9"; 907 + sha512 = "edda9129c035977398c29fa5333b69b997e6a97e324354edc6037b4cdc5d5c62f6122479f1b7662a64c3e1fb9efa877fc5186b87732c5598b5d98a8e15e4cce4"; 908 908 } 909 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/sk/firefox-62.0b10.tar.bz2"; 909 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/sk/firefox-62.0b14.tar.bz2"; 910 910 locale = "sk"; 911 911 arch = "linux-i686"; 912 - sha512 = "84aa33cd0306c6a8353b71dae4528752639f408866c446b03ff8afb58842d39cd3fe268d9c3209d1a5ce73a2168eebe307e4b82b11043066f39c67f526afa53e"; 912 + sha512 = "13d6175796804bf7b92475739282a0865e0610f05bf44aca6f8669f27443b5c936fded3b4b8b0eb4732fb3783a7ea3b7a8e7ecdb9007938740052e5c950d9a85"; 913 913 } 914 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/sl/firefox-62.0b10.tar.bz2"; 914 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/sl/firefox-62.0b14.tar.bz2"; 915 915 locale = "sl"; 916 916 arch = "linux-i686"; 917 - sha512 = "39ded81264e7a0b5f52953130deabfac540778cdcc08cc9d0f24429d69ff6805a9ee0a853f49f235c8df84093936df8907daf77ca5c2cea62b20bc210e9d8756"; 917 + sha512 = "d9cabfd23d96db68f925887ec43ca7ef6e8088fcce0d5dcf236dbd30894aa17f44ebe11f4386f81bfdaa7ab5e1edca2acb2d6e7afc2f53e5970386365cba7924"; 918 918 } 919 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/son/firefox-62.0b10.tar.bz2"; 919 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/son/firefox-62.0b14.tar.bz2"; 920 920 locale = "son"; 921 921 arch = "linux-i686"; 922 - sha512 = "a3fb3ec97d4367e27cffb76c457440a5727b67829afb1a419e02c18b039921c66ad8db96b56ca37488b02c67b8cdbf5db211d03bfeaf65401a84cced13ff36b8"; 922 + sha512 = "169c538ab1663ec914f8f3379fb428bfdca8c78effcb509053931d97251e9257ba65d605a211ce1e92ca41443d303abf1e82be286d932ae178b6057bc255f5bb"; 923 923 } 924 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/sq/firefox-62.0b10.tar.bz2"; 924 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/sq/firefox-62.0b14.tar.bz2"; 925 925 locale = "sq"; 926 926 arch = "linux-i686"; 927 - sha512 = "8723521c46a18d0c1649d2a0af7702a854e12249323390d65638424fca7dbe72bcee4e9c8150bdace09ed2f587db2e02024f5fea645c933a945590ecd20e8c48"; 927 + sha512 = "3b6a0c39a91723696764282b763ee053d083fe27e851212b60f8d3b3682771f93673a631e05cc40b432c56ea01ddf70a0d8b0f7ee0076f4bdb6e05e55eae8649"; 928 928 } 929 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/sr/firefox-62.0b10.tar.bz2"; 929 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/sr/firefox-62.0b14.tar.bz2"; 930 930 locale = "sr"; 931 931 arch = "linux-i686"; 932 - sha512 = "c70b6a7cc124a930bbb2bf74652232b64d05bc87c625e49b94d1d9b52be85aa56c8a0ac8a2bdf50b90ea41a74728c19ce5ed3d9fb11b96be29bff437883401f6"; 932 + sha512 = "72641d7a1d5c129bd1d5afa68b866d0f28023e0d1ed8671231e72b4502b4e788922c9b154b83162bc5e54e41eeaedd027e58862cadb251634a11fa6f164b584d"; 933 933 } 934 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/sv-SE/firefox-62.0b10.tar.bz2"; 934 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/sv-SE/firefox-62.0b14.tar.bz2"; 935 935 locale = "sv-SE"; 936 936 arch = "linux-i686"; 937 - sha512 = "df9e5518ba53314f8bf3e99914c2d36e1e3b495e0333ddaed3bfb5c16a75ce2a83369a1247c2c7f14a774ab0ba0bdb92ae1ee4f25314c68f7f6e3dada4a10b8b"; 937 + sha512 = "468c9eb51744390ba7a3fd7beef02771c900289e08de6f4b3e47d1d25ace36cf1d98d7842a1cf3824b4f426a96c355e9bed8d29402282d17d50769f70d1aa932"; 938 938 } 939 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/ta/firefox-62.0b10.tar.bz2"; 939 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/ta/firefox-62.0b14.tar.bz2"; 940 940 locale = "ta"; 941 941 arch = "linux-i686"; 942 - sha512 = "d9ef63ac6c8159cad45147ab8bafcc73577a111715741968050c71ff33d12c98d94189a93b461b75e63c0679fc9374c9f997aac5fe3398c49d3e5318f3fce0d1"; 942 + sha512 = "a6397e99080d870922c962656652a342de755086ebedf4515b107d8be024a8cd5509ecd96737f0200e338871c73689fa3ba056bb004155d89153e2ecc9a34c63"; 943 943 } 944 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/te/firefox-62.0b10.tar.bz2"; 944 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/te/firefox-62.0b14.tar.bz2"; 945 945 locale = "te"; 946 946 arch = "linux-i686"; 947 - sha512 = "5edd9666d324f3cbb915761aed91e3be5d297ce5ca1e77c793f1bf8d8535083eaa36537fe9ace89ab1084879cbf351f77780d998349092a4333a34a0231938fa"; 947 + sha512 = "a70340e6cdab9c77b367797ea34e37fd39af4d1a630c054c7db0bd325740b71cdeca434bc305803dbf0fcc145391b17b192a7ea967cc3361db6bdfd961e97f38"; 948 948 } 949 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/th/firefox-62.0b10.tar.bz2"; 949 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/th/firefox-62.0b14.tar.bz2"; 950 950 locale = "th"; 951 951 arch = "linux-i686"; 952 - sha512 = "96d6be5f3dc67e0839e1afff60e3bc756fbbaa04adf2e3dbc743f94dd039dd3d6fbb0a14dbfbd012138580fb32de7f485ce0b1782d43e24551bf4620c246d18f"; 952 + sha512 = "3f84e76b6ad095573f54178e3408cb0204e079ab28fc595375597575c3180b8da9f737b50ae5863b3f00d977d25e400167a32c06afb1b56ddae2a40a5bd33ce0"; 953 953 } 954 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/tr/firefox-62.0b10.tar.bz2"; 954 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/tr/firefox-62.0b14.tar.bz2"; 955 955 locale = "tr"; 956 956 arch = "linux-i686"; 957 - sha512 = "7e57727f21316822b4f181cf722cca3e7df7499a4b4cda2fb0e0df2eb7f00a236ff9e2120f64a244ef9c329ec2bbf739a067f0828f4a3f2086497ab9a72918da"; 957 + sha512 = "2b4846de6d4b32fd37ea105375df20577ec13ccc5922905d0252c0421a793d4b36464a0f494cd6d5b984340836a99192b7e708492e88f87d8cee718daee5a0de"; 958 958 } 959 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/uk/firefox-62.0b10.tar.bz2"; 959 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/uk/firefox-62.0b14.tar.bz2"; 960 960 locale = "uk"; 961 961 arch = "linux-i686"; 962 - sha512 = "aafdc6666a206f6945e73221efc0273f95495f447c1f7375ddba78a04656ef9e84f683fc8ac392f6de711628f34712e0e0d31032792dd8a45f71f8188d5e65c8"; 962 + sha512 = "6c746513a01ebd30eec163cf77d3c4ae9f3736dec010f4db530c32d7f1b4e2072850e0cd69344d597c03fcd8d6f96547324c7d55d5ef3d4e087392700dae114c"; 963 963 } 964 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/ur/firefox-62.0b10.tar.bz2"; 964 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/ur/firefox-62.0b14.tar.bz2"; 965 965 locale = "ur"; 966 966 arch = "linux-i686"; 967 - sha512 = "a47e557b6846abf57bcad9dc67ddadc91f2a37043a8727dee96e8425de8f76625749522b7764144028bf080508a6821b1a6ae0b9691fe92855cd7d34c2fa5165"; 967 + sha512 = "3de6ce39114d511f7642c2585e9aec0f450c1e3b17117e6a8808532a3df10b8067f259f8e575f1b48a7c9122ba998aa48cc3b17f9c2fb028f12c4811a133dcc8"; 968 968 } 969 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/uz/firefox-62.0b10.tar.bz2"; 969 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/uz/firefox-62.0b14.tar.bz2"; 970 970 locale = "uz"; 971 971 arch = "linux-i686"; 972 - sha512 = "a44789be262632f69d12c4f18680c2a4601cb3cc5ee1cce704906860a3fb1f2306b40d59ed551a90d81ff094665f525e37c557b70b61e4a49c32a23a4ba99fd7"; 972 + sha512 = "638d8e49710d415a4f56c911783d486e30559030e6e82c0d3e3234f27cdef806bb78a3fcefde43b2c7905ab9f5eee5ba4b84f4ecb84564e12e55aa276e05d0b0"; 973 973 } 974 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/vi/firefox-62.0b10.tar.bz2"; 974 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/vi/firefox-62.0b14.tar.bz2"; 975 975 locale = "vi"; 976 976 arch = "linux-i686"; 977 - sha512 = "5be10d54271606b06174bd2035f4be33282c1ab69eceea095c49d537cf67e3e6e918ed604132a131dd783e5787efcac9a0dc3eb5f301c1d2dd1cd0bf52d63a48"; 977 + sha512 = "372e8f4966d827657eb8240ff3ce0dd73cc53c20ca7215f936029c06f45a9f8e7c7d7a24982844caae66ee669ea350b3aa9c5de3340857a493f2397e5b12a769"; 978 978 } 979 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/xh/firefox-62.0b10.tar.bz2"; 979 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/xh/firefox-62.0b14.tar.bz2"; 980 980 locale = "xh"; 981 981 arch = "linux-i686"; 982 - sha512 = "4e9753d9d416ceaa9b7fb6d3d191739f1e9e095dcb4c20227a851aa0b6a7ac21297d3ccac1a52abf0c5226b9b20702b9ba2d363137fd6c9f44ffbdc497f9d441"; 982 + sha512 = "379d5ac367ea324f724980bc84ce553356d78af622c889bd553574df8683f4b64e0e021d4143be0839965a174962d2116cd3f35bcfd13074df19573afc050a7e"; 983 983 } 984 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/zh-CN/firefox-62.0b10.tar.bz2"; 984 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/zh-CN/firefox-62.0b14.tar.bz2"; 985 985 locale = "zh-CN"; 986 986 arch = "linux-i686"; 987 - sha512 = "b87f0e013ea58a15b001fcfe5b41b7adf33d51490fe96fdb85570dc3be6dc66f514def826cb8469a7517b532bd241e79276774f7e47676cc632f36150259da79"; 987 + sha512 = "68cbefb528ed507218752a9aeaaf929e1d55e2dce55240386634a870d245de8706f441c3ee82c39a535bf2a17b6be92e635b26394d624c4c254fc7570480bc0a"; 988 988 } 989 - { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b10/linux-i686/zh-TW/firefox-62.0b10.tar.bz2"; 989 + { url = "http://archive.mozilla.org/pub/firefox/releases/62.0b14/linux-i686/zh-TW/firefox-62.0b14.tar.bz2"; 990 990 locale = "zh-TW"; 991 991 arch = "linux-i686"; 992 - sha512 = "4a7a366523294ecddacdab2aa863f06eda275fa31cf5ddfbbebd5cb740399507185134c3950a24183da89f87a6cfffe54e2c934625b384084a424ce150e864a5"; 992 + sha512 = "d79c5431e4db23b52ead1bf6911b91c6672edefda033a20bca2ccbecff2e72afc2355934f5963dcb4f756a71c877dac09913b926c37415845b40bed63ce349a9"; 993 993 } 994 994 ]; 995 995 }
+397 -397
pkgs/applications/networking/browsers/firefox-bin/devedition_sources.nix
··· 1 1 { 2 - version = "62.0b10"; 2 + version = "62.0b14"; 3 3 sources = [ 4 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/ach/firefox-62.0b10.tar.bz2"; 4 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/ach/firefox-62.0b14.tar.bz2"; 5 5 locale = "ach"; 6 6 arch = "linux-x86_64"; 7 - sha512 = "d28ef8bf25a809eac59456ae1952cf2f0b3f2e9d3b610b91d7bb263e206e24bb5c553be46c450d7c71ce16f0b65d559796e430b9f0700cee953c891088ea13b2"; 7 + sha512 = "da8d3b8da37ddc7e4be14cc620e0961d81da6ee5dc30726c042bfd788df26897e68331a581ed01920f39a77fa913f4844b5a7660e02799bc067aec9f0a25d63c"; 8 8 } 9 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/af/firefox-62.0b10.tar.bz2"; 9 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/af/firefox-62.0b14.tar.bz2"; 10 10 locale = "af"; 11 11 arch = "linux-x86_64"; 12 - sha512 = "3967402c97db66c917ba06f6d2514ed6cdf072a34eef3b6a47c3751f8ebd04c80dfe6586abc7c5430a573fe0375761b448f5d60a062dbf6a3d2f84700924f2ea"; 12 + sha512 = "51b63bbddaac26f1f68298f874e063da760312eda8c2b42b8a090809aa75ea13dead3c6893f860603651ddf585baaf598a25f24bdd539902f046d02c3d821841"; 13 13 } 14 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/an/firefox-62.0b10.tar.bz2"; 14 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/an/firefox-62.0b14.tar.bz2"; 15 15 locale = "an"; 16 16 arch = "linux-x86_64"; 17 - sha512 = "1aa485381ada3fab9df3a925bd143742976303576df3d30a7ef095b12628f9d0eb8bd21152dbfbb6d73d2f4e4c1364c3481e9b96a3a003b802c618aecd1237b5"; 17 + sha512 = "de8e4c5fcb5502ae3cd3eb4e44b668c9702c7cd51e8bc5c41a5384f984c7745ca3612f4b528cb0d01eaca2f52e82ff76b3e6bae764f61a2e96603f6a1f66ad74"; 18 18 } 19 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/ar/firefox-62.0b10.tar.bz2"; 19 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/ar/firefox-62.0b14.tar.bz2"; 20 20 locale = "ar"; 21 21 arch = "linux-x86_64"; 22 - sha512 = "0c7ae9d3de5710ea08ee80610a3e7b0ed5cd89d1bddf3c64b478a10f2250286b20ea062c663ec5ef92a5e8c3af9432929f47f1b2c760d1222aa3eacfee3f3979"; 22 + sha512 = "7fdc45292c3f5e37c13cb350be5c49d13eca7955bd0157578c7fe67f566d72ba9be70191e3f5e967301923a6d12115f3e369f00564518b2c114757d0bf9e2cf1"; 23 23 } 24 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/as/firefox-62.0b10.tar.bz2"; 24 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/as/firefox-62.0b14.tar.bz2"; 25 25 locale = "as"; 26 26 arch = "linux-x86_64"; 27 - sha512 = "662f4a0a78329e80c9eb466308839036091f31b1f258b5eb5df31f3dcc7b6d0d6986d506392dec30f822c69fc207e5669e77ffdf26c7b7156b42a73e155b65ee"; 27 + sha512 = "3bf37c6b179a263a0db7e18a194d86aa66b735e313bfe9d21e3d71d2d16d5d490c13c2feb6cbf64bf3fc7a38a42a6ee0dfde30595eae24b8434273d8b0de93aa"; 28 28 } 29 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/ast/firefox-62.0b10.tar.bz2"; 29 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/ast/firefox-62.0b14.tar.bz2"; 30 30 locale = "ast"; 31 31 arch = "linux-x86_64"; 32 - sha512 = "ca0b3d4722075dc6ebef171bc36e1b4e9206bce04c8fdb1d038b0abbc120671a2ef4d6023bea627f0c99fbffcd999b70634de90e1b51c518d8642892545c29cc"; 32 + sha512 = "570f407929ce9a7562cc83b96d7ce430aae47b06c2ba76a6abab468f1399078131b30b1492dc0f156e3a578f4bbbe82bfd1ead03d61f7242e9928394865a6c32"; 33 33 } 34 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/az/firefox-62.0b10.tar.bz2"; 34 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/az/firefox-62.0b14.tar.bz2"; 35 35 locale = "az"; 36 36 arch = "linux-x86_64"; 37 - sha512 = "b981b720cb776a8e83953f8e4dac7794c981681d8e6da010f0afcb7e90df5884058349cc6a12d4f5a360cf7f9067b87afbe862842f0ad016697999bc3d94ad82"; 37 + sha512 = "90e03b55ce56605f336e33dcfd0946dfc9e3070c11beb73ab2cf56c4876f40d189b9ff7b221765d362f4021931523b6820264367f3bcc23d7f3ed741e8c3d371"; 38 38 } 39 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/be/firefox-62.0b10.tar.bz2"; 39 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/be/firefox-62.0b14.tar.bz2"; 40 40 locale = "be"; 41 41 arch = "linux-x86_64"; 42 - sha512 = "a7bd1f001152e4ea8a887e685b126bfb4dedc7a30270128d535eedc04dbd489a3d6117ccdd8893f5753b7d5227d4731cbdfa1f7bc292712ea2634006aa55d6ab"; 42 + sha512 = "3e129ac99041031a182c7f6c0111d4ecb44e870cdf718bad3073bd9fcc8da99e4ee3cccc5ed97bf468b398b5b5a554618291417fd2fde87cdf3e48925b519a4c"; 43 43 } 44 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/bg/firefox-62.0b10.tar.bz2"; 44 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/bg/firefox-62.0b14.tar.bz2"; 45 45 locale = "bg"; 46 46 arch = "linux-x86_64"; 47 - sha512 = "a6b5f4d3aa3db7be416f4bb604a749c8118fcdf5d3bf01cc57dab87c874f0f52412658c9f509c2d09100f4cdf7f5b446d11fb45bfea2d25d4e65276f3257ddfd"; 47 + sha512 = "aac418365d09bcffb1ec5f501091d07e6f14d26c44af8abe9d630f9985b46ecedc67084da83b57bcaa42c5af3053a9d05344d341f911f8bb8f4046e364469333"; 48 48 } 49 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/bn-BD/firefox-62.0b10.tar.bz2"; 49 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/bn-BD/firefox-62.0b14.tar.bz2"; 50 50 locale = "bn-BD"; 51 51 arch = "linux-x86_64"; 52 - sha512 = "3cf7f43ca3fcb538cc28c9ab7d3d6441f15123a1f3275cc81b1dec1007012a970d18ee52e8b8781568247c5a854aa78bc316656dcaef48edb11c7b6c99874bc9"; 52 + sha512 = "c06f2b032a60ad2e26d8847349e0019a87cfc74b7525914d3d1181b2a229ed2426c228729aa2e08acf54a8c99d07b647e0ea0d341f297d6b6dd94a4013f2ee60"; 53 53 } 54 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/bn-IN/firefox-62.0b10.tar.bz2"; 54 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/bn-IN/firefox-62.0b14.tar.bz2"; 55 55 locale = "bn-IN"; 56 56 arch = "linux-x86_64"; 57 - sha512 = "0ebaa8740a3c215ee275c7ea7669ec4bebbfa4a20f46ef4bbb81b51362fecd72fa1d16bf7e58822024b59934f478699114ca744657aa523d90bff6655b776e5e"; 57 + sha512 = "fad4be3a483ebcaf2555b4753aed76dd03c45172a206b30d7c37a9d5943dc6b21739131c8eaff0e56bca7f8896f261d4a6e0902af51693e75213d9145562efa5"; 58 58 } 59 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/br/firefox-62.0b10.tar.bz2"; 59 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/br/firefox-62.0b14.tar.bz2"; 60 60 locale = "br"; 61 61 arch = "linux-x86_64"; 62 - sha512 = "288ca47c3f89b6fec2312bd254e2d9aa4469a79a767b2fdd9787a7dcf9af589d17a8353a1260a773df63069628b69e916c2bf76c85076f123667f932b16d04c3"; 62 + sha512 = "65eae886ec548ccae53b6d6fc45181acb6c76b0376481c5103a3bd902b83a7175f5bdf88cff75bc06ceb48483dd33bcc9f09db0f92af66d9de09305469f4a000"; 63 63 } 64 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/bs/firefox-62.0b10.tar.bz2"; 64 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/bs/firefox-62.0b14.tar.bz2"; 65 65 locale = "bs"; 66 66 arch = "linux-x86_64"; 67 - sha512 = "1099fa298f51a7f65dc585f0c777c37f49df0b6c1a18265d0f7460fcbe52e791a9ee8af2af37901f3d73c6acfe919a37966deb4ef5399f59f2ae66563a02ca44"; 67 + sha512 = "f23cb86e13c3fd8d6a972d590dc8f40847a9f4d486afb6a574f5377989f66b50745fd31be9a661e61c9a4baa408f04a64897c7e6aee756bcdef7983def8a552d"; 68 68 } 69 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/ca/firefox-62.0b10.tar.bz2"; 69 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/ca/firefox-62.0b14.tar.bz2"; 70 70 locale = "ca"; 71 71 arch = "linux-x86_64"; 72 - sha512 = "775203aed14e61aed84e15ace9336799873804eee4907ff924a994fe8ba99d4e49960dc1543c4cd70c4fb805ec1474a657c14791ac8322a7d59c824887aa2f7e"; 72 + sha512 = "c353548ac0c7ce880fd51399a0534b17f6cb2273970560af0fb124425ae166aa75abad71d2080e92495164f34692c42be06456c74c93a43136df34c74fe0c7b0"; 73 73 } 74 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/cak/firefox-62.0b10.tar.bz2"; 74 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/cak/firefox-62.0b14.tar.bz2"; 75 75 locale = "cak"; 76 76 arch = "linux-x86_64"; 77 - sha512 = "addc8fc89acffe5ed37f011b2ef9b3f1fcb815e2e0f2b3f944ab460688c99e54c92ddc35719e56770be3426d9380e33c2bff834fd3b327427efd20d8fa3f83ab"; 77 + sha512 = "f252e303170253f14d5e7294537b8c593e04ed7e9051b1fccd7446dc08e56a40a6c346203f1299e2520b2c4ed5a5346b31f9dfc3b20fa7dba5b63330302ebcaa"; 78 78 } 79 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/cs/firefox-62.0b10.tar.bz2"; 79 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/cs/firefox-62.0b14.tar.bz2"; 80 80 locale = "cs"; 81 81 arch = "linux-x86_64"; 82 - sha512 = "33c038620535a829a445de6f1b9f9d09e4d6078df3c9172c9ce59a27ad99f7416976fead6ad5071f11fd4fb626b36dd269f072c293dac7fae59fa65c1514e95e"; 82 + sha512 = "cde134afdbd319201662f2c9ad6a3afc81f6c83db48a97b0914dcb4b09ac4ae46484e225aa058824cffdf8d1f0690b015fbb08d5d6782d5f068b8c5affa3db00"; 83 83 } 84 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/cy/firefox-62.0b10.tar.bz2"; 84 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/cy/firefox-62.0b14.tar.bz2"; 85 85 locale = "cy"; 86 86 arch = "linux-x86_64"; 87 - sha512 = "5355af8ce344786f3a81a7cb53a316cca445eda21b7d905cd4602436ce3d3635a0e99f1311c47014e95875deb50c7bfefbfe3efeceb3faf57e7276f95aeab723"; 87 + sha512 = "999d2b629c8f39c738531ea1996b3877e89ed46102690d24876f42b9ef539c00e1920706038a74d9bb2b0d973f3b2903f28f694422b4827d03206db9b2f806a4"; 88 88 } 89 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/da/firefox-62.0b10.tar.bz2"; 89 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/da/firefox-62.0b14.tar.bz2"; 90 90 locale = "da"; 91 91 arch = "linux-x86_64"; 92 - sha512 = "11a3139618cd5e822b467df2c1e4bb79caed748bdeb724dc29e6a4d94f6fa75d8434b219a3ce5128f70ba841cd30a8c21516840d7743be9f9015dc919251184d"; 92 + sha512 = "7620db3c22a37ea1291f4ed1ef700f771d2e3bcccaca8b0906c2cc694ea122c5eeb7fc4d85c570e94fb3929839f7058507d3f7c9dda36e64f3f3eb3e3b8445a3"; 93 93 } 94 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/de/firefox-62.0b10.tar.bz2"; 94 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/de/firefox-62.0b14.tar.bz2"; 95 95 locale = "de"; 96 96 arch = "linux-x86_64"; 97 - sha512 = "d4a45db4c07f5fc353056c18493ea5a09957899bdd98a3f00878e82b981385a460aff29b2c66b4b807228a729bd4d810a7fd38cfb6866ac2e19f8187f0763588"; 97 + sha512 = "c20e28674126764d28248d3caf94046a0d9335cbfd85c8412bcbee4c94f6157f87251519b6ac784ea96e3abdce217f5710c8c854a446d19e6ebb07fa357a1e8b"; 98 98 } 99 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/dsb/firefox-62.0b10.tar.bz2"; 99 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/dsb/firefox-62.0b14.tar.bz2"; 100 100 locale = "dsb"; 101 101 arch = "linux-x86_64"; 102 - sha512 = "80e5f2192f0b4c7449bec3bacb15cea21f4afc2360c5860c76be29e65ad7894915f03b1bcd719d228ed7f66cdbeb3d20867dc9cbd4acdbb16b7afaddd56c3887"; 102 + sha512 = "02ca65f58a425a354aa27b851af9d166c1a5efd988290e87ad328446756f5d9a70ca92a0275552e40774c90d898bdc9dc90a865f0ef02ac3945ad75742f22d1e"; 103 103 } 104 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/el/firefox-62.0b10.tar.bz2"; 104 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/el/firefox-62.0b14.tar.bz2"; 105 105 locale = "el"; 106 106 arch = "linux-x86_64"; 107 - sha512 = "3dc1eee7205d63c7788b1152f0632621e8f85c1f23e154119ac7106ebcb75c807f6f9c534519e1822f7c5c3fa58067f9c5814d60fd1c045169248e189cfca323"; 107 + sha512 = "642333ee1ac53626d944c3667d873f47fdb04bc63b821ed8c4f4d0e6496c85ccb0cdeec5d5b83cc6639db9ca123b5d9bed46299432d70e273179a29f92b2e231"; 108 108 } 109 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/en-CA/firefox-62.0b10.tar.bz2"; 109 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/en-CA/firefox-62.0b14.tar.bz2"; 110 110 locale = "en-CA"; 111 111 arch = "linux-x86_64"; 112 - sha512 = "fe145a9519f1eae0099903e609bce27d59461e3760a9fa11ad9cb5b8b32e2377d014d7f56d275305669313cab3c9085901068ed30355dbaa5a988c9af1e28ee8"; 112 + sha512 = "b2cb5bc6b3c5be7b70a6453aba64e631918c03a9b5110d5ed63df36b42c479318dda42275bd115b305c2f783bf555a64f40cec6189640eec38a0774aecc23509"; 113 113 } 114 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/en-GB/firefox-62.0b10.tar.bz2"; 114 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/en-GB/firefox-62.0b14.tar.bz2"; 115 115 locale = "en-GB"; 116 116 arch = "linux-x86_64"; 117 - sha512 = "7afe1eab3f574a7c25230bfb09ea1d341b6cccfaebb36a659a5f7a1b3c5d6fe2ebf4bb6220cd8aa12159a67ec2cd42d0425c1aae4c5b672b542cd08a473efb79"; 117 + sha512 = "fe89e1b4d98edf5eded72822cd4c911476cfa4340e5fe22c72f990432662d1aa9c3c678407b0a8e98c0143375523b4679e3b8d69391380fac4f59111b639e997"; 118 118 } 119 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/en-US/firefox-62.0b10.tar.bz2"; 119 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/en-US/firefox-62.0b14.tar.bz2"; 120 120 locale = "en-US"; 121 121 arch = "linux-x86_64"; 122 - sha512 = "e0840f4e92de51086ec442a048adc62d5222a83e9ac6e5b3833b76c71a8559c764c7d44aa7e1aed24a1f58a3f2e71cdfe866b329b855d3c9f51d69537ab6e9f5"; 122 + sha512 = "37a73820c04df7c280e53a8da4abfa3a1a069f865ea39c0b17f8ec8872f94f5afd377c1bc6c8d04ea847d8d802cb397c3f430588aecdaff92c805099bdb953a7"; 123 123 } 124 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/en-ZA/firefox-62.0b10.tar.bz2"; 124 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/en-ZA/firefox-62.0b14.tar.bz2"; 125 125 locale = "en-ZA"; 126 126 arch = "linux-x86_64"; 127 - sha512 = "7784aa459edc544cfbdc61f8e66832e29aba98883b818e5c304210618a5047dd775109a95d902a9c336c6a1011e0d414f02c43dd7e250d83b096758f2fe42a4b"; 127 + sha512 = "fbe75e53c330a231bd8c48db991a231fc8cb89f7a27ff02abb81bc68d45cf966e38b6613327a1492d7d4c1924e392a23bcd2f0a9cd4dc5d34d4667b048df5c90"; 128 128 } 129 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/eo/firefox-62.0b10.tar.bz2"; 129 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/eo/firefox-62.0b14.tar.bz2"; 130 130 locale = "eo"; 131 131 arch = "linux-x86_64"; 132 - sha512 = "cac7d6e5ff4c5a8c82220c59c835b2852bcc7d6ca257f1c0956fd89c5cfe57da36bdeec124beb413102490c1c1ee135e5d218c14d4b3b5465bfaf75dbb112a78"; 132 + sha512 = "f8cbfa7f2b0bc6d3e3fba67664bf1624ac413ea167bf34d7107a5b5488d56c17abc3b2aa593d623b174855770bd3b35639672e5196ad623a03eb524855901ed9"; 133 133 } 134 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/es-AR/firefox-62.0b10.tar.bz2"; 134 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/es-AR/firefox-62.0b14.tar.bz2"; 135 135 locale = "es-AR"; 136 136 arch = "linux-x86_64"; 137 - sha512 = "84393d5cf5cfe1c0acb7a37048b169b526a5147adfb66f48a288689af06e33f1b8fdee9c01358b1b71105ef5a10f953b5a364b8b4b576969a068a2badb13c6c8"; 137 + sha512 = "b9548f8b2f7a63505dd7b96384d2d53f49320de3811032e963eff6dde57416b82fdb677e10117012068cf449f0e62de48fb44fa1e58d46ab6845d2bd21b542fd"; 138 138 } 139 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/es-CL/firefox-62.0b10.tar.bz2"; 139 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/es-CL/firefox-62.0b14.tar.bz2"; 140 140 locale = "es-CL"; 141 141 arch = "linux-x86_64"; 142 - sha512 = "eec6a5281fa9ab6fe4066fc7a33ed8a0358dddd627a4e93da4341fc00a56c3a059137d51e56393f3414d9f882dd0a6e6806e43d6bafadcf9e6c19ee11b7153c2"; 142 + sha512 = "990140a1967af715bb056ded14b78cfd42275f79feb3de0a480ce1dc452183a25c4fb54e47f20a91112a33654efd063e4689c0561b126a52458bda73f5e109f6"; 143 143 } 144 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/es-ES/firefox-62.0b10.tar.bz2"; 144 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/es-ES/firefox-62.0b14.tar.bz2"; 145 145 locale = "es-ES"; 146 146 arch = "linux-x86_64"; 147 - sha512 = "6b3cd6cc4fee12f2b57853a8f7bcc76f8efd38a78ca93aea98b8e455517aae0ff5223edb54c4170cd80264d3c64d4ea5c9d3a06fd4636a9471123587884ccc34"; 147 + sha512 = "b8a62e81f023f9f3dbf8059948e214588412f4871624b37c125f1d4cb8e6c6be53d500035036d3ea3b2140d8210a17458dc5bee3c0a66415a2f126f5469e315e"; 148 148 } 149 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/es-MX/firefox-62.0b10.tar.bz2"; 149 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/es-MX/firefox-62.0b14.tar.bz2"; 150 150 locale = "es-MX"; 151 151 arch = "linux-x86_64"; 152 - sha512 = "762f2c4418e00e53aaa91cc1a58d2dbd457c98a2f0b04f460907fa568adf2872ae894127544fa52c16d532e4ae0ab07b8074f42943fe0c1b95f2e7fef9548404"; 152 + sha512 = "8d9ab08db6289e3309adf60e7c81dfe4a300d94811b947215b1ba92e41fa5e0ce812060cc1c64084b5c03f91d27900115e553c7a0a0f4706f817a8410de38a1d"; 153 153 } 154 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/et/firefox-62.0b10.tar.bz2"; 154 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/et/firefox-62.0b14.tar.bz2"; 155 155 locale = "et"; 156 156 arch = "linux-x86_64"; 157 - sha512 = "1ab50a62a06f3a27f22d38d846dd1f7ce4c606a0be5ec0f842ba5567c550ff4154e7aecc7e308118acea9fe8dfbe3b26b99286ade100247647b67e13595f1dde"; 157 + sha512 = "062d218673949ecf5dc02f5ba719f42ed79a76421f469c0a2fb4c60a0c25c4ad6b77ed0c8492a2f844a7805371ce56c0d9528fc3d08f7e8ab643ba0a71f84835"; 158 158 } 159 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/eu/firefox-62.0b10.tar.bz2"; 159 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/eu/firefox-62.0b14.tar.bz2"; 160 160 locale = "eu"; 161 161 arch = "linux-x86_64"; 162 - sha512 = "834179706c0d4db08810e5d2a5d5b5353c61b359e10e472d488e099417714486ce9388ca2bf15ba20690ded330a876802ca9b7b702e1976ea872ee9b96b9d21b"; 162 + sha512 = "cb0b2cae511f082c17c75608057a44721a3a8c5e76b8beb027c0d36fcf8778527d9b9389a07073e7e4261e4baac65712da4dabb3260719ffab95088751c494f6"; 163 163 } 164 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/fa/firefox-62.0b10.tar.bz2"; 164 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/fa/firefox-62.0b14.tar.bz2"; 165 165 locale = "fa"; 166 166 arch = "linux-x86_64"; 167 - sha512 = "a8376236472b3296f858f28c3120d68fdc9505c594bcc11e6514d9255c965777228406f4a0d40314b32bf826416bc6bc86ca72034b10c4bd28599b09abe72c3e"; 167 + sha512 = "0cc019ec53d3ce079d8ef420a90478085f73eb13fad4fbf946d9d04067c647ffa2f065262c4765dde16e9e91b97ebd2c75d81d5d8e7844399365cbc3c775d74f"; 168 168 } 169 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/ff/firefox-62.0b10.tar.bz2"; 169 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/ff/firefox-62.0b14.tar.bz2"; 170 170 locale = "ff"; 171 171 arch = "linux-x86_64"; 172 - sha512 = "fef251c6e44bab8d943b532a2e1e45a8e72df7c4bd260adbd2551748f10c1b7fc008695469e43c4c97ff8ba887cc9f65a5ad87f0f538a980988d6f6c3bbb4ed1"; 172 + sha512 = "9711355f8d94bc180164afd8749a4ade9ab8bdd1897ec877e67a5ec5aec762ae70f75dff7852d0081f629396fbb01e4c5a6f4cdaa98834277f9eb43257328987"; 173 173 } 174 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/fi/firefox-62.0b10.tar.bz2"; 174 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/fi/firefox-62.0b14.tar.bz2"; 175 175 locale = "fi"; 176 176 arch = "linux-x86_64"; 177 - sha512 = "7a2bf7d18eeac44cd2660eeba46e0d5b5c85ed6fd150504e6bbc2e072ffcc7272672854bd37992c9ba33c91dac6cf0b7a2bb32065066c7c4e1c4373c91de624e"; 177 + sha512 = "5d5da424e85b257bc29c91789d125c980343007c568fbb761f0d6f1ebbce30d6bc4a5efd9bd7ecae29d02bc9b32b47c40074287c4fc11c769360617f2c8dd278"; 178 178 } 179 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/fr/firefox-62.0b10.tar.bz2"; 179 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/fr/firefox-62.0b14.tar.bz2"; 180 180 locale = "fr"; 181 181 arch = "linux-x86_64"; 182 - sha512 = "987bc98b79d3259b1c36b8231d47c07e7c5619d5d9a3a794f28c213fd9a8540b9642f7745496dc4a4ffbb31c7e6615cd6f721c571a874eb3204840e2530aea17"; 182 + sha512 = "082fc3fa8a2afebc3cfb14890aa541bfef2b50d23704b0212f08e60db63e809b6282de149be485615f7833f72ccb55ebf7cb53c3ce6d1d37d8dbb8d74002ecb9"; 183 183 } 184 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/fy-NL/firefox-62.0b10.tar.bz2"; 184 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/fy-NL/firefox-62.0b14.tar.bz2"; 185 185 locale = "fy-NL"; 186 186 arch = "linux-x86_64"; 187 - sha512 = "99b909e532de6761f94adf995e9de48026af4300fb79f34d2744c677d8df6d363b2627ea64db6fb00765fb283157a0ee7cc2ed6939e35a0db0d72ef98b5beba2"; 187 + sha512 = "368fd4347865d4bd809f4882feb87831e92eb5c9f50837ba00b78b378941891867c1bb1bcf41620ba98d0724cf0a849d4ef3a82db86f3a86eb715c58f025520d"; 188 188 } 189 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/ga-IE/firefox-62.0b10.tar.bz2"; 189 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/ga-IE/firefox-62.0b14.tar.bz2"; 190 190 locale = "ga-IE"; 191 191 arch = "linux-x86_64"; 192 - sha512 = "61e6601a3bc092af06e4ca128f1fa0083cb0a7d62f1bced70a44bb3d526ee2cf440ea6663e072801c2358904e3232e310c9ae1d6610aa1021597ed26e9412a0f"; 192 + sha512 = "35642a6b785cc145c8bd8cfdaac7e445b4aaf82a125e34314d9e4672d3d0fa5999a135efa87e419c99e3469c119ffcc63724b8b75557337ebd02b568f9d9ff1f"; 193 193 } 194 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/gd/firefox-62.0b10.tar.bz2"; 194 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/gd/firefox-62.0b14.tar.bz2"; 195 195 locale = "gd"; 196 196 arch = "linux-x86_64"; 197 - sha512 = "a57ff205a6050fa7dcfa3784a84e7c09f2b5e790d24dbf84001b5ed9b122a8904c02268a88389f7a8adc611c8b6ffb86fe07db99ff2993336668fcbb9fa366e4"; 197 + sha512 = "e39f5eaf47fdc5c7623356a440136b52c8c89079710cdd2fffe2aba2fe2c4404df706b688d0c53c3beeadbf3c5ebf50ba2cf4df497b283616e38a78c5118e31c"; 198 198 } 199 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/gl/firefox-62.0b10.tar.bz2"; 199 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/gl/firefox-62.0b14.tar.bz2"; 200 200 locale = "gl"; 201 201 arch = "linux-x86_64"; 202 - sha512 = "664687f45af86c5c50990775c0c98299eae4a2388e2034390af32419effaf21437f36e1b776795e3747f582d4f9f2979c1901c189ff1500123626cedac2ca5fd"; 202 + sha512 = "ce2e74b38f272f1d5f5a8bbd90b6cdf2452e62f558c5cece5e63f178c61db78d94972490a75ba9f4e727e231fb3a5680b892825f0d56c94a1cf865ddb5e7b6d4"; 203 203 } 204 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/gn/firefox-62.0b10.tar.bz2"; 204 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/gn/firefox-62.0b14.tar.bz2"; 205 205 locale = "gn"; 206 206 arch = "linux-x86_64"; 207 - sha512 = "c7bf83d4167fda83cd6c8e3e8ee67d2ac83bac1cd66176f8fb4e5d6ca089fe74a01163cbd32907d54ffd31e9871392dfa864b49608a81753eebecc24dd15ee53"; 207 + sha512 = "eed29d1667d1e75b1ff231a77c198943d0eed8db17deaae773af3a7494f11316d4120f8727a53dc0918b72057fbbd15f44ef545696ef9341bac7c3fdbf3769de"; 208 208 } 209 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/gu-IN/firefox-62.0b10.tar.bz2"; 209 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/gu-IN/firefox-62.0b14.tar.bz2"; 210 210 locale = "gu-IN"; 211 211 arch = "linux-x86_64"; 212 - sha512 = "635ff733faaf7f73e2cae9c82ca6c8a3544ee50963ea8a6d66a27c362ef0f9f33a7898b1aa71f4cc35dbea36c4822deaaddc62bf4dbfb3a196c82810cfc1971e"; 212 + sha512 = "c8985d4daa507f89ec78784ad39646a546de4b7f95b951b041273e7dc267bc4e2a5d72e0a2506ac7630d69b85f625a6e49be6c6f0491216e75823f399f2ab83f"; 213 213 } 214 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/he/firefox-62.0b10.tar.bz2"; 214 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/he/firefox-62.0b14.tar.bz2"; 215 215 locale = "he"; 216 216 arch = "linux-x86_64"; 217 - sha512 = "365f23c6bd1d925b86a7defcb1f79582cdb55b45cba3e57854bb20d0f9d81e64d80a8ba59f17c133b2786a8e6db64ea5ed66a7827ee5d7af2831274649108617"; 217 + sha512 = "5198fb6201b4fb90c9d614caaa0e51b818ad56e30808084b06677d3cb6013808a156cc30833422a50023c150eb277c7935205e0da7417ea0a2502b938ba136de"; 218 218 } 219 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/hi-IN/firefox-62.0b10.tar.bz2"; 219 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/hi-IN/firefox-62.0b14.tar.bz2"; 220 220 locale = "hi-IN"; 221 221 arch = "linux-x86_64"; 222 - sha512 = "5b461a1914318e4c677ffb90ce1f1e7ebec0ee71844d752b79bdb9c96112566f434593d6109ad5ac718563993a3858e0f23ae8261aadc46914cc00d2021cdc60"; 222 + sha512 = "507a696ec6d5013e8347435fec39437409e76ac54cf749d9413c39269314ca4cc051dd34bc25ca3167cab888b21fe89326806739274a8d95d76fe8c56ddc6cd3"; 223 223 } 224 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/hr/firefox-62.0b10.tar.bz2"; 224 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/hr/firefox-62.0b14.tar.bz2"; 225 225 locale = "hr"; 226 226 arch = "linux-x86_64"; 227 - sha512 = "163112f8f46bf50824cea46f9321c01f9f56e961cca8c75d9be1bf62cb1d02f70fc8ac0099b1c5ba4c78c921b99014f56a863ae86628bc45d550820b5cd610a6"; 227 + sha512 = "82bfc9366fc9bd9101f31f038aad2cf102126149dfc42a0132c784c95f7e426c5782bfa3bff84c8bb38d2f687448a068300ec9e2a9e732c41cdf29ad8e928f57"; 228 228 } 229 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/hsb/firefox-62.0b10.tar.bz2"; 229 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/hsb/firefox-62.0b14.tar.bz2"; 230 230 locale = "hsb"; 231 231 arch = "linux-x86_64"; 232 - sha512 = "69824e25b1fc093107440b9bc01afb3f6e2928743c13c600175a899476594ee07b086b1a2d0c18cd045229494b191b77777291bf05d8718c6e555cb7c3c68e88"; 232 + sha512 = "63c26511d8c8b6dc2586227cb5788804958a8d3a877cbc707e68158d7a0e41f6b23a4f9c4e0e51e02f450c433ecce626b576d751b9c8075964abada7cbbcca1d"; 233 233 } 234 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/hu/firefox-62.0b10.tar.bz2"; 234 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/hu/firefox-62.0b14.tar.bz2"; 235 235 locale = "hu"; 236 236 arch = "linux-x86_64"; 237 - sha512 = "7998a6468aa4d2a023cf824b10ea49340a4bdaacc103cb028b5f86e2e0ee7c75caabd3e219ea31396f4618bd7e053b5138315e5813da88d7730cf50b95f22d25"; 237 + sha512 = "bd0f9a8616fbf72d193ec2e54126d7384d76e799f687ab3959602ca298b6af8cc326818863e35e60c1b30103e6de358846c93e98cfe272754efe0a9454c4c513"; 238 238 } 239 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/hy-AM/firefox-62.0b10.tar.bz2"; 239 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/hy-AM/firefox-62.0b14.tar.bz2"; 240 240 locale = "hy-AM"; 241 241 arch = "linux-x86_64"; 242 - sha512 = "4598605812207c90494836756ec3f40658518b4f137ea1f3428f77cd8b108bbf5b3c9a904268613cd4b5deb5d1841989b02fcfd4046b592b8b686e9b7853a6fa"; 242 + sha512 = "9a577d16446d1ebef30d7d00007a82483a5c93b08d634f9b7bb4921990b79ac3ae5179d70f8c94e11fd707848d1b4abfeb153f53af0590b94277e361383c5fc8"; 243 243 } 244 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/ia/firefox-62.0b10.tar.bz2"; 244 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/ia/firefox-62.0b14.tar.bz2"; 245 245 locale = "ia"; 246 246 arch = "linux-x86_64"; 247 - sha512 = "be2c99b0b6300137a207be27e4874fb2996b76872fc2a7e0825925629c132a6e2941994279bf5d5e6f9ffabf9121385675cf2d1fb1e4e080e60774f020098e02"; 247 + sha512 = "8bae5d44789789b14eabb7c2abbd268af581956681c9a48336eb9a1e7060ba34e8568a46d7cdbd489b8fe70e97637dcbb4663fc617537c1e11f5905c3190be8f"; 248 248 } 249 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/id/firefox-62.0b10.tar.bz2"; 249 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/id/firefox-62.0b14.tar.bz2"; 250 250 locale = "id"; 251 251 arch = "linux-x86_64"; 252 - sha512 = "8fbc33a87be306df37db45604e0c5bb4c489436b38d61a33d75cfa1d69779c3edcfb32809daa4515a0631b795d9fe6896aaa31bbd32b9c406a556487f27e8051"; 252 + sha512 = "5fa0054a2a04a2a32b068867041a465345659e62b2d187f6f11c38c0289a0d2d5b10ffb0af19dc9eae9370c6eedd43216d03f45bec5688c76dc64c7130ca2ff9"; 253 253 } 254 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/is/firefox-62.0b10.tar.bz2"; 254 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/is/firefox-62.0b14.tar.bz2"; 255 255 locale = "is"; 256 256 arch = "linux-x86_64"; 257 - sha512 = "3b574f1c3667da198e9de638fbf07f595c1dd8eab7deced07f0163d18468c443e4e630e9bb3f53c906ec50805363ef8bd2c349fc58cf1e7b9a498341b7ab66ea"; 257 + sha512 = "56b9367b3647af4674e6d0e4cae13ed4248fd956f1de61eae575f85a38ef3d34d23275248f34ac756a66bcaa364abfe32771be2652197a9aa845e751e87b4f5f"; 258 258 } 259 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/it/firefox-62.0b10.tar.bz2"; 259 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/it/firefox-62.0b14.tar.bz2"; 260 260 locale = "it"; 261 261 arch = "linux-x86_64"; 262 - sha512 = "3dce20ed69a821bc734ee0c187ce76fce142caccc08f66f6031f99c8dac2da8b0f8f23a65eba3110fd3b596ac78adf2dd47974838757db7c73b27efd728ec556"; 262 + sha512 = "9d07ac498d1d8d7b86a0ac3501aabab822dcbc31bd702c37355f47b91483038a46db9c45aee876012f4b0367643788b05ab378372b693ca0d2b41154beadddcb"; 263 263 } 264 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/ja/firefox-62.0b10.tar.bz2"; 264 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/ja/firefox-62.0b14.tar.bz2"; 265 265 locale = "ja"; 266 266 arch = "linux-x86_64"; 267 - sha512 = "0174ea6eca444ccd1c2de27585aae9e4ae7edeb569bcc3d3ce6b54c49b7a8b58eb235403f197c99855561b070b2b6afc4a66665bef36fc69537fe903a4a5940a"; 267 + sha512 = "e95d2d62bbd73a7f4b12445ad38764e02bc16a8c71158b0ebb4e88a64026008bb7a125ef156d3fe858629bdc9c1c3b7ad89ef3f46dfd2abe6201bbdbdffcf7fb"; 268 268 } 269 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/ka/firefox-62.0b10.tar.bz2"; 269 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/ka/firefox-62.0b14.tar.bz2"; 270 270 locale = "ka"; 271 271 arch = "linux-x86_64"; 272 - sha512 = "170155e9c64f6261ba6f6d292ef1f503c8966b49630215e14c6c61a9033bdcfd6b595ecf638212811628631e36e3cc4664867a817c78aa2e0f38e63077be831c"; 272 + sha512 = "f87742885270371ea6e0a40257e44b667b77a9d6c189674556decae76ffb873be86cabd671c1f0d3a8e3f14383ebe4727d299b386b1947563b499f17ae0b0875"; 273 273 } 274 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/kab/firefox-62.0b10.tar.bz2"; 274 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/kab/firefox-62.0b14.tar.bz2"; 275 275 locale = "kab"; 276 276 arch = "linux-x86_64"; 277 - sha512 = "9f69e7e09848e423cd4103e40e5aad4458d33e6d978c4b00fc867544908c436a6aeeb9d41948262dbd97ce3cf018a71cb6d5a3d32742e2c3bafcb52107784de0"; 277 + sha512 = "41734cda51fe6da8d6d6d8d8552e34fde8106750556e78dbeafee004280df058389f07e6c7419b019e2a2847d8bb30f2fed7117c567c8caa2eccddc84d2ef7cc"; 278 278 } 279 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/kk/firefox-62.0b10.tar.bz2"; 279 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/kk/firefox-62.0b14.tar.bz2"; 280 280 locale = "kk"; 281 281 arch = "linux-x86_64"; 282 - sha512 = "3f22f9712e42fa10da04baab8960a03fd7f479ec6acae0cd37bad04b52fb919aeaca30e8a5a074c9763e1b48d69310f27ad8bb7d8168a836919b0313f9b864d4"; 282 + sha512 = "69f58a96a9b3e09a36e02049233384cabb7773e2b186659b28736ff44fb4b7e3f4c0242a1a5e1fb3304f2dd2d8ccb2d651be974a7cea5a713ef387a240bad1c6"; 283 283 } 284 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/km/firefox-62.0b10.tar.bz2"; 284 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/km/firefox-62.0b14.tar.bz2"; 285 285 locale = "km"; 286 286 arch = "linux-x86_64"; 287 - sha512 = "f6d1b176db8d1022f2189b24cbca3c47a70dbf44542db310549364da9f442513d77530842118e187b664ab3335bee20171d66551d30927c8ac02d45d4d361601"; 287 + sha512 = "c885ccf11b06a08dc5d908c30271c434dfd3cf9009fed046f10bbadae4601ef7ff55393ccdef08d9bc763b89ffd88ac8412301c4ba4a81c557fd07b04625ac39"; 288 288 } 289 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/kn/firefox-62.0b10.tar.bz2"; 289 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/kn/firefox-62.0b14.tar.bz2"; 290 290 locale = "kn"; 291 291 arch = "linux-x86_64"; 292 - sha512 = "bf648187df56f207b720ae53c484e81046b8899e6047ac482ff5a8b937096a0991834a2416a1fd0560236079c25393f9d2171da15bdb7e6cc6bc320ea44e5b85"; 292 + sha512 = "5299e96b7d99af641de426353c3022c52f3636a1f0b0608daab830bf0a87d7399723276a625d85fb4f2cfed85e5d81645638977cd266f8988f03506b4c752a55"; 293 293 } 294 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/ko/firefox-62.0b10.tar.bz2"; 294 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/ko/firefox-62.0b14.tar.bz2"; 295 295 locale = "ko"; 296 296 arch = "linux-x86_64"; 297 - sha512 = "9de51912d21abdb2e857a545d647c4f83da421796bccd6a8ac6095ca33a9dde1b0cff62f548f734fc7510590f8a29c0e2146ca2ab0745f8095a2f787cf1f6072"; 297 + sha512 = "2386b75959d6dccc5c50b64a62dc5d3967ac5434e496c22ca4d1453b50efa3a4f0689f3b63efd56fd59dd507c424f7634a8639fcc7f415a03cc62aeadacc3799"; 298 298 } 299 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/lij/firefox-62.0b10.tar.bz2"; 299 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/lij/firefox-62.0b14.tar.bz2"; 300 300 locale = "lij"; 301 301 arch = "linux-x86_64"; 302 - sha512 = "40c47f9bfd0a005f740d425e0a31e7676b2a6001bd0e27948e237bb1f0b087d808c1db836fa06ccf002b4c24e21ca7aa30dfa6dd07cf9a9995c746f73ace7a2d"; 302 + sha512 = "014351018dcfef6a499bf4f672543419f83c662edab8b7023bb4f5fd140c1ba2b3402fc8f574c85f0f8fd2642067b9a8dc4aac69b78c6fa4b8b0b278adcae470"; 303 303 } 304 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/lt/firefox-62.0b10.tar.bz2"; 304 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/lt/firefox-62.0b14.tar.bz2"; 305 305 locale = "lt"; 306 306 arch = "linux-x86_64"; 307 - sha512 = "9f5c7410480474c3053aec0c88fb0afe5528382b0e6d8a1a53d9e7a6ff3a0dadfbc3a52212f86686910da7d8c000254dbb30f320a93096bf973ca974e44d7882"; 307 + sha512 = "4dfff68a0b2a055f397c25e788ba094a0245f7b536504b90be85f3b3f8a2161ff39789f1089f52f332f3985c46114d6118deec60e92340fc8a97c8a0108789ec"; 308 308 } 309 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/lv/firefox-62.0b10.tar.bz2"; 309 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/lv/firefox-62.0b14.tar.bz2"; 310 310 locale = "lv"; 311 311 arch = "linux-x86_64"; 312 - sha512 = "daef12bdd690a9dba14f71c5dfbb074eea26e842b526c2d48638872522a1da06d3c486aafd0713caadf1a41be6bca2609bb38282010b1de8db65002e5a427cdd"; 312 + sha512 = "8f4a87a42b1cc990904c1ded3df40cdcdcac2d6472795cb4aa19640655708f3a7490ff830b38d6912894060848e8cb2ed5d51f6b48a9c4091862d9eb1af0a161"; 313 313 } 314 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/mai/firefox-62.0b10.tar.bz2"; 314 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/mai/firefox-62.0b14.tar.bz2"; 315 315 locale = "mai"; 316 316 arch = "linux-x86_64"; 317 - sha512 = "d0be68142b8b640b829899da1103a82c7d05dd310f8aef55f38dfb83b8c080b366c4431a16fb912c2a890ac2b76f1c3812ab91444d8f00ca70b0a07b3bfff778"; 317 + sha512 = "c7d44c729482f4eb59504fa42598d3e80e7b9791c07a15f342d9cb7e6fee5202f4a871daa27d70a2ca6397f696112e270779ce6572f61fb927d9a7e303391cd7"; 318 318 } 319 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/mk/firefox-62.0b10.tar.bz2"; 319 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/mk/firefox-62.0b14.tar.bz2"; 320 320 locale = "mk"; 321 321 arch = "linux-x86_64"; 322 - sha512 = "2c813aa382885e2d06aea8e4bf10f0d2582c733285a82216a490ab8ec26fba17a15b9b0280ad33f7cc18e33226b77b6c7d255a3dc00a2fc4cb0764fb7075f6e6"; 322 + sha512 = "b9c238419f45a67b5855412e60a63871fdc8d8477661c8f2f4b4b44c6036dd11d3023ed50b0cb4e558a3f063d081fb1ca56632f076f85d26fd49bf6169c4183b"; 323 323 } 324 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/ml/firefox-62.0b10.tar.bz2"; 324 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/ml/firefox-62.0b14.tar.bz2"; 325 325 locale = "ml"; 326 326 arch = "linux-x86_64"; 327 - sha512 = "1a325a8034278cae28602a77b64b2ca33d4dffeeb7408fff2e9097cbf04e11ee98c07ebb71bb963e039d4cd7436ee6dd2bc2134505cef573231509371ad5ff39"; 327 + sha512 = "403bfec378306f312bdf9ccb5312699550cb584edb8fa9fa2ff83b1cb491e559c145d13e023fd61265f3b4f25d93a4e94315006dfe2bd1e83bd8aa7f84ac3afa"; 328 328 } 329 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/mr/firefox-62.0b10.tar.bz2"; 329 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/mr/firefox-62.0b14.tar.bz2"; 330 330 locale = "mr"; 331 331 arch = "linux-x86_64"; 332 - sha512 = "a8eca8c9b7dc76f055d701bd564d17efcdcc82c1b2274231e7d0652ddcd97655dd2c8cca1fc49cc280a7e537d7e463e33483c093ddbbfeed2adf250f77d60d05"; 332 + sha512 = "c6ddf4530eb185ae8e99513c62ff6d2b15144786eeaf22e8f1a9bd8535c73eeddd3469a774976149322ee9d91afc7b29c7331948d27aba0a7232f768bdba5391"; 333 333 } 334 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/ms/firefox-62.0b10.tar.bz2"; 334 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/ms/firefox-62.0b14.tar.bz2"; 335 335 locale = "ms"; 336 336 arch = "linux-x86_64"; 337 - sha512 = "071c9078dd840aa6baa97f6ce0e9f6706998d03ce544d7813755ce217d31a3aa436361156e19cf343824b6ab56275b0d0c15f49390af7f061238102dedc2b782"; 337 + sha512 = "33fb10c9ec5f2460fc004708165a2be73864b1986c000783c3a6902157a122993ae12a0f6daed1efe1bf72eaa0faf45196338cecb8f44a18393579a29672dbeb"; 338 338 } 339 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/my/firefox-62.0b10.tar.bz2"; 339 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/my/firefox-62.0b14.tar.bz2"; 340 340 locale = "my"; 341 341 arch = "linux-x86_64"; 342 - sha512 = "c27c3f020b510cb05b9dcbd94209a759fa15107d6c81d0cd7f9b1935f01c61a760a1f6f0b29b133268598c20e85fbe27baf3e74f137619671300036500fc6da9"; 342 + sha512 = "6fd8ddb3e82dff825e0d02e17f09800ec5cde223a0e75c52205db607b9748d33087d7f127711b78e43182bbebf183c2fa7c91a98ed2ce293b953e81f585d0656"; 343 343 } 344 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/nb-NO/firefox-62.0b10.tar.bz2"; 344 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/nb-NO/firefox-62.0b14.tar.bz2"; 345 345 locale = "nb-NO"; 346 346 arch = "linux-x86_64"; 347 - sha512 = "a136c0ae01187558c46848ea5b6d30442493189d8b380bcd60a12f17134d9259424cd5479e164efaaa840b43b355f4da2912d65c15500dbaa70195c5ee25674e"; 347 + sha512 = "7c88eae52534a7b68fe73b8876f0272642b11e9fb6de496fffb10bc4eb3810d944a2e566cb4a2c26dffec82320c0d3f0b2f32b933f1c44f00be1e2c3d98546d4"; 348 348 } 349 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/ne-NP/firefox-62.0b10.tar.bz2"; 349 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/ne-NP/firefox-62.0b14.tar.bz2"; 350 350 locale = "ne-NP"; 351 351 arch = "linux-x86_64"; 352 - sha512 = "7e22f58ebe1b99c50fb84f216f1506dcd20d4a8d094b8b6787f26f9b44f86496eb68f8463694890a3cad3f491468bf1f2db6aa347446999ec67e598c4d608677"; 352 + sha512 = "26e2434a0eae8d5595d671c5a853ea6c34651b62e55e026f1ddcc9fec687289052a03a13578194a34f845bce044d17e43ee0ccfd687b1172940aeaae893f0e25"; 353 353 } 354 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/nl/firefox-62.0b10.tar.bz2"; 354 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/nl/firefox-62.0b14.tar.bz2"; 355 355 locale = "nl"; 356 356 arch = "linux-x86_64"; 357 - sha512 = "18e138ffdea50531c30ca75377c3e241954e7ab7be5b4d81c4042a0c523215b570391c3ac75e7e860ee0b26016bdc201a76bc198526d7bd2c96637d633aa48dd"; 357 + sha512 = "7ebc12d4c28c9fcef08fed90ee3d922f3e874a246960c84303f5f950f16d3d6b7474fcac78dfa9b9215ddd8672324dd205bc463b80820a3fc9af2a1070fa19c3"; 358 358 } 359 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/nn-NO/firefox-62.0b10.tar.bz2"; 359 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/nn-NO/firefox-62.0b14.tar.bz2"; 360 360 locale = "nn-NO"; 361 361 arch = "linux-x86_64"; 362 - sha512 = "7da8c3c9c1f13cf635b1d70836b507983fcde4a50a54fb6781e3f50f4cfda2d38b10bfacf27e74ff501643c9eb93722ba88ef08c938bddb85848b2821727c378"; 362 + sha512 = "b6004c56b6fb6923d3afbb9a632f586c7b89c1d0dcecf4b3938cba26943b2051462a39c11ce54fc46e60586c6fc1816c8e5cd277e0ec090f6507d1ddb081a32d"; 363 363 } 364 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/oc/firefox-62.0b10.tar.bz2"; 364 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/oc/firefox-62.0b14.tar.bz2"; 365 365 locale = "oc"; 366 366 arch = "linux-x86_64"; 367 - sha512 = "47e0b6176db5b5c97051316ddb1d67694534aa3d4d2a84ae68581e23667ac1fd4774c7010fe63961ca8780c7f799ddfd2bd959a83ef57894737336cf6f7bde98"; 367 + sha512 = "952e25abd8a5fe477e274e590c359e80feb14f9ce2cc113620d460b7ad74f0e1831b83805dd0f94d51255db0b9c747eeb3e62545af2c28a738c527d3e4b89559"; 368 368 } 369 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/or/firefox-62.0b10.tar.bz2"; 369 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/or/firefox-62.0b14.tar.bz2"; 370 370 locale = "or"; 371 371 arch = "linux-x86_64"; 372 - sha512 = "501990e922eebcd108ceddd5779d55852e5d6dae0fa4525a86066096d44ac84e6e09886a8a099968c541a5916a14e59a4c683b9faddf28606606c10af38120ab"; 372 + sha512 = "83d269396c2e3e90e88cc4995ecd92cdba3fcfdb1391ef3e2a191386cb9cf259dbab347665ccc93a2b84dd7662d13e7dd8886896903a7bc1bf4ea2f31c2db401"; 373 373 } 374 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/pa-IN/firefox-62.0b10.tar.bz2"; 374 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/pa-IN/firefox-62.0b14.tar.bz2"; 375 375 locale = "pa-IN"; 376 376 arch = "linux-x86_64"; 377 - sha512 = "7b22e657f393d34e9612c680b7ae3aadb85e03575e2839fbd75c06aa4577fc57ad4891ff080205ec2da4d303fedac7fdb67774f06c91442a629e5ef863edc58b"; 377 + sha512 = "69939d5950fe1830f8d6ab9aae52134b3656d608a38062356fa3d582af7dcd2fe40b7a88a6c5f612ec6b588ad3f683f933844f567ca26868866d1c02d4708acc"; 378 378 } 379 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/pl/firefox-62.0b10.tar.bz2"; 379 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/pl/firefox-62.0b14.tar.bz2"; 380 380 locale = "pl"; 381 381 arch = "linux-x86_64"; 382 - sha512 = "e77995d8427a651f405389662503a6bdb6ee93247f96ee925e214d35859da88f5fa355a9a247d5d8a2536f3b0d962a2ef103f03e8b97423548136c4de2095136"; 382 + sha512 = "12b7f93e83c04f998e46e50eeb1372427e410aaa5f2c376ab84714fce98c674fb20076ba8f4f8252ca98498fafac47f09f835e9a1ff5abf7dab9dce644b00afd"; 383 383 } 384 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/pt-BR/firefox-62.0b10.tar.bz2"; 384 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/pt-BR/firefox-62.0b14.tar.bz2"; 385 385 locale = "pt-BR"; 386 386 arch = "linux-x86_64"; 387 - sha512 = "bf562ee1a588b6bb97282aaab54d6f60d130e1012db226a805f4cf54a8b2bc6d0dbf37610faadacfffbdff0d50714e83413a5433336e0425fc70c39802b92535"; 387 + sha512 = "5e40c7e0ac52ce0e7248cae5aa36f899e1bb21ef3387917d4153f68238bfda66983a11b354e815f6d7688ca2128275f47b044374f8630f93d86a176a72d7a71b"; 388 388 } 389 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/pt-PT/firefox-62.0b10.tar.bz2"; 389 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/pt-PT/firefox-62.0b14.tar.bz2"; 390 390 locale = "pt-PT"; 391 391 arch = "linux-x86_64"; 392 - sha512 = "8beb3d7c5e5466da9a182e75bacf0ff0d512cb7b6d2b109721e595e289b292e11a71471abe8591f5f5167bd8113e7e64d5f4ff1c0827f56de82f01d67e9068f6"; 392 + sha512 = "c49cd72d9f4c7c6d5981e1a38be8f0fd744d88e12e95c7cd3882dc4c83d111b13e906ec4e5d8b3f8bf28c57e7ddd3356d82aeceac73aaa51e2950dc250c8cae4"; 393 393 } 394 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/rm/firefox-62.0b10.tar.bz2"; 394 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/rm/firefox-62.0b14.tar.bz2"; 395 395 locale = "rm"; 396 396 arch = "linux-x86_64"; 397 - sha512 = "197fdf8238d86fb62c9f5f70a2683c978c3eabb4aeb0a2f06db6c62f2e062158b28062bcca8d5ec871e3bda6a8ea05039a2281734108a898358bb9239a69b34e"; 397 + sha512 = "55d62df14754bacb0e5831c2c0a7facd9946a7ea26c226f98bd7d17c63957386ace27e2e0fb12405d680828a30892544bf1798de4e25eb9c4527dd238b388e91"; 398 398 } 399 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/ro/firefox-62.0b10.tar.bz2"; 399 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/ro/firefox-62.0b14.tar.bz2"; 400 400 locale = "ro"; 401 401 arch = "linux-x86_64"; 402 - sha512 = "bbc0b871e9ad5a9af2474062bda1eea5b45a5cd715167eb33cca748c27d9c5ad2c3a56df2e4091f691a24b6863447dd0c8e8d2dc808dd7f90a811edc164cf7e6"; 402 + sha512 = "a3b38179529d21d057240cf96e818ff2c8a785d4ea37eb21906573a00610c14c9d685e26fb37323bf16dd9266c1fe7818cc5e2e9571dcd9b3cb60255fcce5131"; 403 403 } 404 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/ru/firefox-62.0b10.tar.bz2"; 404 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/ru/firefox-62.0b14.tar.bz2"; 405 405 locale = "ru"; 406 406 arch = "linux-x86_64"; 407 - sha512 = "fe7c5fcc41d40a0c890dc6b59411a757c3bb849c81c1c4113c053028c42612a5575277400f1e1d93dbf2be748b1ebd0c5063deae8edc76bb5f7234e3d46fe949"; 407 + sha512 = "793c6c3df14c71ecd680213a3e0b8044642d0da624a3a0f32d1956607db6eeceaf52235eb65975cb58c779b6d14c18a235f5c690e6d5b0565102184087f434e2"; 408 408 } 409 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/si/firefox-62.0b10.tar.bz2"; 409 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/si/firefox-62.0b14.tar.bz2"; 410 410 locale = "si"; 411 411 arch = "linux-x86_64"; 412 - sha512 = "7d34ae2573d004f8f140607e9991c55fff98babaf6aec74fac6f3bd3f34aa2ca41c82354c5a935429dc3b7e95f2c1472b3715b2d5931b30ebc4fb01e37f18f27"; 412 + sha512 = "cb9ef1a38a62d63ea4a1b6356eeefd4d6e6df925b4b38d831d57fb61491508590a3e8e8e459d263b781576baf75a88dc89edd47de15999b3b84691f1fbfe9426"; 413 413 } 414 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/sk/firefox-62.0b10.tar.bz2"; 414 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/sk/firefox-62.0b14.tar.bz2"; 415 415 locale = "sk"; 416 416 arch = "linux-x86_64"; 417 - sha512 = "8e281cee72a2066af4c1237f919fa523893957180f0bf21ffb5e0fc10531487a08e179181e62fae7d273269c0ed936a6e2f206bbf4e06cda80507de76d4282fc"; 417 + sha512 = "db99f5639bd99c24f3720a698ca6f0da869bb34b6bea8904a9536dec502e8225865b17698da1d951bcdc1c8779f821b2c1559ca8a7bd532f16a0935443837daf"; 418 418 } 419 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/sl/firefox-62.0b10.tar.bz2"; 419 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/sl/firefox-62.0b14.tar.bz2"; 420 420 locale = "sl"; 421 421 arch = "linux-x86_64"; 422 - sha512 = "dbb1bdf377df73f72b5e329fab94f3c10a8108e5f60b74c025c6373c593a37b7946e20b035111fa25b69e424d8a9adb6ceaf07d0d5a0163c89a5c3016ba09ac0"; 422 + sha512 = "f8bd344058ad4d9cf41b982ed5c373f75b09d43377917141e2fdd99eefe5817bacfb87792df320407834309ac9f194efa7331b1fe821ba8ad80274be8e506ad6"; 423 423 } 424 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/son/firefox-62.0b10.tar.bz2"; 424 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/son/firefox-62.0b14.tar.bz2"; 425 425 locale = "son"; 426 426 arch = "linux-x86_64"; 427 - sha512 = "de0a93df81ef58eb79dc61f2ac641f7ef06c0dbb1ab273b0b244312731bb4ce80907bbcfb10f59fa1cdb94f712499ac708baa224beab7a11ad8313bee8291e44"; 427 + sha512 = "600d4b3c6254d3e6dae17874b933e0a4baa392c8e348db6501fd16b0508bdcbf3febb0bfc319cfb74851ad1b22e4b603928f2d70e6654081f56aec27af39a04d"; 428 428 } 429 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/sq/firefox-62.0b10.tar.bz2"; 429 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/sq/firefox-62.0b14.tar.bz2"; 430 430 locale = "sq"; 431 431 arch = "linux-x86_64"; 432 - sha512 = "274ad7363cc5c03672c3a0e4f50382ff1229018f316143e50871bd0a0ffee5d02996981dc376520f558f42cd0696ac334654f10e579cd1139cfdde12014bf3c5"; 432 + sha512 = "044c1e6746f85346e22ff257673518b1e906325098936e003335d2d96f306db6e0ad65604727ab0bbfd5f116bca75f4b25af9e17ba2f453025a7c67c61073ad2"; 433 433 } 434 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/sr/firefox-62.0b10.tar.bz2"; 434 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/sr/firefox-62.0b14.tar.bz2"; 435 435 locale = "sr"; 436 436 arch = "linux-x86_64"; 437 - sha512 = "b6febe826fabd153bdb5d66c0cc6f65eadd69d5b0137467861c24f5d9b87a1abe24f1a1d58ad2480d4cb151cf61731faff5d8cf47ef69c02ffd8b8d57b3bfdc0"; 437 + sha512 = "aa3bd51ab2a4f7bf16c69914333aa7378a6dcae97953001eab273abc6102dc190a540c429afc70dacce51e56ea9b92e5e6424b5dd86713dbd18f947da6fb0f94"; 438 438 } 439 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/sv-SE/firefox-62.0b10.tar.bz2"; 439 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/sv-SE/firefox-62.0b14.tar.bz2"; 440 440 locale = "sv-SE"; 441 441 arch = "linux-x86_64"; 442 - sha512 = "69fb65b14ce8a63452172e970aaceb41a7559061efdd7379154962198541366dc55190dbae81080d74eb5b2236cc74c77c15bae3cedb12a0437558e10b730ca1"; 442 + sha512 = "f52ef271335fbef42611b516ec8190e1b7cef184f4b02d919fb72b43ff965db40dcb67b229e8cc6586fe6fcc313bd87e340e46b75750ca89a5dad71b442d950b"; 443 443 } 444 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/ta/firefox-62.0b10.tar.bz2"; 444 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/ta/firefox-62.0b14.tar.bz2"; 445 445 locale = "ta"; 446 446 arch = "linux-x86_64"; 447 - sha512 = "25d5725cab0dad6d67f08fc9ab694045672d5ac497823fec237dd68d1e626639558222e6293177df503c19e9c297ed22273dda60283e80985c2ef9ccffd16360"; 447 + sha512 = "b8d9528dcd92feabd4484fdfcca811ca281b521fa2b29307960cd8eb86ec17096518f39b63296b60245aed791251b72902cf2117400ccd5ba46c506924b511fb"; 448 448 } 449 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/te/firefox-62.0b10.tar.bz2"; 449 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/te/firefox-62.0b14.tar.bz2"; 450 450 locale = "te"; 451 451 arch = "linux-x86_64"; 452 - sha512 = "ba95efcda55fd6c6cf5358bbb24bd61d4f57f2103a38eae3289be00bcd36ba0d451cd9e4bdf00dfadb86abf9376ec202d53be017ae47c97e29ae05b11e4b9c22"; 452 + sha512 = "48be6e6775c2347ecf86bda9a674a7300354e1f594604b2617223deeadf8bf7840e73f1c7862b13fbaa4603639545a816ffe81a8084de83fabe48a8d09c64fb6"; 453 453 } 454 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/th/firefox-62.0b10.tar.bz2"; 454 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/th/firefox-62.0b14.tar.bz2"; 455 455 locale = "th"; 456 456 arch = "linux-x86_64"; 457 - sha512 = "ef08a290c0b6555c5f80ac162f1233588e579cb32cc09c9a6f86c90c62814a67db37bc496a52f6490ea6de2addf6601fb225ad98ffc99180d16f1587735e1e0d"; 457 + sha512 = "414df3da738c8f24eef5650543662e8bac8681d1dbd983c272334022528f9330af529cffa2c1fcf90954c4a2d359028cc5940f99f3d6ab394a9746ba8e26e47b"; 458 458 } 459 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/tr/firefox-62.0b10.tar.bz2"; 459 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/tr/firefox-62.0b14.tar.bz2"; 460 460 locale = "tr"; 461 461 arch = "linux-x86_64"; 462 - sha512 = "337f8a7fa73712c03e4bd78a86f0acd5e8fe50c31cfab0549db1037606a538ee0881c8036d1709e554dab14643f89ecf83fcf86fbac5ba2bbb60c73c06a66508"; 462 + sha512 = "08c48f21150eb9048834a7534d910f2217a966f363f902901f59c9381a9ef88672c78043d8311df0e51cdc9928773b09b4e613178eaff71645b15a2678f04305"; 463 463 } 464 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/uk/firefox-62.0b10.tar.bz2"; 464 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/uk/firefox-62.0b14.tar.bz2"; 465 465 locale = "uk"; 466 466 arch = "linux-x86_64"; 467 - sha512 = "d45c5eb136282a0be9a96081804d25f717dfd210c57f64aa84ce5a445fbac3b75e271ff41d865f7e3ca3356e6586062259e097b1e4dcfe7e6e7566ec592b905f"; 467 + sha512 = "d1faca8b0f1566631a12861386a80780b0002d25d599631477786a5e46fe8bd3c1a59ce1730d01add17d8443aeaf8c6773f919e6862f1dbf381f3f91f747c06a"; 468 468 } 469 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/ur/firefox-62.0b10.tar.bz2"; 469 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/ur/firefox-62.0b14.tar.bz2"; 470 470 locale = "ur"; 471 471 arch = "linux-x86_64"; 472 - sha512 = "092def4266f697f4bd01765aa14d2a260fefa8cb7083771133d48238bd4e5ab13a901fe2d175f6c38814d74ee5236452fa7e49fb7d203501bddc210c3af7ba0c"; 472 + sha512 = "e41e1d662cc5b2eebd6d218cdbafb5c363f86d9e94d89cc1b1f9ff57df8695eff46e8090d977252fae53e13d0ed3bf537ea45cec2f4b354521b3dd9a4d82354d"; 473 473 } 474 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/uz/firefox-62.0b10.tar.bz2"; 474 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/uz/firefox-62.0b14.tar.bz2"; 475 475 locale = "uz"; 476 476 arch = "linux-x86_64"; 477 - sha512 = "9b459458fb94ca2946fa5e461c3d2770b00a45cc11a17cbc7d01799871e4478e94fb55605eea23d42cfd0494defb929f0ef6faf043f53e227cf140fd1ba0e0b8"; 477 + sha512 = "c272b1c1fda633f9b7b550cb824f5fa717e09f1348b9ccb43e35e5f413a689a080b582aadf3008df2bdd93477061db7c6a0796c9fda7aa8acdd3bc62007dba06"; 478 478 } 479 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/vi/firefox-62.0b10.tar.bz2"; 479 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/vi/firefox-62.0b14.tar.bz2"; 480 480 locale = "vi"; 481 481 arch = "linux-x86_64"; 482 - sha512 = "75a257e23b377f096d4d2f6900e1a0ee3aeb3952b513fbc39d5ef771337c8639f4f076c98af6b7719b396684a876f5407c13a6b9c17af4ede7c7919dcc3541db"; 482 + sha512 = "e728afd5bb26c37b3dd10022bc1a80a8ce9c466e1e81e70cd7649eeda610cdc3d32029ee6f9ea17fad5c74e47d0254858baac5af0237b9118de6545d11b9abe7"; 483 483 } 484 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/xh/firefox-62.0b10.tar.bz2"; 484 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/xh/firefox-62.0b14.tar.bz2"; 485 485 locale = "xh"; 486 486 arch = "linux-x86_64"; 487 - sha512 = "a3898ff8293e78ae37eb017c16d7b2b01a2b5108ed674303505cdcd088d13ccd5891435bc128624317a7cf4b917072cef9b56cdec75111f2d7027bf42fdcff26"; 487 + sha512 = "3b80b2e33e285e5ac465340ed41da7409afcec0fba8c00d107d8d6e4817f354d0616a788986967b221a889c90956a037b93c7b7cdc09bd20cb77ff6bfd997d13"; 488 488 } 489 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/zh-CN/firefox-62.0b10.tar.bz2"; 489 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/zh-CN/firefox-62.0b14.tar.bz2"; 490 490 locale = "zh-CN"; 491 491 arch = "linux-x86_64"; 492 - sha512 = "28afc83cc294430582ba0e7400c72f0596c15a9a8691a8c068dc2473fc86528beabbdef64ed56098e510474675e61d7b6d4616422a9f67f6e7e930c11e550247"; 492 + sha512 = "c1ce4868c80836235b6f162480bd3ed153ac0db27f67a054818e615972f8d0d375f3d275a9aa69a54afcfb5f7ef4b50a07698e68fffde0a883ff859ef2b60e25"; 493 493 } 494 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-x86_64/zh-TW/firefox-62.0b10.tar.bz2"; 494 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-x86_64/zh-TW/firefox-62.0b14.tar.bz2"; 495 495 locale = "zh-TW"; 496 496 arch = "linux-x86_64"; 497 - sha512 = "3e25f27060906e4ca1c06627019a45ffa09384fcc3b3f20450138e9984cf9d29d410e67083566b58b3e99a15b8b7a05bd0716cb797bd3958f1b0105066030590"; 497 + sha512 = "b3d816ad232b1152eedea352a181b5d9b6fb9c8c0cf082c4cf165d363fcebb2f01a7e1a9d32b2f21db6569fcb3ec3e5bbeb2b3bac92587abded293d37ce6d8df"; 498 498 } 499 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/ach/firefox-62.0b10.tar.bz2"; 499 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/ach/firefox-62.0b14.tar.bz2"; 500 500 locale = "ach"; 501 501 arch = "linux-i686"; 502 - sha512 = "45db81de89d4b8f6eed856b6ea00531de1879a1c61425482e7eef65fb5eeb5614e894078d8216d98f097e1c3356c6ae62d12e4c9c4a17d2ae0cd026c0a13898f"; 502 + sha512 = "ecdf15574faf3eba0fb5f92f28bbf297e186988b2230fdabb049f0d39fb4c09397899c7b50b15c469ed52a1295a01f5d1f8186cd5a9bbf22558652cdbce26b0b"; 503 503 } 504 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/af/firefox-62.0b10.tar.bz2"; 504 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/af/firefox-62.0b14.tar.bz2"; 505 505 locale = "af"; 506 506 arch = "linux-i686"; 507 - sha512 = "4aa9ecbc712372716a98460523e463e6144f88cc5ebca2d2e102ba1c78107dc9b287471a383ea7c55b4b0d1930501ec69202656346c7279e5c15ea32e3ebb5a3"; 507 + sha512 = "86afacf172ff70b451acccc5982edd6bca67bad1bc64c7addc10f6c6c89789f9b3cec479760b9a43a6115dee733247880a2c6efb22e45e8a5f38a216d7c46e4f"; 508 508 } 509 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/an/firefox-62.0b10.tar.bz2"; 509 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/an/firefox-62.0b14.tar.bz2"; 510 510 locale = "an"; 511 511 arch = "linux-i686"; 512 - sha512 = "e7c69de522160378f75ae339b62dfee2c8391247cd83b5b2b43974e7659dba131c954812e4ea55608f01f4f024ea8f8bb37d2bce95ddefb8e50ed73b006acc0f"; 512 + sha512 = "493059f80ea4f45e7b413085eacf0da31d179d5fe7d185d5c1bf947ef01d1136c2e1267326435666aff8f296cae9408d7f609b659393732554bd307f641c2bc4"; 513 513 } 514 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/ar/firefox-62.0b10.tar.bz2"; 514 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/ar/firefox-62.0b14.tar.bz2"; 515 515 locale = "ar"; 516 516 arch = "linux-i686"; 517 - sha512 = "184c608d477ec5f2fbfc547aac6e5863208d92b1de0cc362efd68b5ae0d414141a904c9ed7efa53f0946d934a737d3ad897b6b92fe469c2aaa58aa7252ad2c5f"; 517 + sha512 = "951dfcb5125cb0e1e7d2f50048d0b6eb6f393a1e47d43226913d1911e493c7cb2144e9ed653b93b0b864a604e8363fd3bfa9271c12f23c698498f67d00396b4f"; 518 518 } 519 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/as/firefox-62.0b10.tar.bz2"; 519 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/as/firefox-62.0b14.tar.bz2"; 520 520 locale = "as"; 521 521 arch = "linux-i686"; 522 - sha512 = "d11215275176c80bc479bad71e88a42d2fab7af2b92803a1c34fb80216e0d07fbb0af8350918d6192640a42186725d42b64f95e85c8822e5e0f9b208653c3647"; 522 + sha512 = "72398d0294ef6befe52b9e6418df5a988145251add594fe4a9c1d34a0e3457beaf5c867880e7c1231a8c7a6141b19e36aa21220936e29180e99a40a15f807e30"; 523 523 } 524 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/ast/firefox-62.0b10.tar.bz2"; 524 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/ast/firefox-62.0b14.tar.bz2"; 525 525 locale = "ast"; 526 526 arch = "linux-i686"; 527 - sha512 = "bc3b79d190a239827f52ee2bc2d5baa58da3e6827878529571e1758bace4bb2d87b59319b1760c3df2921ae620dd9566e47429f63a9c213dfe0bb2f277703335"; 527 + sha512 = "fb6fe42bf7f22e57d6651eae2749b88f1bdda958fa30487842a5d0e0b98594cef7ab8d45380abf9c874f4948ca16e496cf3c5f7f99fce885f8f0f530064dce6a"; 528 528 } 529 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/az/firefox-62.0b10.tar.bz2"; 529 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/az/firefox-62.0b14.tar.bz2"; 530 530 locale = "az"; 531 531 arch = "linux-i686"; 532 - sha512 = "d009b86e540746257d691125407bdc2a16e9770da25079376591e113a7be128411ccb309ce5dd3dfc11a4e5136fba9c98452b2fe1c7642a76c17145b0b65f0a2"; 532 + sha512 = "0b0a74d8d95103114a42978d4777d9c70135397d090cf6f8e505ad7ae67cbf860189bdd7a53bb9b11d2f4ad8f864097edc3f067b59aa5f1a860aa7efc443a778"; 533 533 } 534 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/be/firefox-62.0b10.tar.bz2"; 534 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/be/firefox-62.0b14.tar.bz2"; 535 535 locale = "be"; 536 536 arch = "linux-i686"; 537 - sha512 = "490362f86b3ef01b9cb28aad1ef57f32e4f843a7d5d9c5cc57d803c3571abdfb348082cbc9b5615a1b47f2192ee2041ba62ec28babf96c1541ef633fe1bb794d"; 537 + sha512 = "b5c0735170a8feab3d949c7392a876a9b6e54806b8b24e65e8ec27ba93bacc4e887f1550e73737f447abe8af2f42ff8144eadd0f8c73c1f4a0a7494ac2416d5e"; 538 538 } 539 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/bg/firefox-62.0b10.tar.bz2"; 539 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/bg/firefox-62.0b14.tar.bz2"; 540 540 locale = "bg"; 541 541 arch = "linux-i686"; 542 - sha512 = "8b8d36783808a0a1edb8fd27d163eea9605a88f1949dbae9ca9161b172ca5fcb11a4d127a8e1e321bd4c5879aee5576ed1b2ace46ee47d528eadda56022a1fba"; 542 + sha512 = "05150987459039a1180825b27bdc7d5c1016b79c7f2f6335c4a9fbdb875cda1371038baf4aa7ec21b45eb2e5780fd9372d2ee9e9163ba378e2dc9bf0299e494b"; 543 543 } 544 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/bn-BD/firefox-62.0b10.tar.bz2"; 544 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/bn-BD/firefox-62.0b14.tar.bz2"; 545 545 locale = "bn-BD"; 546 546 arch = "linux-i686"; 547 - sha512 = "0e57b4f8760e1747e71c550df26da448ea2db0ded608ef1ef1ae80ed9d5d03b26bf4c221f078aa04481445841bb90032ddad48d03f36910653c1b3c64978c18e"; 547 + sha512 = "f44f94a95411eadb39b427e5af4972e5a4cfb97cbe4801c6e58c0ef092e609882a655586018f8f1e80bd7e97b36a0cfc058cc2a58171e1b45d400de8c8a0e11a"; 548 548 } 549 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/bn-IN/firefox-62.0b10.tar.bz2"; 549 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/bn-IN/firefox-62.0b14.tar.bz2"; 550 550 locale = "bn-IN"; 551 551 arch = "linux-i686"; 552 - sha512 = "3300e0a5f742001006d7e30ee6ac50a9a2fa4554248ff2b29349ddd993d1c7a85852b6dc311b0869edfdff564f5442ee1ceed033452933c36fadb155407e981b"; 552 + sha512 = "304926ad48d41c47063642482926ed6dd2dc9b87d55592259ebaf83a0d04bb52ea8b2bfe6a9db2e6e473305e0ced2157b7c954025658115e0aefb54e4e4a847e"; 553 553 } 554 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/br/firefox-62.0b10.tar.bz2"; 554 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/br/firefox-62.0b14.tar.bz2"; 555 555 locale = "br"; 556 556 arch = "linux-i686"; 557 - sha512 = "da396f23f2ab91c05d85fa0099133a95edb4e05700b0e08d5ba240a38d4efc20ef6769fa3a0ff5de2622d1dcdb381a264db6cdc90dc3434672223220f6e45ce8"; 557 + sha512 = "b2386332e0aa98de026b2671cb4f36463a71a7bfac7ee83ab962a41c52f9c88b6e57c05b51ead87c37e06f819f75319482738c9a636626ca1bb30dafe3909b0f"; 558 558 } 559 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/bs/firefox-62.0b10.tar.bz2"; 559 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/bs/firefox-62.0b14.tar.bz2"; 560 560 locale = "bs"; 561 561 arch = "linux-i686"; 562 - sha512 = "2e68d37451290d73e04d6a5bfd192b399cad78844ae667228aa18b77c08da3ec7cf785fbafd5ea490a3bacefdd97df81a55c9e944d8cba6d5f3a67a257d319cd"; 562 + sha512 = "117ada9109691c84cf1fbad414b277cee3056b3d9be182b0f8b7de03e15c49c90d0440c902ae8145c81368d42b7191f8752dc107b0b166b021ef1bb895144910"; 563 563 } 564 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/ca/firefox-62.0b10.tar.bz2"; 564 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/ca/firefox-62.0b14.tar.bz2"; 565 565 locale = "ca"; 566 566 arch = "linux-i686"; 567 - sha512 = "ded10aaa1d983d636f7182622a29c1837f51ab27146660139858608ffc9caf0c6f5b836434b1cb1d6d837188cb717d75b1bc69d73c77859fac9c705193939e06"; 567 + sha512 = "eeb3baf8f9069f02a276c3ed964f2e8f7131fd90803893fb06d9f83e9621c8c3a5d6b55af2a06952042e4b54589900448baee3fadb8f4edbf0cfd64e28a7307a"; 568 568 } 569 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/cak/firefox-62.0b10.tar.bz2"; 569 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/cak/firefox-62.0b14.tar.bz2"; 570 570 locale = "cak"; 571 571 arch = "linux-i686"; 572 - sha512 = "e4e5ef06ce826d5318aa4ff3b7c89ad88b68785e14eefd4bdbea01c38c5fc1eb43286cf33225b344a6c665ac8ae264b4155fae8d3e14123704575da4b7382219"; 572 + sha512 = "a30d323f1358386299041ea61a420600c188cacadbcd18c00cf3e2f6fc5a1341ae5f7a6fa32d7fb720a551f779c1ef26f6c46c71a9939b2032818baabab916e3"; 573 573 } 574 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/cs/firefox-62.0b10.tar.bz2"; 574 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/cs/firefox-62.0b14.tar.bz2"; 575 575 locale = "cs"; 576 576 arch = "linux-i686"; 577 - sha512 = "f142fbdeca019d1d5d012d9046514cadee3e81eb444c5d44d8ec83a9909ffb4837b0f219ea1190d06d5794e38e15121b33e7ce832a58b564d2703b7776cddd9f"; 577 + sha512 = "d0b6267b7512844f2b7d39c2197dbe7002dc41cb1250de886b76b177d617fee56038e6e7714e8e456d9034beeae09dffcbdb5464052db42975beed7149dc599c"; 578 578 } 579 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/cy/firefox-62.0b10.tar.bz2"; 579 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/cy/firefox-62.0b14.tar.bz2"; 580 580 locale = "cy"; 581 581 arch = "linux-i686"; 582 - sha512 = "b0e41b3b2282b60821db2015979ba228dc32118c001473f6758633ec27acb817f097a985fcf782c81c7035a8d29c77eeaff2b217183979163fbb1bd83b6fedfe"; 582 + sha512 = "754f97d09a5e1bc89777b01939b77884e915ce11870066f6465f4e468d1d81b1caf1b8c5fd83015fd7e3455ffe45e1e64044d1184f78e8b22b54aed320284bbb"; 583 583 } 584 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/da/firefox-62.0b10.tar.bz2"; 584 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/da/firefox-62.0b14.tar.bz2"; 585 585 locale = "da"; 586 586 arch = "linux-i686"; 587 - sha512 = "176b7033a988ffdeff54fc738b60505af089a6e43a38434b66e0405894b7b6cfd019cb98807aa24e168273978142a31bb5b744ee6e88cbbdbeefa715baa28f36"; 587 + sha512 = "e7a84f66676b6939ff3452e60fcec5ebee953333638818f7cd0214f54ace1ae4ec4d506eb9023800b6d33ef8c59bd528fe510d84722de97ce164617ffb442d1b"; 588 588 } 589 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/de/firefox-62.0b10.tar.bz2"; 589 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/de/firefox-62.0b14.tar.bz2"; 590 590 locale = "de"; 591 591 arch = "linux-i686"; 592 - sha512 = "d1d01695f820f9779c9741cf7fc5d8685bffb6e0d0439d37408f946229d78aa3852adcb5f24f8382300f232c157ab2bd44dcf99affed9295aa7e271aa135ed09"; 592 + sha512 = "4d4f06581198b49d14506cbbd2b2dfac30d3131c1c7ddd67920d0befca0c78f8d16634757e06cec3399ccbcb02e69453b300042d98f6c2fb2bfbae1e9c2a0b7a"; 593 593 } 594 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/dsb/firefox-62.0b10.tar.bz2"; 594 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/dsb/firefox-62.0b14.tar.bz2"; 595 595 locale = "dsb"; 596 596 arch = "linux-i686"; 597 - sha512 = "640efe3fe993feeb58be649bda72186279108c08a68ea1c0258186ae48cd8397a8edb5cc3678360168e17f2c78c8c3e7f45edca0a28f43ae572bca817efb3ec4"; 597 + sha512 = "e8928400891b82fb094f91c11b22d45d3c5204f48f17fa7bcee724635c9e2eb61f7e04ba5a933490fe3c118ab867e14d19a7cf60596a03a3d2d747959fa69581"; 598 598 } 599 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/el/firefox-62.0b10.tar.bz2"; 599 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/el/firefox-62.0b14.tar.bz2"; 600 600 locale = "el"; 601 601 arch = "linux-i686"; 602 - sha512 = "993563f872020e49c5c12ecd03322d54f449f5161506d0669d80338133b1a2f5a12ebf6938dc9aeb89dae3dc589cfc3a80a9da90f40932b9fb02698827e4c426"; 602 + sha512 = "b99c4aee9f2bd9463410b23d6b8bfdbbc51b03d9a565abe3b399b83e58fa393db77dc5f03a24f5d2ca5caeef5a47431379f7c004b28b15f93b23b865b551bd05"; 603 603 } 604 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/en-CA/firefox-62.0b10.tar.bz2"; 604 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/en-CA/firefox-62.0b14.tar.bz2"; 605 605 locale = "en-CA"; 606 606 arch = "linux-i686"; 607 - sha512 = "02c617c9603a19d27acab55a5e9bb742d30bfca3db737897d50e9d8a8685487b0600db1dce1769a680fe3dce64dca107a31b904222a534e02df8cf51df92b31b"; 607 + sha512 = "d8fddd987ee3fb740a615e22a6498e55614560285e101560921d487da5aed89bb277ab291720f661e048e54569a58d0c980241d5e1a5fe3c3f62d178b8b0089c"; 608 608 } 609 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/en-GB/firefox-62.0b10.tar.bz2"; 609 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/en-GB/firefox-62.0b14.tar.bz2"; 610 610 locale = "en-GB"; 611 611 arch = "linux-i686"; 612 - sha512 = "e096f0b92e79caa3f38bc805e838f18ae43880235bd409bdc53e545bf73ba27731fe1bb1e0baf1ad98c6f726f29e253368c47e69925145db388170bba6deab26"; 612 + sha512 = "c5392c77820c6105bb0536c7f1c8a1d4ab681e432ad94cd71f859232d89a2641db9e70658f0763a5e94c3b6fa5bc475e08aaccbe0cd3f4676702795516ec5626"; 613 613 } 614 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/en-US/firefox-62.0b10.tar.bz2"; 614 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/en-US/firefox-62.0b14.tar.bz2"; 615 615 locale = "en-US"; 616 616 arch = "linux-i686"; 617 - sha512 = "f29ad64c1eac9314c06a8873fac9425eb0a038e5dd2570f4d1a24d8ef071201f5cdd0ef6280eb3ac790f8c5c55bac3fc177ef8004b979909f4c7949e42d82846"; 617 + sha512 = "9333610db0377271c18816833dd7ee830767c44fcf61357bf7d6f684f7f84eb1d5792f89e87dc7db25f18a537ab3a8eddef61f5ef9f990c3413e723a6b09cf0f"; 618 618 } 619 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/en-ZA/firefox-62.0b10.tar.bz2"; 619 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/en-ZA/firefox-62.0b14.tar.bz2"; 620 620 locale = "en-ZA"; 621 621 arch = "linux-i686"; 622 - sha512 = "6dea9ee48c0d4ece3d9e1054f873acb78cd87150a3e21eed3cab89d2ee8cee58fe752167a2fc4ebedd630a345fc59a2d735d1c451c7b0537f5a8d5a7cf4faf30"; 622 + sha512 = "5e03ba5dc2f0e4bc52d947cb64d29031e9b5950307511df64a2bf83dbc024ace25b7dd57a3e00e548c8d4a82cfc3b953967b1f18b415c0ae057b526ed787327d"; 623 623 } 624 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/eo/firefox-62.0b10.tar.bz2"; 624 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/eo/firefox-62.0b14.tar.bz2"; 625 625 locale = "eo"; 626 626 arch = "linux-i686"; 627 - sha512 = "699106f53dafd9d8b9c8c72e7c2c58418e83333b40a884d12506db2703b159fcecfa3adbd65ae27d4f71ba0ad608ab1da134ae59f2ed6d3091e01ef01a64f7b1"; 627 + sha512 = "ad845f52ce35a0e3a06b74ec5467b10ff488ec94e4e01030d25f58dedfec692e99869719d54787f92012bb9b15d68d8a049b7596e746c1a2a8fdf0fa6f99719e"; 628 628 } 629 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/es-AR/firefox-62.0b10.tar.bz2"; 629 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/es-AR/firefox-62.0b14.tar.bz2"; 630 630 locale = "es-AR"; 631 631 arch = "linux-i686"; 632 - sha512 = "34b9a99f25124039e2702efdb22e067e9484c1c9a01256a78293d11147796a4caabaa0f14b8002d1fc5169bf08fbd02a0c0ccd8ab42c9dcd30247e1e016d3be9"; 632 + sha512 = "a2ed3ee096e886115f75a9baf049727ac7591d0087e30a91314eb4d99ad05d247f5c807d4670f0501711361a984e1336ef45a2e2c952d5893c2ea4747224743e"; 633 633 } 634 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/es-CL/firefox-62.0b10.tar.bz2"; 634 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/es-CL/firefox-62.0b14.tar.bz2"; 635 635 locale = "es-CL"; 636 636 arch = "linux-i686"; 637 - sha512 = "eca27fe26595efa9610eb7ece6665c610f720177fdac8b4fe5ff55805995b9d0b48f0b43c71ea9a546da88959020e4e3dfc035515b0c63a19cfe1ed980406fa4"; 637 + sha512 = "9d0e83a245ee79654f5825c08d9d45c19720765d085f224809ad01ae8dcc90a5e17b9b8963b1dd803dfa9ff21df82702cf0c12eb0ce551b63a2f55e1686aff76"; 638 638 } 639 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/es-ES/firefox-62.0b10.tar.bz2"; 639 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/es-ES/firefox-62.0b14.tar.bz2"; 640 640 locale = "es-ES"; 641 641 arch = "linux-i686"; 642 - sha512 = "da1471d3f979ece98eaf437bdb1bf153c1d05266b41b8a54aed3a78a30647eb476b154a87d0f0969231ca11747a00468c3d5759de24442eb1c2e3d49a85916ec"; 642 + sha512 = "8a71ade92eae94f4d0b2ee7816d93cc8d5662b95025804f1dcb65a80bdf5adea024351d747658fe28e891576229b94b53e221cb742b4e9a9b972441f3b6eda5c"; 643 643 } 644 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/es-MX/firefox-62.0b10.tar.bz2"; 644 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/es-MX/firefox-62.0b14.tar.bz2"; 645 645 locale = "es-MX"; 646 646 arch = "linux-i686"; 647 - sha512 = "e16025fa517bd2a670c8a7f3bf2d5f05e8efece75ea8ffedf88f5e0e728d18b6c4041c399da501d2cb0824a64e30503ab71a3fea068d30037fba47d494ed0ad5"; 647 + sha512 = "51ea91279ebd82930d35f5244c276c1f3ebe31debea6c916349aa95bf42aca2fbfee4a3d07f240e219915a52f476899b0316c2cd0575ccbc0eb6c02147f78e4f"; 648 648 } 649 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/et/firefox-62.0b10.tar.bz2"; 649 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/et/firefox-62.0b14.tar.bz2"; 650 650 locale = "et"; 651 651 arch = "linux-i686"; 652 - sha512 = "b7029f56f0f7d6d70ebbefbc1f406c75fb1f0617eaeba8864012738921b18675c752ad2863f177d26a5949a718ebf82699ff4bfbeac8fbc267578cdabb8369b9"; 652 + sha512 = "3f75060e06c0b67a4a2c3d1e7146c6c40f6be9cad33be33573279a3de4f572456dd6514da0876a5a1833b6f27ccb98dafb3833a06f25b42b559a8b5b44e8fc77"; 653 653 } 654 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/eu/firefox-62.0b10.tar.bz2"; 654 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/eu/firefox-62.0b14.tar.bz2"; 655 655 locale = "eu"; 656 656 arch = "linux-i686"; 657 - sha512 = "4f2972f199cde9802742cc7275c7e9df1848f04de4e5500db5c09522948b4a3ad027614783939d71d7b6d5c003af2ddf4411d391e8d391282a2cfde48790db82"; 657 + sha512 = "b7e05f5e3e9eedf174e9de26e48ff6885e4bd0575694a33c555cc13335c93a0ab65d01707b114f206be0bad988c1eb7515d0bb11f05cbdd94fe6d9bb07271bbd"; 658 658 } 659 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/fa/firefox-62.0b10.tar.bz2"; 659 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/fa/firefox-62.0b14.tar.bz2"; 660 660 locale = "fa"; 661 661 arch = "linux-i686"; 662 - sha512 = "10d54de8b66459b1085d0cb04c4448086dce730b8af1c8a31d340c15662f206d1fcdb1ad09bf6744515cab6fb8db69185a2cca9f3fdd438fd57b249b76e9a7fd"; 662 + sha512 = "d81db1e39c60abab55b8d7caf3b67e4bcbcd174db28cedaeddfbea0f9ac58a8e7aa543e5a09d77f2d43e87338b1c2b87584facbf667297889e0c1555b9b8fbd5"; 663 663 } 664 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/ff/firefox-62.0b10.tar.bz2"; 664 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/ff/firefox-62.0b14.tar.bz2"; 665 665 locale = "ff"; 666 666 arch = "linux-i686"; 667 - sha512 = "ec98734be92fcba4764d61a0674577ac388f8252ec62a8631cf66ab4eb88e8a1af2ee3157e0cafbf97c59a48d90443f0a8781183999da713dea2a7d67f816ee4"; 667 + sha512 = "4184f840e9955f7025db38500981bf5148334f933531925bffbe4946dd160d0bb0d8aa61f9069e5abdad7e7ddef05aa4e397fac506f6030e4bb51248e618ec15"; 668 668 } 669 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/fi/firefox-62.0b10.tar.bz2"; 669 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/fi/firefox-62.0b14.tar.bz2"; 670 670 locale = "fi"; 671 671 arch = "linux-i686"; 672 - sha512 = "0a9c899263a068262d8f4d0f666c43f8b06bc6dd9377be27b88ed1920af42eba98df4b491de5d980f54f43193ec6ab13b8cc91df95d6eecbf755930f49b1f4b4"; 672 + sha512 = "1d07ff210cb4ccb3041fad107ebaff013fff6676f073926be3a905c066cd8e2b5541ccf5033bc92622856157874db773b95b3d07d1d7bba90a4f559fbac64078"; 673 673 } 674 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/fr/firefox-62.0b10.tar.bz2"; 674 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/fr/firefox-62.0b14.tar.bz2"; 675 675 locale = "fr"; 676 676 arch = "linux-i686"; 677 - sha512 = "bc23a2b13d8cef1b92c73e2fd647a670db5933a4e93a53d2bb7a5814d6fd420a5cc41984b6adcb9863e1f9dbc451c9442e0663f096a707f947f0420bdd6924fd"; 677 + sha512 = "34e3e2718e3a201b87f99c71c990003c56542a139d92ab5a0277adba227c6f2e5352b9f623ea22cce2ee4e4f9b7f32b7df4442f763676b98a04de283d0bf5934"; 678 678 } 679 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/fy-NL/firefox-62.0b10.tar.bz2"; 679 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/fy-NL/firefox-62.0b14.tar.bz2"; 680 680 locale = "fy-NL"; 681 681 arch = "linux-i686"; 682 - sha512 = "e154036b3b4f42de8d880be470caee5fca4a393c469189fa59c9bfece9b9a2b1fe9f32a65c77c47f8260d5ce0ccb81e1bd0f43ddf98bbc608e76db446fd1be40"; 682 + sha512 = "d9284a1f45e2b193213f859f0e4dc2efe5545da8b36491bd29c57fdd4001661363af64d41fd4e9b4d604ad0ae04569a6e25bca29a5893e787288a0f7b3eef7ed"; 683 683 } 684 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/ga-IE/firefox-62.0b10.tar.bz2"; 684 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/ga-IE/firefox-62.0b14.tar.bz2"; 685 685 locale = "ga-IE"; 686 686 arch = "linux-i686"; 687 - sha512 = "3483257b21b58172c086c291d77a3c651e07d62b0823832d5d8e1f48fcb9d0d3a7c35df29e11e346380e78d6463802765ab1009ed4e64d7e0f4db1e4beaa6419"; 687 + sha512 = "62fd330a344db2a723a465c15849c31dbd1797880857e42d18b8efd9e3bd1d57844c27b201050165be17c4065a32eb2528456d62b6c1e397a6dba4c8c50285d2"; 688 688 } 689 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/gd/firefox-62.0b10.tar.bz2"; 689 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/gd/firefox-62.0b14.tar.bz2"; 690 690 locale = "gd"; 691 691 arch = "linux-i686"; 692 - sha512 = "de877d65e07d38d7b30bdbd3be409797b22cd29b3ed49138257ae008ee022655a3082a82f469ae99a2e8bbb3d4787c35377aa383f43da9d3cbc978a6d73c9bf4"; 692 + sha512 = "6435f0d11ac06231856b20b46dada3914791d09e4373c21d5b50953cdea6d229169f20c2be7cd057c78b5acee69ce55c549d218a94abc6cdd1ba4064c0cf88b6"; 693 693 } 694 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/gl/firefox-62.0b10.tar.bz2"; 694 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/gl/firefox-62.0b14.tar.bz2"; 695 695 locale = "gl"; 696 696 arch = "linux-i686"; 697 - sha512 = "37c29b7e014b20c93733adf75bdd4a427d89d8d0589e26bff48a94c4bbfdf3867dad8e6df0803afc08206c62f6a6952d46332e62258cfd2956416b4be29a3a5c"; 697 + sha512 = "f94371441674e1d45e7e7e476f3a0314344bbb581483f738851157f7b5b3b067994bfccedb9f709ce6520aa9fe2367085e99eba56535c663bf48a21b9dfbcbb7"; 698 698 } 699 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/gn/firefox-62.0b10.tar.bz2"; 699 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/gn/firefox-62.0b14.tar.bz2"; 700 700 locale = "gn"; 701 701 arch = "linux-i686"; 702 - sha512 = "5931414b6ee32a5b8e2d3730067b16b924ef93a40e93170592ec66452311dd9d50a79a73f26c143e3ab9ed06ecf8b341fd035445ec95199340dc64a10d9df3d8"; 702 + sha512 = "4b0ec3b4e84a2e0407ff81f6a72430c2cc2e498bd1c460f327e374737ca933d5e612ed021ac2bbae8a1d0cd2df251a2183ceb8b7e8598846144172f1c8054b35"; 703 703 } 704 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/gu-IN/firefox-62.0b10.tar.bz2"; 704 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/gu-IN/firefox-62.0b14.tar.bz2"; 705 705 locale = "gu-IN"; 706 706 arch = "linux-i686"; 707 - sha512 = "80bcf83c93319688123fc4256eb1346bca6d307ae9c87d0427eabecb006897d73c1fea677e33d1b9b4e888427116c2f1a8df60c47465becfe4a947e081b8d5ac"; 707 + sha512 = "62470d9b00487e2c36c96c177e622086fcf20185566c5725a3a763130e82d883bab7ef544733a693c8813b101ca8bad19d9d144db7611c36df737e4a1d945f81"; 708 708 } 709 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/he/firefox-62.0b10.tar.bz2"; 709 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/he/firefox-62.0b14.tar.bz2"; 710 710 locale = "he"; 711 711 arch = "linux-i686"; 712 - sha512 = "05c03cec4ecbf529244f19823cd00e0829e830e4c23faccd750fb1f239ea155b74670d315b8f1d94ed692c62f0c41fc30a6c051ab0410f84f408cf399dbc2225"; 712 + sha512 = "169719debd65a70afd7591cd0c5a601b822ec2440e063d5b5fd5cd1edd1e525ea98b574e7f2b114abc9baa96a696a96392f909b4806cb01e75dd82dbffbaff73"; 713 713 } 714 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/hi-IN/firefox-62.0b10.tar.bz2"; 714 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/hi-IN/firefox-62.0b14.tar.bz2"; 715 715 locale = "hi-IN"; 716 716 arch = "linux-i686"; 717 - sha512 = "92655f6a715fdc11cfb65f78bdf330e7f1bedb445db81069ba14a6baa1bd8494042ea837fa3e4f8f738d9758e3e7b9fa54122e7aa063ddb629020646fe4a8dbc"; 717 + sha512 = "f954cc4c071588f4227fac505662d1dd49a506fc4450d6fd2eaa47c97742a3cf675d0191c6e7ef3b3d87f6c89961539d049785b072564334c1303badda37d22b"; 718 718 } 719 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/hr/firefox-62.0b10.tar.bz2"; 719 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/hr/firefox-62.0b14.tar.bz2"; 720 720 locale = "hr"; 721 721 arch = "linux-i686"; 722 - sha512 = "b87544de15a28f2fe7ad4c9b9f41b4bc1ecb679ede72b28d6dee37717f7c72343949691bad30ef3259680d21c8bc302e5a63f346e1714a8b3f7dac07051a3afc"; 722 + sha512 = "e8abf2436d0e46eb84cf964897a2980d2e03ea883d17759a0d164981fb4b4fa36d04954c0bd18a22c39497265db342e62ac6beeb21f49aee57f011dba4d74880"; 723 723 } 724 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/hsb/firefox-62.0b10.tar.bz2"; 724 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/hsb/firefox-62.0b14.tar.bz2"; 725 725 locale = "hsb"; 726 726 arch = "linux-i686"; 727 - sha512 = "003c07ea6f748a2c98a8f4846484be4f49bd4e0541467c766eb00728c79a9e72441b8b426b20f1a6c84fa66c5c7d5b6d4903b92b5cf15236567610f6d9249816"; 727 + sha512 = "0def8973694bbe22f535de8e4d99521a45b369a0f4677982e7f2b0502e77212ca51697d3829d77658b226d884d1a8da1c5f21cbbfce22838329c9f2e82d285f4"; 728 728 } 729 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/hu/firefox-62.0b10.tar.bz2"; 729 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/hu/firefox-62.0b14.tar.bz2"; 730 730 locale = "hu"; 731 731 arch = "linux-i686"; 732 - sha512 = "177bc5d4653f8c2f555a7d8f8998a7433b607ff6e90d65f107ab2b40ee5349f96302ce63dd352c14e23f399d6a815fc0da6e52260d8d196daf4752ad8ad0e183"; 732 + sha512 = "2df9a763464afdccd7e96f16a4daec302d9ce8e2b398d82f95d78d394a51033e6e725af4f5c288506f4d97e376b9d74db8e93da667a7a51fe55205927debe66f"; 733 733 } 734 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/hy-AM/firefox-62.0b10.tar.bz2"; 734 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/hy-AM/firefox-62.0b14.tar.bz2"; 735 735 locale = "hy-AM"; 736 736 arch = "linux-i686"; 737 - sha512 = "ed449aeeb3708c335b62aaf5ce19c6f0e510505dec97c10642d5a1eb9b9befa6afe8fe14ea8e8027d0588643ff37b8a08694748fa7486b47a8aa20d841f41996"; 737 + sha512 = "6a53d7ebb9333ae95757282656fbdce782deed954e7f68f3a10448c03ccbd6b7e02822272bbc3520cfa5c5c2b9736948fe3bce94aee19fda58115ca7264fee8b"; 738 738 } 739 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/ia/firefox-62.0b10.tar.bz2"; 739 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/ia/firefox-62.0b14.tar.bz2"; 740 740 locale = "ia"; 741 741 arch = "linux-i686"; 742 - sha512 = "caef9f0f146be66981c92dbfcee6c3198c361183940fcf8a82dbf69572e0b53209ae9823bae5d4727ca63f5f28dea0fef15c810d1b5a054b12f912f83d23aad0"; 742 + sha512 = "b5ab70b5618dca56ec75840b31f419dcf00a3f85195cf26103d5672c978ef1a17eea38586c8dd7305463ad3ec5d46ee331cd7d7a0cf7855e7bf557dd508313b8"; 743 743 } 744 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/id/firefox-62.0b10.tar.bz2"; 744 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/id/firefox-62.0b14.tar.bz2"; 745 745 locale = "id"; 746 746 arch = "linux-i686"; 747 - sha512 = "2baea66a7b8a9f43b3160130c59ec8e0b5d80832b4a79147185b6f632dafa53b9206c1824fcd2fa167efd4d9e24929ed56bcdaf75e453ccf5e2e24d638e37253"; 747 + sha512 = "c12a6ef2c45e02cafd1b3231200e5058f0d11f424357ebc64435570aa4768dfff7d7a7b45d1689e98213add53bb8234dc612f4ac0eff515622682c5901c882ce"; 748 748 } 749 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/is/firefox-62.0b10.tar.bz2"; 749 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/is/firefox-62.0b14.tar.bz2"; 750 750 locale = "is"; 751 751 arch = "linux-i686"; 752 - sha512 = "a2ab5f55bc7494b546f28e6d322d180b30ee0ac4af6151b9b1ec6bf228be0ce569177bd503e0893bf065b120d697e1682de5d36e3f47967abf03e2d6d1f80899"; 752 + sha512 = "525989cbf6713ca83818d5b8801d54c88e2294e26afb60f80f6eb87e1d85bfb6bc935689434cfbf9bf8933bd51876a6528ed608af8c7df587c57881ca80afc54"; 753 753 } 754 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/it/firefox-62.0b10.tar.bz2"; 754 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/it/firefox-62.0b14.tar.bz2"; 755 755 locale = "it"; 756 756 arch = "linux-i686"; 757 - sha512 = "a4d4fd7470dc71f17fa4c7e4b9f4342bf44ca318ece327ad4e8e45bbb4a972d5401da5313e1b60b7f7c847a1115239f62f962afcc1f509faa1df90f44f2118da"; 757 + sha512 = "2bfe68602dd5ee72eb9d5f09fb74ede50612f00c5c32beefe9c07621e188bf2d3c0ea127555e6ac6dad07980c02bd7e8886b82e37d33d9bdcdacf0f3a2b8c472"; 758 758 } 759 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/ja/firefox-62.0b10.tar.bz2"; 759 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/ja/firefox-62.0b14.tar.bz2"; 760 760 locale = "ja"; 761 761 arch = "linux-i686"; 762 - sha512 = "db130fa050eed1c2e413c93ee928f5f3d9acf0f749cc29eb54b3dc2c676bc1a138fc14da9ffd7d261fadbfe3f9611229c3f7a7421c69feda7811258c93ae96b9"; 762 + sha512 = "b4c8ec9cc8e436def0962ccf3314aed62315ae08eccd5031962cc1c0db6a7d5f475f75f485cd7a30316e8ebc1ae58e82811537f8532283ded12d7fd9872f2f35"; 763 763 } 764 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/ka/firefox-62.0b10.tar.bz2"; 764 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/ka/firefox-62.0b14.tar.bz2"; 765 765 locale = "ka"; 766 766 arch = "linux-i686"; 767 - sha512 = "b20d5c5cbab48dfc924c1415ee25c3b4c5be6070797352bd205529786ae0b2b08b68aaa1d8314f7cc93ff29e865407e48f078f9a5010405b52c2280681d06fe1"; 767 + sha512 = "83de26625dabb5ac2be164f32d6d3a78a03e7edd4557d3d68cd933fb454f5553a0d9b260eb226160bbbd6eaeb7cbeeef1fe92ee2fd76502b04892628d0e475a0"; 768 768 } 769 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/kab/firefox-62.0b10.tar.bz2"; 769 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/kab/firefox-62.0b14.tar.bz2"; 770 770 locale = "kab"; 771 771 arch = "linux-i686"; 772 - sha512 = "7b48ac5dd887a7dc0c69025853e9af79776a92fdbbe8e357b996e2869827f78af1bd4a5ff6c380cc9b1f82192421e8f09da8fa9c2641a44e8c5c16f7a55f699f"; 772 + sha512 = "5de82c8f4b38981dfdb69c26370a3882a7daecbca21f5a48e9a326d0fbd619758156ce5fd0015c28ec94c79b3982b4b69325c7086006f0454f2279066d66312c"; 773 773 } 774 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/kk/firefox-62.0b10.tar.bz2"; 774 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/kk/firefox-62.0b14.tar.bz2"; 775 775 locale = "kk"; 776 776 arch = "linux-i686"; 777 - sha512 = "4e82ce00c4627ed3af79c1f83e02e25012603e17d8f45ad7a9bc6c89483017c9e4f6b97a4b7cf3cf46f3611d6ee66eb9757b9b40ccbe9d3eed0fb0119e630dee"; 777 + sha512 = "9f374d24bf2c684ee97d79ba998a63e4f3273108e643fd253fbb8286e36ffd714293822bfc7780d6fa65ba6806b2a3116d3e96211564d84772a6835ad43eeea1"; 778 778 } 779 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/km/firefox-62.0b10.tar.bz2"; 779 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/km/firefox-62.0b14.tar.bz2"; 780 780 locale = "km"; 781 781 arch = "linux-i686"; 782 - sha512 = "8a99eca4f7dd7c82e83e01d36160737d325d949fc423aa64abc1dffb82a404047c97512a046190c601b27236f48ab878df3858bd8d57bb0fbdaf9927abd269d9"; 782 + sha512 = "af56e1d8c9888dec1ea95247fd30bc8a50f844d7ecf68fc424b82116615f34a0f0c48ea2b967d19cb156dd401419b84152ce3129c23050064ae9c94f3cc839a5"; 783 783 } 784 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/kn/firefox-62.0b10.tar.bz2"; 784 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/kn/firefox-62.0b14.tar.bz2"; 785 785 locale = "kn"; 786 786 arch = "linux-i686"; 787 - sha512 = "798a246bd5ea6d8478b72d5105b43150e3754ad97d886bf1facf6469c44e1045d86fef9d7fc6ed66598cf9f8cc77e278d8cb04ead39afda5e280abdc5174907b"; 787 + sha512 = "6f87de964ac3d97896d1a318bda32fcb72dafaa2661d9a13e9b5bb9495892a1a541fefa5c5be0e804ab972eb9436b1e0b2a8d7226253f2ccceafaa350177ba9c"; 788 788 } 789 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/ko/firefox-62.0b10.tar.bz2"; 789 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/ko/firefox-62.0b14.tar.bz2"; 790 790 locale = "ko"; 791 791 arch = "linux-i686"; 792 - sha512 = "2245df3c930f4d5754c83a6d50ac2af03c3a7a312907f00d12a2a555a4b3ca7678a2ae39b8166bfd2bd547aba4aa3d20bd4c6b4e3624d2cf73b59ffcebc24e8f"; 792 + sha512 = "759161eb35b81cbd2032db75efd9b8810708f2c3634ef5a8a3322276b6f3ea1020aaebb04d0294b46312c430541ac9ed95801d2457f85cdedd19f9fbfb151078"; 793 793 } 794 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/lij/firefox-62.0b10.tar.bz2"; 794 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/lij/firefox-62.0b14.tar.bz2"; 795 795 locale = "lij"; 796 796 arch = "linux-i686"; 797 - sha512 = "0c4e948e1cd3aa773fcb38ff0399280a4dbc5c3f27751d1eb056e5d7157a4aaa00b7f437c45a9ad1ce566aad6831fdde7974d788dc336c8b79da095d44a52caf"; 797 + sha512 = "e7bbe584600d363bddf407b8dc57ea6ea02423af67694a7a6658c59dc2fe40cfd18acba9cce54dfe612624c2b41d02f3028700a70256379ecdf8570fe93d357d"; 798 798 } 799 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/lt/firefox-62.0b10.tar.bz2"; 799 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/lt/firefox-62.0b14.tar.bz2"; 800 800 locale = "lt"; 801 801 arch = "linux-i686"; 802 - sha512 = "4115192841dd74ee49e5e8b28dc877e144b7b517141ad0919146d196abd822a4ea379544fcfb5ba457facb799913c381c7314e8a4f8acb1b2cc46fd0f787e604"; 802 + sha512 = "58317a8be00a623d9fdc6b1ee1116d8c677fef0385c82bcc253c09c3921800ff3dc7fa0b0243736edd4a8a4d40072921fd6b83e1b812df9dcd90c1e89e41061a"; 803 803 } 804 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/lv/firefox-62.0b10.tar.bz2"; 804 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/lv/firefox-62.0b14.tar.bz2"; 805 805 locale = "lv"; 806 806 arch = "linux-i686"; 807 - sha512 = "b85f86fd806789849bd4bcea933578f70b38c8cafb9c52f6112cce1b3f4196291adfe03052cfd51e76ed8705df07a6d16776cb9de6d29bf8dec4eb77c24a1003"; 807 + sha512 = "ebe7f0602eb76d00e6405edfb5cf1dc8f2e0e6577522156f023d58d832238ac90a7e73d50dfeb84a2408efdfcbb8b1e723f9a99f779ade6fed1a8237a9ab25d4"; 808 808 } 809 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/mai/firefox-62.0b10.tar.bz2"; 809 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/mai/firefox-62.0b14.tar.bz2"; 810 810 locale = "mai"; 811 811 arch = "linux-i686"; 812 - sha512 = "069c073c8a2fd77c7a6de72b7b689e5e1d1596284bee7a18c33c55080b2d1382edde21c704fe45048f879ba8ba71b662470463b28ed67f1334f54f246399cee1"; 812 + sha512 = "a44c2cafbed21f5270eef1fe3c0e9f52b79277a343bb1e7f3214f4b63a01578e3350899b9296258a798a5a830ef142e357092c41f90aa20e4371b2375aff90b6"; 813 813 } 814 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/mk/firefox-62.0b10.tar.bz2"; 814 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/mk/firefox-62.0b14.tar.bz2"; 815 815 locale = "mk"; 816 816 arch = "linux-i686"; 817 - sha512 = "d231cfe0e07ec369d7c69f3b2e25dc68798a614fb316b3accdf9ed3dc34b5482f504a550efba19f131ed6710363fda72751adf837a36324a13fb55662cb941e2"; 817 + sha512 = "340a731956d6ba6e9556409367ac173d02aff222563d73994e495cbfc25c8820aabd779ba5e07d410dbb6ab804f7a91d71fc71edf59fea520fc9d9a5e5fb2904"; 818 818 } 819 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/ml/firefox-62.0b10.tar.bz2"; 819 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/ml/firefox-62.0b14.tar.bz2"; 820 820 locale = "ml"; 821 821 arch = "linux-i686"; 822 - sha512 = "3516dcdc5a7d7f5426c4326bdcc0c33f7c4f7fec85dbf8e161640322c6463c64248ea97f8314a1b9e1ca482cabf669bcb0b576892ca6bca941e829759ccfd068"; 822 + sha512 = "19ed8e63ecdc75d7990a29c9085571af1cdc03528ce8900940ecf54c093ca053365adf6ddbd1d18af1026eff68d08e1dd093e74e10743971f840063e38d9073d"; 823 823 } 824 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/mr/firefox-62.0b10.tar.bz2"; 824 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/mr/firefox-62.0b14.tar.bz2"; 825 825 locale = "mr"; 826 826 arch = "linux-i686"; 827 - sha512 = "17dfdec17f967569109d94062935bcf0481011b42642a009d76888d7318a297adc8359408db1e1be815eb4421f4a64a30a3c9c5b9cbcdcda4be24c5a2e052655"; 827 + sha512 = "f0d1a22225ac1c47d29cf60ef8cd569d13bbb9c815e6c50f73b58166889899b64561591e38da5ba38369d6e07c058c7ceddc35c313bd43ddd003c4895edb83ea"; 828 828 } 829 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/ms/firefox-62.0b10.tar.bz2"; 829 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/ms/firefox-62.0b14.tar.bz2"; 830 830 locale = "ms"; 831 831 arch = "linux-i686"; 832 - sha512 = "cdb4c9a805421d996d66e42cbf5c4189f3a1806fe27cd6cbe7d677dcc0f18841630bd73083de17273e20f130a3a381a65a4c1e267b6e204c0115dec8c6e50646"; 832 + sha512 = "064b80cb7e3b398de2264b5f375aacc125adb2ca5f807006ba03e23a815853383b2ae21d4bb77dd1dfea77fc483812ce8795273a48798fe1e28602a1ef936b56"; 833 833 } 834 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/my/firefox-62.0b10.tar.bz2"; 834 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/my/firefox-62.0b14.tar.bz2"; 835 835 locale = "my"; 836 836 arch = "linux-i686"; 837 - sha512 = "81ba5089c9eebfcd1a16dfca14aae2d1f2cad3e2937808938d818e995b2d6ef62063d08372b31cf980464c0d7b80fe87e7115d8e9cba0ead5a4981404ae72266"; 837 + sha512 = "7096b722581176d10c7efa801a09a726ae5f0b28364dbc8bf32c4f1cf5808bad63c534125d8669033ca3bb3cf7810e0dde8bbf8a72c7f8e04b2775bcc6c6b19f"; 838 838 } 839 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/nb-NO/firefox-62.0b10.tar.bz2"; 839 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/nb-NO/firefox-62.0b14.tar.bz2"; 840 840 locale = "nb-NO"; 841 841 arch = "linux-i686"; 842 - sha512 = "5234f60af1fca63d501df28f570089b133e6659bacf875b2f977ff555971d836493392fdba1d187edb796616bec9538a158d01b72f06d8846a6b1f53ace61afb"; 842 + sha512 = "1747946fb1d11fa31f7c8a4cdf15fab0bff8e5229546dccd6e7a15f5212fae5cec7432a413f4d5de603eff92894fa85559f3a35e97ffbcb38f2d07feff8c05e3"; 843 843 } 844 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/ne-NP/firefox-62.0b10.tar.bz2"; 844 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/ne-NP/firefox-62.0b14.tar.bz2"; 845 845 locale = "ne-NP"; 846 846 arch = "linux-i686"; 847 - sha512 = "5bfa1ee81c81c392f2c221ca691de094eca2abbfa1970b972a7db89f9cb9a95187f95aa96ab6a0ab7f9cf0c9d9cf52bd476e8b54199190371f45405dbfaad198"; 847 + sha512 = "6afe69d30dd0b79845db89b1d29e1a78da6901608ee0f3a7306cc5adbd3caf469db0e48ba81f0e1753522de4858d0ea4f767d8849f9045436ee239e58d24f37b"; 848 848 } 849 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/nl/firefox-62.0b10.tar.bz2"; 849 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/nl/firefox-62.0b14.tar.bz2"; 850 850 locale = "nl"; 851 851 arch = "linux-i686"; 852 - sha512 = "b1f0fb4a09a6895ebca561d587afef654f371f706678204cda0b67b3764d8e41629205999cdcef36fdcb786d6128a3df5947c265b461bc9427e6416b2dfdf5e7"; 852 + sha512 = "6219bf73aa42045e6885dc27f8c795c10f5a56a2fea65a2d2a7ce93a86de71a88c310e0c81d8550e01dc80265332534666140bdec5f1679fa7c0935c8100864f"; 853 853 } 854 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/nn-NO/firefox-62.0b10.tar.bz2"; 854 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/nn-NO/firefox-62.0b14.tar.bz2"; 855 855 locale = "nn-NO"; 856 856 arch = "linux-i686"; 857 - sha512 = "679f9a69b1ac386e92b1b1324fb12e4766f7876321d2eceb33d5d7e6244c70b7780491748699599da944223e17c5a1542986779acef26da5215d4b2e2408d2c1"; 857 + sha512 = "40bbd7c8801fc3c4ed76bf51f571f19f0dc1e3e1c7a11177ee049b72b4ede1f0df446dcfc378fcec94966b8b8b1f1cef4d35282dad63c8c0e64ec89dfb1807b6"; 858 858 } 859 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/oc/firefox-62.0b10.tar.bz2"; 859 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/oc/firefox-62.0b14.tar.bz2"; 860 860 locale = "oc"; 861 861 arch = "linux-i686"; 862 - sha512 = "9a446b70e7676c2d9ccf8d3dbcc203570a9421a771cc274cb271ed35a769c854a3c61caffbc5437d9e26e562d80784f01384215d2dda37de6da1b5fc617bb198"; 862 + sha512 = "acbe237a8c4eb611da8214392628c135e911de43b039b6f59ba7b31a7b5dca230f9964980ddef8d6d402818f0669b15f0ef26eba0222e8fca18e1a231c8d978d"; 863 863 } 864 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/or/firefox-62.0b10.tar.bz2"; 864 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/or/firefox-62.0b14.tar.bz2"; 865 865 locale = "or"; 866 866 arch = "linux-i686"; 867 - sha512 = "ddb1141d2312d663c3c4470bb1dfa2ac4171ec18aaf7fb8a3722ea627d571814b0f81495c28d95643547eebc012be816497bc632d650811c32a1f046aee6d7a9"; 867 + sha512 = "c9341d2f2a53c30aecc5bccc88d4676d113681d734e8f4f04cab25415022881604aebb63e6daca1078a49bd7bc9780a5872d5771a74030b5ca16e5a52144e525"; 868 868 } 869 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/pa-IN/firefox-62.0b10.tar.bz2"; 869 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/pa-IN/firefox-62.0b14.tar.bz2"; 870 870 locale = "pa-IN"; 871 871 arch = "linux-i686"; 872 - sha512 = "4a8d82235af85a526e6f1035016fbea9e4cd89d82d9734d092fcf8a19e0aaed591f5a493f0616f0c892b02db7738193bb5aca2c4112d59062286bbdfd3d5e22b"; 872 + sha512 = "ed04efa14fb5fbc0116784fbb8b697e26ced6c9f84c0c36238bc6e076ef651b2cad8969e4372662980ec40d5c70bf2b38bdc12ea2d718d1832979863dc5796ed"; 873 873 } 874 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/pl/firefox-62.0b10.tar.bz2"; 874 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/pl/firefox-62.0b14.tar.bz2"; 875 875 locale = "pl"; 876 876 arch = "linux-i686"; 877 - sha512 = "a7fc6a43a7995dd08bc84d67c776fc45616d469d2af4a62948a910c4728af0242ff9fc70cde7bc0b1c64b71f97c4239ca45e3a1069eede8de92098bc97f93cf9"; 877 + sha512 = "d415b2f084ff1ff0abe81b5c79f71348d2c907abe5620b68da6af756b37c677690a3e6be5a50f102c59d59c6ef694a98a44356698021273ee1645dc119a505ce"; 878 878 } 879 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/pt-BR/firefox-62.0b10.tar.bz2"; 879 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/pt-BR/firefox-62.0b14.tar.bz2"; 880 880 locale = "pt-BR"; 881 881 arch = "linux-i686"; 882 - sha512 = "d3d4c9ebb1172fcd3c20cbed28dbb14b115fcb68bc817c396f8a26b143550fc1562aaa65442e609b091b94b26225f9021b6981b4863d23be97076a98fe092db8"; 882 + sha512 = "91abe27feac815e505a5a1a179088f1c8f6c2d26b50ad9d692769af79873d94615c64b640a5e5518010ad79be22b44691e8568f310ff141015627886ce80015f"; 883 883 } 884 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/pt-PT/firefox-62.0b10.tar.bz2"; 884 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/pt-PT/firefox-62.0b14.tar.bz2"; 885 885 locale = "pt-PT"; 886 886 arch = "linux-i686"; 887 - sha512 = "89620e4ddbc92a4a35ccb408574abbc7dcf02717f0c22e2febf71a1b498fe93377fe959203acb0d46cbced9a2a8d63ca4d72adaf151665e58c29c38f157ea21a"; 887 + sha512 = "aea1a760470b1f34a3bbf078bc393a8e6037e0afc4c5779fd75c683cdab9c972122520786dbbf26d990fdbdd6c075e040b0b35f4a22ed85e9a8bb41a22c8e512"; 888 888 } 889 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/rm/firefox-62.0b10.tar.bz2"; 889 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/rm/firefox-62.0b14.tar.bz2"; 890 890 locale = "rm"; 891 891 arch = "linux-i686"; 892 - sha512 = "85960d1395a5c3d12dda25260c6a4719eb7705ce5b7e66f384424272478d3fbe129984addf005a35c08a0735759b07f8984fe13d378f11a8c3d8fac5714ce049"; 892 + sha512 = "efcaaf35cc3ae7d4684f47a1477b43aa7037ffcef2183205689a2fe0262f02eafc34003600b5c42a45cc5fed13786c953a5f10548eaed25f9a48d6dfe7f608f6"; 893 893 } 894 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/ro/firefox-62.0b10.tar.bz2"; 894 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/ro/firefox-62.0b14.tar.bz2"; 895 895 locale = "ro"; 896 896 arch = "linux-i686"; 897 - sha512 = "f443b0442b5a9e512cc08e51eefec6a49cec0ca1e154de4e1c4d973498da28d8435ceeb1e89634cae5e373f6af2f4f8e4df2f4683bfc53318d47ff254b084b5a"; 897 + sha512 = "9f61ea898ce0419daec09f0448ea1fdc6622cd8f0bb054112851c82ee439adced57af85efd477c0d24ede9d681e482af31369979451bad65a9dea99dbe65a746"; 898 898 } 899 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/ru/firefox-62.0b10.tar.bz2"; 899 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/ru/firefox-62.0b14.tar.bz2"; 900 900 locale = "ru"; 901 901 arch = "linux-i686"; 902 - sha512 = "d24a276fce83acf32eb3c067a102f51e75fb351eeeeb7e1bbfa4e533c33f8ac8ebe128e2baefbed9162d3bcf64852b88acb0775414c129ff7e66d64901fef215"; 902 + sha512 = "34502456ec26b2d2164476667e673b277c5cf30fd8e1241facf55eec5c18760e99fad530a1922a40eaa15f0107c6bef9ed219c2112b1ce623d22089aab73fab6"; 903 903 } 904 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/si/firefox-62.0b10.tar.bz2"; 904 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/si/firefox-62.0b14.tar.bz2"; 905 905 locale = "si"; 906 906 arch = "linux-i686"; 907 - sha512 = "2f025bb5c5e550ba9f10200bf1a56d5a33f6c80aeab5b9937596a3b19ea0b094affe8734ae4252e5f2a3ffa50ff437dcdaec44754312e1cf34f4b317f86ec72c"; 907 + sha512 = "87b86db83b1d60fc7de351ec553e44185b69b1846bb92066d950bd77582bcd1f9270e1e3bef263bfca225ed6f508d89d359582244bba1f0231f7838907401a80"; 908 908 } 909 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/sk/firefox-62.0b10.tar.bz2"; 909 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/sk/firefox-62.0b14.tar.bz2"; 910 910 locale = "sk"; 911 911 arch = "linux-i686"; 912 - sha512 = "9127e226fdaba68cac0fd0e8a977f3ef85e8cacd31d7021ea1a9e30b39acc11b0e4c3d78db2fc09b596e5de7806ef74fb48c3de0ea6e6c5c7c3915133e583ef8"; 912 + sha512 = "420e2f8d860d4afd3ac18bf0d9e1294c72a70af16c6435b5396a855cc60162107487410cd591fa93a9c91e3b0b933dad8cfaac0fa2ceddc097141c3c66e21185"; 913 913 } 914 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/sl/firefox-62.0b10.tar.bz2"; 914 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/sl/firefox-62.0b14.tar.bz2"; 915 915 locale = "sl"; 916 916 arch = "linux-i686"; 917 - sha512 = "112f6ddef9565c7065c9c47c9b412940fdbd5bb4606ff2ead622eb536943ef42d9c2a1791357f02da797ac7ad73decad3e6aecad43366cb6e69fadb7706d931c"; 917 + sha512 = "eb4441a87f7cfdd91fe6d8cba19edcb86a8f6de7e53126b9b29d88488829172424452d3465be0d85ad1cb7a55ec8d9c64d2efacfa6dcf915799a53b3820312ac"; 918 918 } 919 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/son/firefox-62.0b10.tar.bz2"; 919 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/son/firefox-62.0b14.tar.bz2"; 920 920 locale = "son"; 921 921 arch = "linux-i686"; 922 - sha512 = "de9531b0f128a8d9c33e3c25f67ef78977053b84abeb482a39008c06f96b08c2f3fa699313ad68c1d8e1f29147bc00cabdc30efa7d15dff47a7db9252c9fb568"; 922 + sha512 = "22ae1c5d0a1c780fdacbb90d7be943c1ad06f4dfc1c9df2e55b2c44aee6356cd384769aa2f3085cb0cd97acfbcd9141f58f2128ae8f4fbe82a741e6a6712b5ae"; 923 923 } 924 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/sq/firefox-62.0b10.tar.bz2"; 924 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/sq/firefox-62.0b14.tar.bz2"; 925 925 locale = "sq"; 926 926 arch = "linux-i686"; 927 - sha512 = "5bfb920fad1399e7e1c3287ef38175b901ea230261863b45e79850a2d1e2b779dce89dde073e76f7da474f1a1cd1f09aa9ead8fbbe5caeb763a9d0b683c4fbf6"; 927 + sha512 = "05f45bf2990d1b8e230a890b49802300964cc346844b0f8672bac4a4c8591ee8d4889b4432b5cdedd34f7c83ac099d167e6d1b7c0d259df33935ed5b1aea093e"; 928 928 } 929 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/sr/firefox-62.0b10.tar.bz2"; 929 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/sr/firefox-62.0b14.tar.bz2"; 930 930 locale = "sr"; 931 931 arch = "linux-i686"; 932 - sha512 = "5ee7e8cc7752c48a1de329c65753bafb6df0b7cf8a56534521a85b132f41ce0836ef0163b17104a7132eee38a5facc2a5f9de7aab31677b33726def9be4662ae"; 932 + sha512 = "9d432e4540bd613c014ecab716ed2ff02694dc120133621a0a2e230a9cd6a6fc0f210667a6ddc09b1b7566c957beb1e049a14dd972339adef3f7c401d18ed88a"; 933 933 } 934 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/sv-SE/firefox-62.0b10.tar.bz2"; 934 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/sv-SE/firefox-62.0b14.tar.bz2"; 935 935 locale = "sv-SE"; 936 936 arch = "linux-i686"; 937 - sha512 = "3fbaf21aa3d1e4e8feade93d015eecc97a50d6dec6e3aa487d450f53348297d1c48e38cd221282fc6ab4fb00fec099962225406ac89329519ccaed588a75ef88"; 937 + sha512 = "34fec55bd47cf55ef0877e91fcf62125c277de7755c0a0991cd4d79acb3b1b56f732a79d9bdfeab8f4f3788187fd63f459f453576f7ff988581816584c0a5fef"; 938 938 } 939 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/ta/firefox-62.0b10.tar.bz2"; 939 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/ta/firefox-62.0b14.tar.bz2"; 940 940 locale = "ta"; 941 941 arch = "linux-i686"; 942 - sha512 = "0dd9331f4ab4c35559551d433ecd1a2ea2ef917d1b04dc8b727a77540318100337b73a4500b0ccbfb24fa853b2749df5c74820af794a9579423e9aaa4b62a71f"; 942 + sha512 = "d92e0f051096dc1d2c21051fa805ce20e43c70ce68260f78565f2f506ad02adfc349996af4d64dd797f7b6961a344a90e7c686f857100ea8c4f6ef26c6d1f769"; 943 943 } 944 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/te/firefox-62.0b10.tar.bz2"; 944 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/te/firefox-62.0b14.tar.bz2"; 945 945 locale = "te"; 946 946 arch = "linux-i686"; 947 - sha512 = "ddf351df58fdfcca150012fb033055ef0b3e5175b587dbe9a1ad92144c5170f765c90cd8b8405aac85b7f16da1f4bfbf6316eaa8f45144397a06a11aa944cc75"; 947 + sha512 = "e3f06f8a71ecaee56a7c0441758eb4f43d940b8a85699631229c64add60599d3d686e9d6db55bf2fe2b8b1fedeadf4d0cf729f3b9ca96094e9422b0077683a5f"; 948 948 } 949 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/th/firefox-62.0b10.tar.bz2"; 949 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/th/firefox-62.0b14.tar.bz2"; 950 950 locale = "th"; 951 951 arch = "linux-i686"; 952 - sha512 = "d838e1ba30654631926a16ac3b8fec40989da3a0ffb95ae59990f9a22cf560e30222941777241c94b5cce9336f073df1d5a6472003481b36ac514c6ae12376be"; 952 + sha512 = "fb948deeb85930418bcfc41b445dbf448afca16711c37382b07202119aff770375a632f465e2e4dfe5367fd833fc6a8a5a4ce582b4eae39c09ca11293b7deb8d"; 953 953 } 954 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/tr/firefox-62.0b10.tar.bz2"; 954 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/tr/firefox-62.0b14.tar.bz2"; 955 955 locale = "tr"; 956 956 arch = "linux-i686"; 957 - sha512 = "3925df8ea333c2a9bf1c3e5fc09c5d6d662aa2644fd34f81f94221d895514989fe1e35ef3b688cafc13229744e3c8f6e2af08c5d08c10ee2544418195cbe3221"; 957 + sha512 = "de0a8aabe221ad6bcdc5f023a765f0af78002e9b266a7371b21ce62478007cd0e1e0ff6fbced9054a2d9439c9aad0571ec48c2f58281acecf5e598b2978798cf"; 958 958 } 959 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/uk/firefox-62.0b10.tar.bz2"; 959 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/uk/firefox-62.0b14.tar.bz2"; 960 960 locale = "uk"; 961 961 arch = "linux-i686"; 962 - sha512 = "ee80ae9b0332432a9afeac420484cb0649a0ea947fd869835c41973ef82c10ec1c469105efad08f6a6bba56f0fe7fa27ecdb8fa939fe210902f3dfe18fa6ae4f"; 962 + sha512 = "8041a47fb53ac91bdd702a4b77cab9c4f171ba202eb9f587cb2d9910ab1a6e3b631fbc03a93dbd935d024410db2d5438118c76818da0a8aadd10704fd445a1f9"; 963 963 } 964 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/ur/firefox-62.0b10.tar.bz2"; 964 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/ur/firefox-62.0b14.tar.bz2"; 965 965 locale = "ur"; 966 966 arch = "linux-i686"; 967 - sha512 = "fc7f6bc1d948a3572ff3aa169858b0bb1b63c9dce3128cb4f55177e45f17554813e2a65daa4f7ff1a2c870022535ac556f98ac28f58490d5914abcaf8bb9c7ec"; 967 + sha512 = "d2b0f990f29b00a77093e3cc30cd03d2f83bd82d7246aa8f4dec2e8fc325c9dabb13b02014ddf55b52963a10ed9973b12fad58703d9544936560ec0ce736de99"; 968 968 } 969 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/uz/firefox-62.0b10.tar.bz2"; 969 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/uz/firefox-62.0b14.tar.bz2"; 970 970 locale = "uz"; 971 971 arch = "linux-i686"; 972 - sha512 = "ee9f587298401f6895503c109e735cb73bf60ef85891a189dc27dcb752b9c40d9b91e9bc943aa6d393be80575a90ed6f1dd1b181590133173735f71ffb517546"; 972 + sha512 = "4fe7543f8346abf4880ae86d2dea9515cc9c5275ff402239ecf2400bf76d37079c66584c34a13b690c43bb432e19610169ba4605406810a55758b50b16aa6e94"; 973 973 } 974 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/vi/firefox-62.0b10.tar.bz2"; 974 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/vi/firefox-62.0b14.tar.bz2"; 975 975 locale = "vi"; 976 976 arch = "linux-i686"; 977 - sha512 = "8a871f77be68b897cc5ac78a8f83984954f16b55459ab46ede1f970cb912ba7c0326de9c39ce1847bcb41c1eaf032707ad7dc8754f7c6c7520551ab8ab7c98d0"; 977 + sha512 = "7d7627ee7403e297fb0dccd4833807941846532fcf42d2235d0e80feca4f1d9cff74f6e715bf758b0a0a3952d56b3f9d25c3123ee8110ad4b08168df0dda031a"; 978 978 } 979 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/xh/firefox-62.0b10.tar.bz2"; 979 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/xh/firefox-62.0b14.tar.bz2"; 980 980 locale = "xh"; 981 981 arch = "linux-i686"; 982 - sha512 = "6f592662d17b121d0b8d7dd25441b9c948432ab55ffc2f8e34415e9eaf75e97ba707bcff00afbba84d1b664e69598897c3a4595332b14e533378eaf52dc830c1"; 982 + sha512 = "0031e3080f1effdb659828479ded927152239781064242d48752a45cd6eaac6d3cc5736d5eadad6310955425d90cab790415d85541324c1566ca119060f3e57d"; 983 983 } 984 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/zh-CN/firefox-62.0b10.tar.bz2"; 984 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/zh-CN/firefox-62.0b14.tar.bz2"; 985 985 locale = "zh-CN"; 986 986 arch = "linux-i686"; 987 - sha512 = "f69ed795a4262c4288a2942845caaab66375d9db4d955fb22535862a29b18217e8f8bedb2ffffeade15f5276e8a76bbac2f0c0ae31b7851b20c696ed1b8605bc"; 987 + sha512 = "52c9149f86c860dddf31dad70c0287b72c3eafa0f6d6ab86c7f40e7b3aff7d11c37678bb39d8c339118ae1846af152a432875e124a727c06b25d3f8ffe07db80"; 988 988 } 989 - { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b10/linux-i686/zh-TW/firefox-62.0b10.tar.bz2"; 989 + { url = "http://archive.mozilla.org/pub/devedition/releases/62.0b14/linux-i686/zh-TW/firefox-62.0b14.tar.bz2"; 990 990 locale = "zh-TW"; 991 991 arch = "linux-i686"; 992 - sha512 = "9834484be2696bc4caba686dd4a87bc2a15a1c6125468d570cc1ac837ec111e2fac22b04f6d2226ba705c04e69195e95258848ba9ef0711fc2cbdbb1521302b1"; 992 + sha512 = "1dd72bcb1d5e84c0f49e585b949a342a29173b437818be60b8e34000da6c85f35d838e1cdc58210d9f494b4d2d89c73d1788eca0e2db2f55dcf4d81eac3d84f9"; 993 993 } 994 994 ]; 995 995 }
+12 -8
pkgs/applications/networking/cluster/openshift/default.nix
··· 9 9 with lib; 10 10 11 11 let 12 - version = "3.9.0"; 12 + version = "3.10.0"; 13 13 ver = stdenv.lib.elemAt (stdenv.lib.splitString "." version); 14 14 versionMajor = ver 0; 15 15 versionMinor = ver 1; 16 16 versionPatch = ver 2; 17 - gitCommit = "191fece"; 17 + gitCommit = "dd10d17"; 18 18 # version is in vendor/k8s.io/kubernetes/pkg/version/base.go 19 - k8sversion = "v1.9.1"; 20 - k8sgitcommit = "a0ce1bc657"; 19 + k8sversion = "v1.10.0"; 20 + k8sgitcommit = "b81c8f8"; 21 + k8sgitMajor = "0"; 22 + k8sgitMinor = "1"; 21 23 in stdenv.mkDerivation rec { 22 24 name = "openshift-origin-${version}"; 23 25 inherit version; ··· 26 28 owner = "openshift"; 27 29 repo = "origin"; 28 30 rev = "v${version}"; 29 - sha256 = "06k0zilfyvll7z34yirraslgpwgah9k6y5i6wgi7f00a79k76k78"; 31 + sha256 = "13aglz005jl48z17vnggkvr39l5h6jcqgkfyvkaz4c3jakms1hi9"; 30 32 }; 31 33 32 34 # go > 1.10 ··· 38 40 patchPhase = '' 39 41 patchShebangs ./hack 40 42 41 - substituteInPlace pkg/oc/bootstrap/docker/host/host.go \ 43 + substituteInPlace pkg/oc/clusterup/docker/host/host.go \ 42 44 --replace 'nsenter --mount=/rootfs/proc/1/ns/mnt findmnt' \ 43 45 'nsenter --mount=/rootfs/proc/1/ns/mnt ${utillinux}/bin/findmnt' 44 46 45 - substituteInPlace pkg/oc/bootstrap/docker/host/host.go \ 47 + substituteInPlace pkg/oc/clusterup/docker/host/host.go \ 46 48 --replace 'nsenter --mount=/rootfs/proc/1/ns/mnt mount' \ 47 49 'nsenter --mount=/rootfs/proc/1/ns/mnt ${utillinux}/bin/mount' 48 50 49 - substituteInPlace pkg/oc/bootstrap/docker/host/host.go \ 51 + substituteInPlace pkg/oc/clusterup/docker/host/host.go \ 50 52 --replace 'nsenter --mount=/rootfs/proc/1/ns/mnt mkdir' \ 51 53 'nsenter --mount=/rootfs/proc/1/ns/mnt ${coreutils}/bin/mkdir' 52 54 ''; ··· 61 63 echo "OS_GIT_COMMIT=${gitCommit}" >> os-version-defs 62 64 echo "KUBE_GIT_VERSION=${k8sversion}" >> os-version-defs 63 65 echo "KUBE_GIT_COMMIT=${k8sgitcommit}" >> os-version-defs 66 + echo "KUBE_GIT_MAJOR=${k8sgitMajor}" >> os-version-defs 67 + echo "KUBE_GIT_MINOR=${k8sgitMinor}" >> os-version-defs 64 68 export OS_VERSION_FILE="os-version-defs" 65 69 export CC=clang 66 70 make all WHAT='${concatStringsSep " " components}'
+4 -4
pkgs/applications/networking/cluster/terraform-provider-libvirt/default.nix
··· 19 19 20 20 buildGoPackage rec { 21 21 name = "terraform-provider-libvirt-${version}"; 22 - version = "0.3"; 22 + version = "0.4"; 23 23 24 24 goPackagePath = "github.com/dmacvicar/terraform-provider-libvirt"; 25 25 ··· 27 27 owner = "dmacvicar"; 28 28 repo = "terraform-provider-libvirt"; 29 29 rev = "v${version}"; 30 - sha256 = "004gxy55p5cf39f2zpah0i2zhvs4x6ixnxy8z9v7314604ggpkna"; 30 + sha256 = "05jkjp1kis4ncryv34pkb9cz2yhzbwg62x9qmlqsqlxwz9hqny3r"; 31 31 }; 32 32 33 33 buildInputs = [ libvirt pkgconfig makeWrapper ]; 34 34 35 - goDeps = ./deps.nix; 36 - 35 + # mkisofs needed to create ISOs holding cloud-init data, 36 + # and wrapped to terraform via deecb4c1aab780047d79978c636eeb879dd68630 37 37 propagatedBuildInputs = [ cdrtools ]; 38 38 39 39 meta = with stdenv.lib; {
-12
pkgs/applications/networking/cluster/terraform-provider-libvirt/deps.nix
··· 1 - # This file was generated by https://github.com/kamilchm/go2nix v1.2.1 2 - [ 3 - { 4 - goPackagePath = "github.com/aws/aws-sdk-go"; 5 - fetch = { 6 - type = "git"; 7 - url = "https://github.com/aws/aws-sdk-go"; 8 - rev = "c861d27d0304a79f727e9a8a4e2ac1e74602fdc0"; 9 - sha256 = "023cyg551dvm2l50dx1qsikkj77lk2dhiya7by8in7h65av6hjgl"; 10 - }; 11 - } 12 - ]
+73 -59
pkgs/applications/networking/cluster/terraform/providers/data.nix
··· 4 4 { 5 5 owner = "terraform-providers"; 6 6 repo = "terraform-provider-alicloud"; 7 - version = "1.9.5"; 8 - sha256 = "12yhy0p4xciw70i0gvwzbg39f6mfin2cfdblxyqjlv9bwg26k7jz"; 7 + version = "1.10.0"; 8 + sha256 = "19lplakpl8dz4a8xw9va86gd774yq4gayq4kzv3pvr62b03a999x"; 9 9 }; 10 10 archive = 11 11 { 12 12 owner = "terraform-providers"; 13 13 repo = "terraform-provider-archive"; 14 - version = "1.0.3"; 15 - sha256 = "1il8v9zi838naprr8dqzipk6ns71l8vdqidarxklnn8wdwxmacg4"; 14 + version = "1.1.0"; 15 + sha256 = "1fsynv725cmqz819v9p4i4h4w4y77mbya5y9v81sqvacqvr3i05h"; 16 16 }; 17 17 arukas = 18 18 { ··· 32 32 { 33 33 owner = "terraform-providers"; 34 34 repo = "terraform-provider-aws"; 35 - version = "1.25.0"; 36 - sha256 = "1cg2pch6nip96qdzca7q0ak6308fkjxz9zjdcv74cwg0f65frh7d"; 37 - }; 38 - azure-classic = 39 - { 40 - owner = "terraform-providers"; 41 - repo = "terraform-provider-azure-classic"; 42 - version = "0.1.1"; 43 - sha256 = "11myqq3wnxvpysjycvwg7b14ll8d9vkn06xb3r26kmc42fkl5xv1"; 35 + version = "1.30.0"; 36 + sha256 = "1si2fm5nm7gad90lf410zwjf2q5kd8mv6nkkbfnfdzkpkchavr95"; 44 37 }; 45 38 azurerm = 46 39 { 47 40 owner = "terraform-providers"; 48 41 repo = "terraform-provider-azurerm"; 49 - version = "1.7.0"; 50 - sha256 = "0lf83pc5gdmd61i93221zdg9pdzfpfnvhis8kf1s2jlc6zshbabv"; 42 + version = "1.12.0"; 43 + sha256 = "1avp2vhlj60iw17pw39003p30byms7xvq5lkippm60ak4ky9p51b"; 51 44 }; 52 45 azurestack = 53 46 { 54 47 owner = "terraform-providers"; 55 48 repo = "terraform-provider-azurestack"; 56 - version = "0.1.0"; 57 - sha256 = "144dfaq16g41i9y2pcq2ilgygndad3vivr6fbygg8yl10m5l4qp0"; 49 + version = "0.2.0"; 50 + sha256 = "0s1ga0ga0rbpp552hbq1dfnkpdjvk1c40i7qqnqmm20xlz6k55mb"; 58 51 }; 59 52 bitbucket = 60 53 { ··· 63 56 version = "1.0.0"; 64 57 sha256 = "0gi8p1q0y8x5y8lqihijkpqs3v152h0q7icv7ixk33xsdcvb418y"; 65 58 }; 59 + brightbox = 60 + { 61 + owner = "terraform-providers"; 62 + repo = "terraform-provider-brightbox"; 63 + version = "1.0.5"; 64 + sha256 = "0sn7k5bqgms5sxjhjikmby0jf2n6y14z6s4wsifxaw7b0082fy28"; 65 + }; 66 66 chef = 67 67 { 68 68 owner = "terraform-providers"; ··· 88 88 { 89 89 owner = "terraform-providers"; 90 90 repo = "terraform-provider-cloudflare"; 91 - version = "1.0.0"; 92 - sha256 = "1ar9wcgr45f2v6bqjn24zii0qwfppla8ya3gjc546sh1a7m0h9p3"; 91 + version = "1.1.0"; 92 + sha256 = "1rmg7gndhmb1wp0zszhwx9vrax8411iy24yrpkmayjify3vsvdpx"; 93 93 }; 94 94 cloudscale = 95 95 { ··· 123 123 { 124 124 owner = "terraform-providers"; 125 125 repo = "terraform-provider-datadog"; 126 - version = "1.0.3"; 127 - sha256 = "0nh2dww3hx6jrkcd9lq5hpnqr3grp9cmqi4nwmxlrc5azf8x0mii"; 126 + version = "1.1.0"; 127 + sha256 = "0ckmjpw9dkj5490kwxamdvnnidnjdgxnb1biqpvwj4139hlcl628"; 128 128 }; 129 129 digitalocean = 130 130 { ··· 158 158 { 159 159 owner = "terraform-providers"; 160 160 repo = "terraform-provider-docker"; 161 - version = "0.1.1"; 162 - sha256 = "02lhbl34dq7lsby3g32969i4g9l3z6xw1v00shljd3amgyz2l2r2"; 161 + version = "1.0.0"; 162 + sha256 = "09ribvyv02r907pdvyrwaklr14xyvyn14rijslnm16xp8d4waz9h"; 163 163 }; 164 164 dyn = 165 165 { ··· 179 179 { 180 180 owner = "terraform-providers"; 181 181 repo = "terraform-provider-fastly"; 182 - version = "0.2.0"; 183 - sha256 = "0vrvyqhzbrvhyhdkg2y2dgadf5j7bj0cbzd13f9m86d146zlf8lb"; 182 + version = "0.3.0"; 183 + sha256 = "1hh4s81g256iy1rvp9snqbyhidz8n6p7pzanlxp89ffrq9p32sp0"; 184 184 }; 185 185 flexibleengine = 186 186 { 187 187 owner = "terraform-providers"; 188 188 repo = "terraform-provider-flexibleengine"; 189 - version = "1.0.1"; 190 - sha256 = "1xf5cmn434a0zr9qxc7f0jma9gf111cp7fm2vgyhkd62hipafcas"; 189 + version = "1.1.0"; 190 + sha256 = "07g6kc211crxf9nvgvghg05jdahd1fb09lpwfcps9ph259pwwam3"; 191 191 }; 192 192 github = 193 193 { ··· 207 207 { 208 208 owner = "terraform-providers"; 209 209 repo = "terraform-provider-google"; 210 - version = "1.15.0"; 211 - sha256 = "0xwijnv7mzlyzplkylfphph568b9bxavrclnlwvp9ylvklq70nzl"; 210 + version = "1.16.2"; 211 + sha256 = "1d8by6rb4s2dggapcbb4b2g5hf280bjayz9p5q9njgsn83579pnm"; 212 212 }; 213 213 grafana = 214 214 { 215 215 owner = "terraform-providers"; 216 216 repo = "terraform-provider-grafana"; 217 - version = "1.0.2"; 218 - sha256 = "17pj4mm7ik9llhgckza822866x6986cdcr821f16dchvn3bfbf2i"; 217 + version = "1.2.0"; 218 + sha256 = "1kn2bbdgci6nfl2gyk4w8w203fscqws2748idv9m53ikczg8n573"; 219 219 }; 220 220 hcloud = 221 221 { ··· 228 228 { 229 229 owner = "terraform-providers"; 230 230 repo = "terraform-provider-heroku"; 231 - version = "1.0.1"; 232 - sha256 = "1kx74d0ywzim5zj3y5ac80r18igsqax39yv9qaam546a88ya31yy"; 231 + version = "1.2.0"; 232 + sha256 = "1w2r0wnfcr9aqij5ckq0apd8az8yzdg704hi1zjb1ggb54v97n31"; 233 233 }; 234 234 http = 235 235 { ··· 238 238 version = "1.0.1"; 239 239 sha256 = "1bnqrx4xya3lm5wp4byy6npazll6w1g6bv4rawgncswsgx08zqng"; 240 240 }; 241 + huaweicloud = 242 + { 243 + owner = "terraform-providers"; 244 + repo = "terraform-provider-huaweicloud"; 245 + version = "1.1.0"; 246 + sha256 = "1jsvv5yfxgz998p4wbldbq82hl4ykn1yp21igphl94n3b0jj33dj"; 247 + }; 241 248 icinga2 = 242 249 { 243 250 owner = "terraform-providers"; ··· 256 263 { 257 264 owner = "terraform-providers"; 258 265 repo = "terraform-provider-influxdb"; 259 - version = "1.0.0"; 260 - sha256 = "1w1izzs22b2w2qmpdxbhaj9kvnfyw0wlq3nigrigwwvqav43knh9"; 266 + version = "1.0.1"; 267 + sha256 = "0713h50675njnpdy4w1azfq8h6yai40gx6w2fbvw4n59h6jlfny4"; 261 268 }; 262 269 kubernetes = 263 270 { ··· 347 354 { 348 355 owner = "terraform-providers"; 349 356 repo = "terraform-provider-oneandone"; 350 - version = "1.1.0"; 351 - sha256 = "1yps2mcdy61afxva7vg0i82s24zkdrn5abwblm0gcgc0cz588r9d"; 357 + version = "1.2.0"; 358 + sha256 = "1lrcy05zklv7vc8653f8cn3jjc9zjjwi488dpaphsmsl1md3m88b"; 352 359 }; 353 360 opc = 354 361 { 355 362 owner = "terraform-providers"; 356 363 repo = "terraform-provider-opc"; 357 - version = "1.1.2"; 358 - sha256 = "0v413wgnr8h682han88s0n15cdwd9a0dxr9s2mknpi4664c41qlk"; 364 + version = "1.2.0"; 365 + sha256 = "19rfm12w97ccyrzpdw0qlwfn7gh64lqh17kj3cv11y1f731z8rlw"; 359 366 }; 360 367 openstack = 361 368 { 362 369 owner = "terraform-providers"; 363 370 repo = "terraform-provider-openstack"; 364 - version = "1.6.0"; 365 - sha256 = "14chn2vb8y9rz5irh8m2ky9yxmw2za45gikncjm4gfc3xl6803iq"; 371 + version = "1.7.0"; 372 + sha256 = "0sw2kmcsi9sjzi549fj6knida01q0lnpqvc3cpyjyv92f6w4bznn"; 366 373 }; 367 374 opentelekomcloud = 368 375 { ··· 382 389 { 383 390 owner = "terraform-providers"; 384 391 repo = "terraform-provider-oraclepaas"; 385 - version = "1.2.1"; 386 - sha256 = "0r404rysjhbsxh45ad23k12rs8js2pdczakzavnjx508kr29gcqc"; 392 + version = "1.3.0"; 393 + sha256 = "09vsb52cbf2h1rdwfg4xb54gklwgmaxdgjcdq1yx5gxj7lfbdl9v"; 387 394 }; 388 395 ovh = 389 396 { 390 397 owner = "terraform-providers"; 391 398 repo = "terraform-provider-ovh"; 392 - version = "0.2.0"; 393 - sha256 = "12dpgx0fpmqw64v5a70fihbgixyw71bdjbdi17gal7s2pj1xw159"; 399 + version = "0.3.0"; 400 + sha256 = "05bzkwa50alh8mpslh64dddp815m8df240w1mmphdmp9rsi6hqp8"; 394 401 }; 395 402 packet = 396 403 { ··· 417 424 { 418 425 owner = "terraform-providers"; 419 426 repo = "terraform-provider-postgresql"; 420 - version = "0.1.1"; 421 - sha256 = "0ls5z02vaalcrbaq375qnk0267pb17rpsx4s3plfnr7qclv21pwn"; 427 + version = "0.1.2"; 428 + sha256 = "08wv03j70mych4nnamivjihwvca3aksjxgjlj8yasz5292qgl05w"; 422 429 }; 423 430 powerdns = 424 431 { ··· 431 438 { 432 439 owner = "terraform-providers"; 433 440 repo = "terraform-provider-profitbricks"; 434 - version = "1.3.1"; 435 - sha256 = "1g4filwv38rq9wcdbpnpgfnv8qj1kzdnjc8awvbsdlxlj4fa06bi"; 441 + version = "1.3.2"; 442 + sha256 = "0mk77n833np6ahm6bzvpg31a0m1qazaipd0vqzccqfkbz78sm3jb"; 436 443 }; 437 444 rabbitmq = 438 445 { ··· 466 473 { 467 474 owner = "terraform-providers"; 468 475 repo = "terraform-provider-runscope"; 469 - version = "0.1.0"; 470 - sha256 = "05l305423njds2cmmxg67swpdnp3zibs36dq4cfjk47i4byvipjz"; 476 + version = "0.3.0"; 477 + sha256 = "1srnnlw94q1av8rzy8753fk4vazv5ldbimgr9gd51vrmpvmlgxas"; 471 478 }; 472 479 scaleway = 473 480 { 474 481 owner = "terraform-providers"; 475 482 repo = "terraform-provider-scaleway"; 476 - version = "1.4.1"; 477 - sha256 = "1zxb3981w30hv1aax28ayiy0sl0vzrrwkynp4lmwwhfjyhyagnm1"; 483 + version = "1.5.1"; 484 + sha256 = "1b42fh7mwj2cx3g16lgp4sw6ca5qqj0mhm6i7qid8agwsga34v0y"; 478 485 }; 479 486 softlayer = 480 487 { ··· 487 494 { 488 495 owner = "terraform-providers"; 489 496 repo = "terraform-provider-spotinst"; 490 - version = "1.0.0"; 491 - sha256 = "1p05wamv70mywfqf0b3nxpvxc0m8ydb5zcl2kpzsrii9mq21pjrf"; 497 + version = "1.2.0"; 498 + sha256 = "09k79xg5cbs4qhxr0b4f42qpxj6j2795z5vmwbxfkirb5bkpqdq1"; 492 499 }; 493 500 statuscake = 494 501 { 495 502 owner = "terraform-providers"; 496 503 repo = "terraform-provider-statuscake"; 497 - version = "0.1.0"; 498 - sha256 = "084520cak2krwpks2ipqcjfw3k4rrzn6gqqncz8c4i6g01f1m7yg"; 504 + version = "0.2.0"; 505 + sha256 = "065izach0hq04664hz7rc3gd0r3l06lzwcbj5800zjfv1inp6pxs"; 506 + }; 507 + telefonicaopencloud = 508 + { 509 + owner = "terraform-providers"; 510 + repo = "terraform-provider-telefonicaopencloud"; 511 + version = "1.0.0"; 512 + sha256 = "1761wkjz3d2458xl7855lxklyxgyk05fddh92rp6975y0ca6xa5m"; 499 513 }; 500 514 template = 501 515 { ··· 536 550 { 537 551 owner = "terraform-providers"; 538 552 repo = "terraform-provider-vault"; 539 - version = "1.1.0"; 540 - sha256 = "1g0cca662glqcz83l1skhj3nb7g386x65kwz95kyp59nvyxywvbq"; 553 + version = "1.1.1"; 554 + sha256 = "0kiqpnb4669xw9b8nf6a8ky0jhnp14bipaizml3gdh1hnda6hflw"; 541 555 }; 542 556 vcd = 543 557 {
+1 -6
pkgs/applications/networking/cluster/terraform/providers/default.nix
··· 16 16 # if the versions are not provided via file paths. 17 17 postBuild = "mv go/bin/${repo}{,_v${version}}"; 18 18 }; 19 - 20 - maybeDrv = name: data: 21 - # azure-classic is an archived repo 22 - if name == "azure-classic" then null 23 - else toDrv data; 24 19 in 25 - lib.mapAttrs maybeDrv list 20 + lib.mapAttrs (n: v: toDrv v) list
+1 -1
pkgs/applications/networking/cluster/terraform/providers/update-all
··· 71 71 72 72 org=terraform-providers 73 73 74 - repos=$(get_org_repos "$org" | grep terraform-provider- | grep -v terraform-provider-scaffolding | grep -v terraform-provider-telefonicaopencloud | sort) 74 + repos=$(get_org_repos "$org" | grep terraform-provider- | grep -v terraform-provider-scaffolding | grep -v terraform-provider-azure-classic | sort) 75 75 76 76 77 77 # Get all the providers with index
+3 -3
pkgs/applications/networking/instant-messengers/dino/default.nix
··· 13 13 }: 14 14 15 15 stdenv.mkDerivation rec { 16 - name = "dino-unstable-2018-06-03"; 16 + name = "dino-unstable-2018-07-08"; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "dino"; 20 20 repo = "dino"; 21 - rev = "52e116ee44be1667660c08858a28fe8fda125f79"; 22 - sha256 = "1yybmjd50r41366clrsw21qybbpjfkvim2n5b3dkcagjnifak0zl"; 21 + rev = "df8b5fcb722c4a33ed18cbbaafecb206f127b849"; 22 + sha256 = "1r7h9pxix0sylnwab7a8lir9h5yssk98128x2bzva77id9id33vi"; 23 23 fetchSubmodules = true; 24 24 }; 25 25
+18 -2
pkgs/applications/networking/instant-messengers/signal-desktop/default.nix
··· 3 3 , dbus, libX11, xorg, libXi, libXcursor, libXdamage, libXrandr, libXcomposite 4 4 , libXext, libXfixes, libXrender, libXtst, libXScrnSaver, nss, nspr, alsaLib 5 5 , cups, expat, udev 6 + # Unfortunately this also overwrites the UI language (not just the spell 7 + # checking language!): 8 + , hunspellDicts, spellcheckerLanguage ? null # E.g. "de_DE" 9 + # For a full list of available languages: 10 + # $ cat pkgs/development/libraries/hunspell/dictionaries.nix | grep "dictFileName =" | awk '{ print $3 }' 6 11 }: 7 12 8 13 let 14 + customLanguageWrapperArgs = (with lib; 15 + let 16 + # E.g. "de_DE" -> "de-de" (spellcheckerLanguage -> hunspellDict) 17 + spellLangComponents = splitString "_" spellcheckerLanguage; 18 + hunspellDict = elemAt spellLangComponents 0 + "-" + toLower (elemAt spellLangComponents 1); 19 + in if spellcheckerLanguage != null 20 + then '' 21 + --set HUNSPELL_DICTIONARIES "${hunspellDicts.${hunspellDict}}/share/hunspell" \ 22 + --set LC_MESSAGES "${spellcheckerLanguage}"'' 23 + else ""); 9 24 rpath = lib.makeLibraryPath [ 10 25 alsaLib 11 26 atk ··· 40 55 41 56 in stdenv.mkDerivation rec { 42 57 name = "signal-desktop-${version}"; 43 - version = "1.14.4"; 58 + version = "1.15.0"; 44 59 45 60 src = fetchurl { 46 61 url = "https://updates.signal.org/desktop/apt/pool/main/s/signal-desktop/signal-desktop_${version}_amd64.deb"; 47 - sha256 = "0590r7748kv6g7zygq95v8qxf7vi2n5ypj6734x9yshrn8z6p8lr"; 62 + sha256 = "1q73jx92h8zwk1dn103ymskz35q6kfiqc44886jr0p7mlpndqsa4"; 48 63 }; 49 64 50 65 phases = [ "unpackPhase" "installPhase" ]; ··· 68 83 --set-rpath ${rpath}:$out/libexec $out/libexec/signal-desktop 69 84 wrapProgram $out/libexec/signal-desktop \ 70 85 --prefix XDG_DATA_DIRS : "${gtk3}/share/gsettings-schemas/${gtk3.name}/" \ 86 + ${customLanguageWrapperArgs} \ 71 87 "''${gappsWrapperArgs[@]}" 72 88 73 89 # Symlink to bin
+2
pkgs/applications/networking/instant-messengers/telegram/tdesktop/default.nix
··· 14 14 stable = mkTelegram stableVersion; 15 15 preview = mkTelegram (stableVersion // { 16 16 stable = false; 17 + version = "1.3.12"; 18 + sha256Hash = "00z4ljs4fvbk7sf8wv1v50kln26gv8q12x6q41ai9gfzkvq5f69a"; 17 19 }); 18 20 }
+32 -14
pkgs/applications/networking/p2p/soulseekqt/default.nix
··· 2 2 , fetchurl 3 3 , dbus 4 4 , zlib, fontconfig 5 + , qtbase, qtmultimedia 6 + , libjson, libgpgerror 5 7 , libX11, libxcb, libXau, libXdmcp, freetype, libbsd 8 + , pythonPackages, squashfsTools, makeDesktopItem 6 9 }: 7 10 8 11 with stdenv.lib; 9 12 let 10 13 libPath = makeLibraryPath 11 - [ stdenv.cc.cc dbus libX11 zlib libX11 libxcb libXau libXdmcp freetype fontconfig libbsd ]; 14 + [ stdenv.cc.cc qtbase qtmultimedia dbus libX11 zlib libX11 libxcb libXau libXdmcp freetype fontconfig libbsd libjson libgpgerror]; 12 15 13 - version = "2016-1-17"; 16 + version = "2018-1-30"; 14 17 15 18 mainbin = "SoulseekQt-" + (version) +"-"+ (if stdenv.is64bit then "64bit" else "32bit"); 16 19 srcs = { 17 - "i686-linux" = fetchurl { 18 - url = "https://www.dropbox.com/s/kebk1b5ib1m3xxw/${mainbin}.tgz"; 19 - sha256 = "0r9rhnfslkgbw3l7fnc0rcfqjh58amgh5p33kwam0qvn1h1frnir"; 20 - }; 21 - 22 20 "x86_64-linux" = fetchurl { 23 - url = "https://www.dropbox.com/s/7qh902qv2sxyp6p/${mainbin}.tgz"; 24 - sha256 = "05l3smpdvw8xdhv4v8a28j0yi1kvzhrha2ck23g4bl7x9wkay4cc"; 21 + url = "https://www.dropbox.com/s/0vi87eef3ooh7iy/${mainbin}.tgz"; 22 + sha256 = "0d1cayxr1a4j19bc5a3qp9pg22ggzmd55b6f5av3lc6lvwqqg4w6"; 25 23 }; 26 24 }; 27 25 26 + desktopItem = makeDesktopItem { 27 + name = "SoulseekQt"; 28 + exec = "soulseekqt"; 29 + icon = "$out/share/soulseekqt/"; 30 + comment = "Official Qt SoulSeek client"; 31 + desktopName = "SoulseekQt"; 32 + genericName = "SoulseekQt"; 33 + categories = "Network;"; 34 + }; 35 + 28 36 in stdenv.mkDerivation rec { 29 37 30 38 name = "soulseekqt-${version}"; 31 39 inherit version; 32 40 src = srcs."${stdenv.system}" or (throw "unsupported system: ${stdenv.system}"); 33 41 34 - sourceRoot = "."; 35 - buildPhase = ":"; # nothing to build 42 + dontBuild = true; 43 + 44 + buildInputs = [ pythonPackages.binwalk squashfsTools ]; 45 + 46 + # avoid usage of appimagetool 47 + unpackCmd = '' 48 + export HOME=$(pwd) # workaround for binwalk 49 + tar xvf $curSrc && binwalk --quiet \ 50 + ${mainbin}.AppImage -D 'squashfs:.squashfs:unsquashfs %e' 51 + ''; 36 52 37 53 installPhase = '' 38 - mkdir -p $out/bin 39 - cp ${mainbin} $out/bin/soulseekqt 54 + mkdir -p $out/{bin,share/soulseekqt} 55 + cd squashfs-root/ 56 + cp -R soulseek.png translations $out/share/soulseekqt 57 + cp SoulseekQt $out/bin/soulseekqt 40 58 ''; 41 59 42 60 fixupPhase = '' ··· 50 68 homepage = http://www.soulseekqt.net; 51 69 license = licenses.unfree; 52 70 maintainers = [ maintainers.genesis ]; 53 - platforms = [ "i686-linux" "x86_64-linux" ]; 71 + platforms = [ "x86_64-linux" ]; 54 72 }; 55 73 }
+83
pkgs/applications/networking/protonmail-bridge/default.nix
··· 1 + { stdenv, fetchurl, lib, qtbase, qtmultimedia, qtsvg, qtdeclarative, qttools, full, 2 + libsecret, libGL, libpulseaudio, glib, makeWrapper, makeDesktopItem }: 3 + 4 + let 5 + version = "1.0.5-1"; 6 + 7 + description = '' 8 + An application that runs on your computer in the background and seamlessly encrypts 9 + and decrypts your mail as it enters and leaves your computer 10 + ''; 11 + 12 + desktopItem = makeDesktopItem { 13 + name = "Desktop-Bridge"; 14 + exec = "Desktop-Bridge"; 15 + icon = "desktop-bridge"; 16 + comment = stdenv.lib.replaceStrings ["\n"] [" "] description; 17 + desktopName = "ProtonMail Bridge"; 18 + genericName = "ProtonMail Bridge for Linux"; 19 + categories = "Utility;Security;Network;Email"; 20 + }; 21 + in stdenv.mkDerivation rec { 22 + name = "protonmail-bridge-${version}"; 23 + 24 + src = fetchurl { 25 + url = "https://protonmail.com/download/protonmail-bridge_${version}_amd64.deb"; 26 + sha256 = "1fsf4l5c9ii370fgy721a71h34g7vjfddscal3jblb4mm3ywzxfl"; 27 + }; 28 + 29 + nativeBuildInputs = [ makeWrapper ]; 30 + 31 + sourceRoot = "."; 32 + 33 + unpackCmd = '' 34 + ar p "$src" data.tar.xz | tar xJ 35 + ''; 36 + 37 + installPhase = '' 38 + mkdir -p $out/{bin,lib,share} 39 + mkdir -p $out/share/{applications,icons/hicolor/scalable/apps} 40 + 41 + cp -r usr/lib/protonmail/bridge/Desktop-Bridge{,.sh} $out/lib 42 + cp usr/share/icons/protonmail/Desktop-Bridge.svg $out/share/icons/hicolor/scalable/apps/desktop-bridge.svg 43 + cp ${desktopItem}/share/applications/* $out/share/applications 44 + 45 + ln -s $out/lib/Desktop-Bridge $out/bin/Desktop-Bridge 46 + ''; 47 + 48 + postFixup = let 49 + rpath = lib.makeLibraryPath [ 50 + stdenv.cc.cc.lib 51 + qtbase 52 + qtmultimedia 53 + qtsvg 54 + qtdeclarative 55 + qttools 56 + libGL 57 + libsecret 58 + libpulseaudio 59 + glib 60 + ]; 61 + 62 + qtPath = prefix: "${full}/${prefix}"; 63 + in '' 64 + patchelf \ 65 + --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ 66 + --set-rpath "${rpath}" \ 67 + $out/lib/Desktop-Bridge 68 + 69 + wrapProgram $out/lib/Desktop-Bridge \ 70 + --set QT_PLUGIN_PATH "${qtPath qtbase.qtPluginPrefix}" \ 71 + --set QML_IMPORT_PATH "${qtPath qtbase.qtQmlPrefix}" \ 72 + --set QML2_IMPORT_PATH "${qtPath qtbase.qtQmlPrefix}" \ 73 + ''; 74 + 75 + meta = with stdenv.lib; { 76 + homepage = https://www.protonmail.com/bridge; 77 + license = licenses.mit; 78 + platforms = [ "x86_64-linux" ]; 79 + maintainers = with maintainers; [ lightdiscord ]; 80 + 81 + inherit description; 82 + }; 83 + }
+2
pkgs/applications/science/biology/somatic-sniper/default.nix
··· 15 15 16 16 buildInputs = [ cmake zlib ncurses ]; 17 17 18 + enableParallelBuilding = false; 19 + 18 20 meta = with stdenv.lib; { 19 21 description = "Identify single nucleotide positions that are different between tumor and normal"; 20 22 license = licenses.mit;
+3 -5
pkgs/applications/science/math/almonds/default.nix
··· 1 - { stdenv, buildPythonApplication, fetchFromGitHub, ncurses, pillow, pytest }: 1 + { stdenv, python3, fetchFromGitHub, ncurses }: 2 2 3 - let 3 + with python3.pkgs; buildPythonApplication rec { 4 + pname = "almonds"; 4 5 version = "1.25b"; 5 - in 6 6 7 - buildPythonApplication { 8 - name = "almonds-${version}"; 9 7 src = fetchFromGitHub { 10 8 owner = "Tenchi2xh"; 11 9 repo = "Almonds";
+5 -3
pkgs/applications/science/math/bcal/default.nix
··· 1 - { stdenv, fetchFromGitHub, python3Packages }: 1 + { stdenv, fetchFromGitHub, python3Packages, readline }: 2 2 3 3 with stdenv.lib; 4 4 5 5 stdenv.mkDerivation rec { 6 6 name = "bcal-${version}"; 7 - version = "1.8"; 7 + version = "1.9"; 8 8 9 9 src = fetchFromGitHub { 10 10 owner = "jarun"; 11 11 repo = "bcal"; 12 12 rev = "v${version}"; 13 - sha256 = "0jdn46wzwq7yn3x6p1xyqarp52pcr0ghnfhkm7nyxv734g1abw7r"; 13 + sha256 = "0h6qi5rvzl6c6fsfdpdb3l4jcgip03l18i0b1x08z1y89i56y8mm"; 14 14 }; 15 15 16 16 nativeBuildInputs = [ python3Packages.pytest ]; 17 + 18 + buildInputs = [ readline ]; 17 19 18 20 doCheck = true; 19 21 checkPhase = ''
+7 -43
pkgs/applications/science/math/sage/default.nix
··· 8 8 # https://trac.sagemath.org/ticket/15980 for tracking of python3 support 9 9 python = nixpkgs.python2.override { 10 10 packageOverrides = self: super: { 11 - cypari2 = super.cypari2.override { inherit pari; }; 12 - 13 - cysignals = super.cysignals.override { inherit pari; }; 14 - 15 11 # python packages that appear unmaintained and were not accepted into the nixpkgs 16 12 # tree because of that. These packages are only dependencies of the more-or-less 17 13 # deprecated sagenb. However sagenb is still a default dependency and the doctests ··· 24 20 pybrial = self.callPackage ./pybrial.nix {}; 25 21 26 22 sagelib = self.callPackage ./sagelib.nix { 27 - inherit flint ecl pari eclib ntl arb; 23 + inherit flint ecl arb; 28 24 inherit sage-src openblas-blas-pc openblas-cblas-pc openblas-lapack-pc pynac singular; 29 25 linbox = nixpkgs.linbox.override { withSage = true; }; 30 26 }; ··· 38 34 }; 39 35 40 36 env-locations = self.callPackage ./env-locations.nix { 41 - inherit pari_data ecl pari; 37 + inherit pari_data ecl; 42 38 inherit singular; 43 39 three = nodePackages_8_x.three; 44 40 mathjax = nodePackages_8_x.mathjax; 45 41 }; 46 42 47 43 sage-env = self.callPackage ./sage-env.nix { 48 - inherit sage-src python rWrapper openblas-cblas-pc ecl singular eclib pari palp flint pynac pythonEnv giac ntl; 44 + inherit sage-src python rWrapper openblas-cblas-pc ecl singular palp flint pynac pythonEnv; 49 45 pkg-config = nixpkgs.pkgconfig; # not to confuse with pythonPackages.pkgconfig 50 46 }; 51 47 52 48 sage-with-env = self.callPackage ./sage-with-env.nix { 53 - inherit pari eclib pythonEnv ntl; 54 - inherit sage-src openblas-blas-pc openblas-cblas-pc openblas-lapack-pc pynac singular giac; 49 + inherit pythonEnv; 50 + inherit sage-src openblas-blas-pc openblas-cblas-pc openblas-lapack-pc pynac singular; 55 51 pkg-config = nixpkgs.pkgconfig; # not to confuse with pythonPackages.pkgconfig 56 52 three = nodePackages_8_x.three; 57 53 }; ··· 106 102 }); 107 103 }; 108 104 109 - # https://trac.sagemath.org/ticket/25532 110 - ntl = nixpkgs.ntl.overrideAttrs (oldAttrs: rec { 111 - name = "ntl-10.5.0"; 112 - sourceRoot = "${name}/src"; 113 - src = fetchurl { 114 - url = "http://www.shoup.net/ntl/${name}.tar.gz"; 115 - sha256 = "1lmldaldgfr2b2a6585m3np5ds8bq1bis2s1ajycjm49vp4kc2xr"; 116 - }; 117 - }); 118 - 119 - giac = nixpkgs.giac.override { inherit ntl; }; 120 105 arb = nixpkgs.arb.override { inherit flint; }; 121 106 122 - # update causes issues 123 - # https://groups.google.com/forum/#!topic/sage-packaging/cS3v05Q0zso 124 - # https://trac.sagemath.org/ticket/24735 125 - singular = (nixpkgs.singular.override { inherit ntl flint; }).overrideAttrs (oldAttrs: { 126 - name = "singular-4.1.0p3"; 127 - src = fetchurl { 128 - url = "http://www.mathematik.uni-kl.de/ftp/pub/Math/Singular/SOURCES/4-1-0/singular-4.1.0p3.tar.gz"; 129 - sha256 = "105zs3zk46b1cps403ap9423rl48824ap5gyrdgmg8fma34680a4"; 130 - }; 131 - }); 107 + singular = nixpkgs.singular.override { inherit flint; }; 132 108 133 109 # *not* to confuse with the python package "pynac" 134 - # https://trac.sagemath.org/ticket/24838 (depends on arb update) 135 110 pynac = nixpkgs.pynac.override { inherit singular flint; }; 136 111 137 - eclib = nixpkgs.eclib.override { inherit pari ntl; }; 138 - 139 112 # With openblas (64 bit), the tests fail the same way as when sage is build with 140 113 # openblas instead of openblasCompat. Apparently other packages somehow use flints 141 114 # blas when it is available. Alternative would be to override flint to use 142 115 # openblasCompat. 143 - flint = nixpkgs.flint.override { withBlas = false; inherit ntl; }; 116 + flint = nixpkgs.flint.override { withBlas = false; }; 144 117 145 118 # Multiple palp dimensions need to be available and sage expects them all to be 146 119 # in the same folder. ··· 165 138 166 139 # https://trac.sagemath.org/ticket/22191 167 140 ecl = nixpkgs.ecl_16_1_2; 168 - 169 - # sage currently uses an unreleased version of pari 170 - pari = (nixpkgs.pari.override { withThread = false; }).overrideAttrs (attrs: rec { 171 - version = "2.10-1280-g88fb5b3"; # on update remove pari-stackwarn patch from `sage-src.nix` 172 - src = fetchurl { 173 - url = "mirror://sageupstream/pari/pari-${version}.tar.gz"; 174 - sha256 = "19gbsm8jqq3hraanbmsvzkbh88iwlqbckzbnga3y76r7k42akn7m"; 175 - }; 176 - }); 177 141 in 178 142 python.pkgs.sage-wrapper // { 179 143 doc = python.pkgs.sagedoc;
-427
pkgs/applications/science/math/sage/patches/arb-2.13.0.patch
··· 1 - commit c885927e25b29bd23869e02379c2918da430323e 2 - Author: Timo Kaufmann <timokau@zoho.com> 3 - Date: Sat Jun 30 02:26:15 2018 +0200 4 - 5 - diff --git a/build/pkgs/arb/checksums.ini b/build/pkgs/arb/checksums.ini 6 - index 1924ee03c3..9323b97391 100644 7 - --- a/build/pkgs/arb/checksums.ini 8 - +++ b/build/pkgs/arb/checksums.ini 9 - @@ -1,4 +1,4 @@ 10 - tarball=arb-VERSION.tar.gz 11 - -sha1=27476d0529e48a07d92da90bd0fb80dd18f443e3 12 - -md5=733285d9705d10b8024e551ffa81952f 13 - -cksum=2391183744 14 - +sha1=44eda7bf8eaa666c45b1fc2c1b5bd08756d94b58 15 - +md5=fa24de9fffe4394fb6a7a6792e2ecc5f 16 - +cksum=3689220688 17 - diff --git a/build/pkgs/arb/package-version.txt b/build/pkgs/arb/package-version.txt 18 - index c8810e9bdb..fb2c0766b7 100644 19 - --- a/build/pkgs/arb/package-version.txt 20 - +++ b/build/pkgs/arb/package-version.txt 21 - @@ -1 +1 @@ 22 - -2.12.0.p0 23 - +2.13.0 24 - diff --git a/build/pkgs/arb/patches/arb-pie-hardening-conflict.patch b/build/pkgs/arb/patches/arb-pie-hardening-conflict.patch 25 - deleted file mode 100644 26 - index 3e5c0e708b..0000000000 27 - --- a/build/pkgs/arb/patches/arb-pie-hardening-conflict.patch 28 - +++ /dev/null 29 - @@ -1,17 +0,0 @@ 30 - -In newer binutils, ld options -r and -pie conflict. 31 - -Patch due to Jörg-Volker Peetz 32 - -(source : https://groups.google.com/d/msg/sage-devel/TduebNoZuBE/sEULolL0BQAJ), 33 - -packaged by Emmanuel Charpentier 34 - - 35 - -diff -ru arb-2.8.1-orig/Makefile.subdirs arb-2.8.1-new/Makefile.subdirs 36 - ---- arb-2.8.1-orig/Makefile.subdirs 2015-12-31 17:30:01.000000000 +0100 37 - -+++ arb-2.8.1-new/Makefile.subdirs 2016-11-07 18:50:34.540051779 +0100 38 - -@@ -52,7 +52,7 @@ 39 - - $(QUIET_CC) $(CC) $(CFLAGS) $(INCS) -c $< -o $@ -MMD -MP -MF "$(BUILD_DIR)/$(MOD_DIR)_$*.d" -MT "$(BUILD_DIR)/$(MOD_DIR)_$*.d" -MT "$@" 40 - - 41 - - $(MOD_LOBJ): $(LOBJS) 42 - -- $(QUIET_CC) $(CC) $(ABI_FLAG) -Wl,-r $^ -o $@ -nostdlib 43 - -+ $(QUIET_CC) $(CC) $(ABI_FLAG) -r $^ -o $@ -nostdlib 44 - - 45 - - -include $(LOBJS:.lo=.d) 46 - - 47 - diff --git a/src/sage/rings/complex_arb.pyx b/src/sage/rings/complex_arb.pyx 48 - index 70d51e655a..00e7caea2c 100644 49 - --- a/src/sage/rings/complex_arb.pyx 50 - +++ b/src/sage/rings/complex_arb.pyx 51 - @@ -857,14 +857,14 @@ class ComplexBallField(UniqueRepresentation, Field): 52 - [0.500000000000000 +/- 2.09e-16] 53 - 54 - sage: CBF.integral(lambda x, _: x.gamma(), 1 - CBF(i), 1 + CBF(i)) 55 - - [+/- 3.95e-15] + [1.5723926694981 +/- 4.53e-14]*I 56 - + [+/- 4...e-15] + [1.5723926694981 +/- 4...e-14]*I 57 - 58 - sage: C = ComplexBallField(100) 59 - sage: C.integral(lambda x, _: x.cos() * x.sin(), 0, 1) 60 - [0.35403670913678559674939205737 +/- 8.89e-30] 61 - 62 - sage: CBF.integral(lambda x, _: (x + x.exp()).sin(), 0, 8) 63 - - [0.34740017266 +/- 6.36e-12] 64 - + [0.34740017266 +/- 6...e-12] 65 - 66 - sage: C = ComplexBallField(2000) 67 - sage: C.integral(lambda x, _: (x + x.exp()).sin(), 0, 8) # long time 68 - @@ -879,14 +879,14 @@ class ComplexBallField(UniqueRepresentation, Field): 69 - ....: else: 70 - ....: return z.sqrt() 71 - sage: CBF.integral(my_sqrt, -1 + CBF(i), -1 - CBF(i)) 72 - - [+/- 1.14e-14] + [-0.4752076627926 +/- 5.18e-14]*I 73 - + [+/- 1.14e-14] + [-0.4752076627926 +/- 5...e-14]*I 74 - 75 - Note, though, that proper handling of the ``analytic`` flag is required 76 - even when the path does not touch the branch cut:: 77 - 78 - sage: correct = CBF.integral(my_sqrt, 1, 2); correct 79 - [1.21895141649746 +/- 3.73e-15] 80 - - sage: RBF(integral(sqrt(x), x, 1, 2)) 81 - + sage: RBF(integral(sqrt(x), x, 1, 2)) # long time 82 - [1.21895141649746 +/- 1.79e-15] 83 - sage: wrong = CBF.integral(lambda z, _: z.sqrt(), 1, 2) # WRONG! 84 - sage: correct - wrong 85 - @@ -915,9 +915,9 @@ class ComplexBallField(UniqueRepresentation, Field): 86 - the integrand is unbounded:: 87 - 88 - sage: CBF.integral(lambda x, _: 1/x, -1, 1) 89 - - [+/- inf] + [+/- inf]*I 90 - + nan + nan*I 91 - sage: CBF.integral(lambda x, _: 1/x, 10^-1000, 1) 92 - - [+/- inf] + [+/- inf]*I 93 - + nan + nan*I 94 - sage: CBF.integral(lambda x, _: 1/x, 10^-1000, 1, abs_tol=1e-10) 95 - [2302.5850930 +/- 1.26e-8] 96 - 97 - @@ -928,14 +928,15 @@ class ComplexBallField(UniqueRepresentation, Field): 98 - sage: CBF.integral(lambda x, _: x.exp(), -1020, -1010, abs_tol=1e-450) 99 - [2.304377150950e-439 +/- 9.74e-452] 100 - sage: CBF.integral(lambda x, _: x.exp(), -1020, -1010, abs_tol=0) 101 - - [2.304377150949e-439 +/- 7.53e-452] 102 - - sage: CBF.integral(lambda x, _: x.exp(), -1020, -1010, rel_tol=1e-4, abs_tol=0) 103 - - [2.30438e-439 +/- 3.90e-445] 104 - + [2.304377150950e-439 +/- 7...e-452] 105 - + sage: CBF.integral(lambda x, _: x.exp(), -1020, -1010, rel_tol=1e-2, abs_tol=0) 106 - + [2.30438e-439 +/- 5.94e-445] 107 - 108 - - sage: CBF.integral(lambda x, _: x*(1/x).sin(), 0, 1) 109 - - [+/- 0.644] 110 - - sage: CBF.integral(lambda x, _: x*(1/x).sin(), 0, 1, use_heap=True) 111 - - [0.3785300 +/- 4.32e-8] 112 - + sage: epsi = CBF(1e-10) 113 - + sage: CBF.integral(lambda x, _: x*(1/x).sin(), epsi, 1) 114 - + [0.38 +/- 8.54e-3] 115 - + sage: CBF.integral(lambda x, _: x*(1/x).sin(), epsi, 1, use_heap=True) 116 - + [0.37853002 +/- 8.73e-9] 117 - 118 - ALGORITHM: 119 - 120 - @@ -951,12 +952,12 @@ class ComplexBallField(UniqueRepresentation, Field): 121 - 122 - sage: i = QuadraticField(-1).gen() 123 - sage: CBF.integral(lambda x, _: (1 + i*x).gamma(), -1, 1) 124 - - [1.5723926694981 +/- 4.53e-14] + [+/- 3.95e-15]*I 125 - + [1.5723926694981 +/- 4...e-14] + [+/- 4...e-15]*I 126 - 127 - - sage: ComplexBallField(10000).integral(lambda x, _: x.sin(), 0, 1, rel_tol=1e-400) 128 - - [0.459... +/- ...e-4...] 129 - + sage: ComplexBallField(10000).integral(lambda x, _: x.sin(), 0, 1, rel_tol=1e-300) 130 - + [0.459... +/- ...e-3...] 131 - sage: CBF.integral(lambda x, _: x.sin(), 0, 100, rel_tol=10) 132 - - [+/- 7.61] 133 - + [0.138 +/- 5.53e-4] 134 - 135 - sage: ComplexBallField(10000).integral(lambda x, _: x.sin(), 0, 1, abs_tol=1e-400) 136 - [0.459697... +/- ...e-4...] 137 - @@ -2389,9 +2390,9 @@ cdef class ComplexBall(RingElement): 138 - sage: ~CBF(i/3) 139 - [-3.00000000000000 +/- 9.44e-16]*I 140 - sage: ~CBF(0) 141 - - [+/- inf] 142 - + nan 143 - sage: ~CBF(RIF(10,11)) 144 - - [0.1 +/- 9.53e-3] 145 - + [0.1 +/- 9.10e-3] 146 - """ 147 - cdef ComplexBall res = self._new() 148 - if _do_sig(prec(self)): sig_on() 149 - @@ -2512,9 +2513,9 @@ cdef class ComplexBall(RingElement): 150 - sage: CBF(-2, 1)/CBF(1, 1/3) 151 - [-1.500000000000000 +/- 8.83e-16] + [1.500000000000000 +/- 5.64e-16]*I 152 - sage: CBF(2+I)/CBF(0) 153 - - [+/- inf] + [+/- inf]*I 154 - + nan + nan*I 155 - sage: CBF(1)/CBF(0) 156 - - [+/- inf] 157 - + nan 158 - sage: CBF(1)/CBF(RBF(0, 1.)) 159 - nan 160 - """ 161 - @@ -2543,9 +2544,9 @@ cdef class ComplexBall(RingElement): 162 - sage: CBF(0)^(1/3) 163 - 0 164 - sage: CBF(0)^(-1) 165 - - [+/- inf] 166 - + nan 167 - sage: CBF(0)^(-2) 168 - - [+/- inf] + [+/- inf]*I 169 - + nan + nan*I 170 - 171 - TESTS:: 172 - 173 - @@ -2656,12 +2657,12 @@ cdef class ComplexBall(RingElement): 174 - sage: CBF(1).rising_factorial(5) 175 - 120.0000000000000 176 - sage: CBF(1/3, 1/2).rising_factorial(300) 177 - - [-3.87949484514e+612 +/- 5.23e+600] + [-3.52042209763e+612 +/- 5.55e+600]*I 178 - + [-3.87949484514e+612 +/- 5...e+600] + [-3.52042209763e+612 +/- 5...e+600]*I 179 - 180 - sage: CBF(1).rising_factorial(-1) 181 - nan 182 - sage: CBF(1).rising_factorial(2**64) 183 - - [+/- 2.30e+347382171305201370464] 184 - + [+/- 2.30e+347382171326740403407] 185 - sage: ComplexBallField(128)(1).rising_factorial(2**64) 186 - [2.343691126796861348e+347382171305201285713 +/- 4.71e+347382171305201285694] 187 - sage: CBF(1/2).rising_factorial(CBF(2,3)) 188 - @@ -2700,7 +2701,7 @@ cdef class ComplexBall(RingElement): 189 - [1.000000000000000 +/- 2.83e-16] + [-0.441271200305303 +/- 2.82e-16]*I 190 - 191 - sage: CBF('inf').log() 192 - - nan + nan*I 193 - + [+/- inf] 194 - sage: CBF(2).log(0) 195 - nan + nan*I 196 - """ 197 - @@ -2808,7 +2809,7 @@ cdef class ComplexBall(RingElement): 198 - sage: CBF(pi/2, 1/10).tan() 199 - [+/- 2.87e-14] + [10.0333111322540 +/- 2.36e-14]*I 200 - sage: CBF(pi/2).tan() 201 - - [+/- inf] 202 - + nan 203 - """ 204 - cdef ComplexBall res = self._new() 205 - if _do_sig(prec(self)): sig_on() 206 - @@ -2825,7 +2826,7 @@ cdef class ComplexBall(RingElement): 207 - sage: CBF(pi, 1/10).cot() 208 - [+/- 5.74e-14] + [-10.0333111322540 +/- 2.81e-14]*I 209 - sage: CBF(pi).cot() 210 - - [+/- inf] 211 - + nan 212 - """ 213 - cdef ComplexBall res = self._new() 214 - if _do_sig(prec(self)): sig_on() 215 - @@ -3211,9 +3212,9 @@ cdef class ComplexBall(RingElement): 216 - 1.000000000000000*I 217 - 218 - sage: CBF(2+3*I).hypergeometric([1/4,1/3],[1/2]) 219 - - [0.7871684267473 +/- 7.34e-14] + [0.2749254173721 +/- 9.23e-14]*I 220 - + [0.7871684267473 +/- 7...e-14] + [0.2749254173721 +/- 9...e-14]*I 221 - sage: CBF(2+3*I).hypergeometric([1/4,1/3],[1/2],regularized=True) 222 - - [0.4441122268685 +/- 3.96e-14] + [0.1551100567338 +/- 5.75e-14]*I 223 - + [0.4441122268685 +/- 3...e-14] + [0.1551100567338 +/- 5...e-14]*I 224 - 225 - sage: CBF(5).hypergeometric([2,3], [-5]) 226 - nan + nan*I 227 - @@ -4041,9 +4042,9 @@ cdef class ComplexBall(RingElement): 228 - 229 - sage: phi = CBF(1,1) 230 - sage: (CBF.pi()/2).elliptic_e_inc(phi) 231 - - [1.283840957898 +/- 3.23e-13] + [-0.5317843366915 +/- 7.79e-14]*I 232 - + [1.283840957898 +/- 3...e-13] + [-0.5317843366915 +/- 7...e-14]*I 233 - sage: phi.elliptic_e() 234 - - [1.2838409578982 +/- 5.90e-14] + [-0.5317843366915 +/- 3.35e-14]*I 235 - + [1.2838409578982 +/- 5...e-14] + [-0.5317843366915 +/- 3...e-14]*I 236 - 237 - sage: phi = CBF(2, 3/7) 238 - sage: (CBF.pi()/2).elliptic_e_inc(phi) 239 - @@ -4312,8 +4313,7 @@ cdef class ComplexBall(RingElement): 240 - sage: CBF(10).laguerre_L(3, 2) 241 - [-6.666666666667 +/- 4.15e-13] 242 - sage: CBF(5,7).laguerre_L(CBF(2,3), CBF(1,-2)) 243 - - [5515.315030271 +/- 4.37e-10] + [-12386.942845271 +/- 5.47e-10]*I 244 - - 245 - + [5515.315030271 +/- 4...e-10] + [-12386.942845271 +/- 5...e-10]*I 246 - """ 247 - cdef ComplexBall my_n = self._parent.coerce(n) 248 - cdef ComplexBall my_m = self._parent.coerce(m) 249 - @@ -4357,9 +4357,9 @@ cdef class ComplexBall(RingElement): 250 - EXAMPLES:: 251 - 252 - sage: CBF(1/2).legendre_P(5) 253 - - [0.08984375000000000 +/- 4.5...e-18] 254 - + [0.0898437500000000 +/- 7...e-17] 255 - sage: CBF(1,2).legendre_P(CBF(2,3), CBF(0,1)) 256 - - [0.10996180744364 +/- 7.45e-15] + [0.14312767804055 +/- 8.38e-15]*I 257 - + [0.10996180744364 +/- 7.12e-15] + [0.14312767804055 +/- 8.07e-15]*I 258 - sage: CBF(-10).legendre_P(5, 325/100) 259 - [-22104403.487377 +/- 6.81e-7] + [53364750.687392 +/- 7.25e-7]*I 260 - sage: CBF(-10).legendre_P(5, 325/100, type=3) 261 - @@ -4393,9 +4393,9 @@ cdef class ComplexBall(RingElement): 262 - sage: CBF(1/2).legendre_Q(5) 263 - [0.55508089057168 +/- 2.79e-15] 264 - sage: CBF(1,2).legendre_Q(CBF(2,3), CBF(0,1)) 265 - - [0.167678710 +/- 4.60e-10] + [-0.161558598 +/- 7.47e-10]*I 266 - + [0.167678710 +/- 3.91e-10] + [-0.161558598 +/- 6.77e-10]*I 267 - sage: CBF(-10).legendre_Q(5, 325/100) 268 - - [-83825154.36008 +/- 4.94e-6] + [-34721515.80396 +/- 5.40e-6]*I 269 - + [-83825154.36008 +/- 5.02e-6] + [-34721515.80396 +/- 5.42e-6]*I 270 - sage: CBF(-10).legendre_Q(5, 325/100, type=3) 271 - [-4.797306921692e-6 +/- 6.82e-19] + [-4.797306921692e-6 +/- 6.57e-19]*I 272 - 273 - diff --git a/src/sage/rings/polynomial/polynomial_complex_arb.pyx b/src/sage/rings/polynomial/polynomial_complex_arb.pyx 274 - index c436d4705b..ef611a566b 100644 275 - --- a/src/sage/rings/polynomial/polynomial_complex_arb.pyx 276 - +++ b/src/sage/rings/polynomial/polynomial_complex_arb.pyx 277 - @@ -543,7 +543,7 @@ cdef class Polynomial_complex_arb(Polynomial): 278 - sage: (1 - x/3).inverse_series_trunc(3) 279 - ([0.1111111111111111 +/- 5.99e-17])*x^2 + ([0.3333333333333333 +/- 7.04e-17])*x + 1.000000000000000 280 - sage: x.inverse_series_trunc(1) 281 - - [+/- inf] 282 - + nan 283 - sage: Pol(0).inverse_series_trunc(2) 284 - (nan + nan*I)*x + nan + nan*I 285 - 286 - @@ -671,7 +671,7 @@ cdef class Polynomial_complex_arb(Polynomial): 287 - sage: pol._sqrt_series(2) 288 - ([+/- 7.51e-3] + [+/- 0.501]*I)*x + [+/- 5.01e-3] + [+/- 1.01]*I 289 - sage: x._sqrt_series(2) 290 - - ([+/- inf] + [+/- inf]*I)*x 291 - + (nan + nan*I)*x 292 - """ 293 - cdef Polynomial_complex_arb res = self._new() 294 - if n < 0: 295 - diff --git a/src/sage/rings/real_arb.pyx b/src/sage/rings/real_arb.pyx 296 - index c9f68e38d7..76e3037a9a 100644 297 - --- a/src/sage/rings/real_arb.pyx 298 - +++ b/src/sage/rings/real_arb.pyx 299 - @@ -161,7 +161,7 @@ values and should be preferred:: 300 - 301 - sage: RBF(NaN) < RBF(infinity) 302 - False 303 - - sage: 1/RBF(0) <= RBF(infinity) 304 - + sage: RBF(0).add_error(infinity) <= RBF(infinity) 305 - True 306 - 307 - TESTS:: 308 - @@ -252,6 +252,8 @@ cdef void mpfi_to_arb(arb_t target, const mpfi_t source, const long precision): 309 - (+infinity, +infinity) 310 - sage: RBF(RIF(-infinity)).endpoints() 311 - (-infinity, -infinity) 312 - + sage: RBF(RIF(-infinity, infinity)).endpoints() 313 - + (-infinity, +infinity) 314 - sage: RIF(RBF(infinity)).endpoints() 315 - (+infinity, +infinity) 316 - sage: RIF(RBF(-infinity)).endpoints() 317 - @@ -266,10 +268,11 @@ cdef void mpfi_to_arb(arb_t target, const mpfi_t source, const long precision): 318 - if _do_sig(precision): sig_on() 319 - mpfi_get_left(left, source) 320 - mpfi_get_right(right, source) 321 - - arb_set_interval_mpfr(target, left, right, precision) 322 - - # Work around weakness of arb_set_interval_mpfr(tgt, inf, inf) 323 - - if mpfr_equal_p(left, right): 324 - - mag_zero(arb_radref(target)) 325 - + if mpfr_inf_p(left) and mpfr_inf_p(right) and mpfr_sgn(left) < 0 < mpfr_sgn(right): 326 - + # Work around a weakness of arb_set_interval_mpfr(tgt, -inf, inf) 327 - + arb_zero_pm_inf(target) 328 - + else: 329 - + arb_set_interval_mpfr(target, left, right, precision) 330 - if _do_sig(precision): sig_off() 331 - 332 - mpfr_clear(left) 333 - @@ -649,17 +652,15 @@ class RealBallField(UniqueRepresentation, Field): 334 - EXAMPLES:: 335 - 336 - sage: RBF.some_elements() 337 - - [1.000000000000000, 338 - - [0.3333333333333333 +/- 7.04e-17], 339 - + [0, 1.000000000000000, [0.3333333333333333 +/- 7.04e-17], 340 - [-4.733045976388941e+363922934236666733021124 +/- 3.46e+363922934236666733021108], 341 - - [+/- inf], 342 - - [+/- inf], 343 - - nan] 344 - + [+/- inf], [+/- inf], [+/- inf], nan] 345 - """ 346 - import sage.symbolic.constants 347 - - return [self(1), self(1)/3, 348 - + inf = self(sage.rings.infinity.Infinity) 349 - + return [self(0), self(1), self(1)/3, 350 - -self(2)**(Integer(2)**80), 351 - - self(sage.rings.infinity.Infinity), ~self(0), 352 - + inf, -inf, self.zero().add_error(inf), 353 - self.element_class(self, sage.symbolic.constants.NotANumber())] 354 - 355 - def _sum_of_products(self, terms): 356 - @@ -881,7 +882,7 @@ class RealBallField(UniqueRepresentation, Field): 357 - sage: RBF.gamma(5) 358 - 24.00000000000000 359 - sage: RBF.gamma(10**20) 360 - - [+/- 5.92e+1956570551809674821757] 361 - + [+/- 5.50e+1956570552410610660600] 362 - sage: RBF.gamma(1/3) 363 - [2.678938534707747 +/- 8.99e-16] 364 - sage: RBF.gamma(-5) 365 - @@ -2247,7 +2248,7 @@ cdef class RealBall(RingElement): 366 - sage: inf = RBF(+infinity) 367 - sage: other_inf = RBF(+infinity, 42.r) 368 - sage: neg_inf = RBF(-infinity) 369 - - sage: extended_line = 1/RBF(0) 370 - + sage: extended_line = RBF(0).add_error(infinity) 371 - sage: exact_nan = inf - inf 372 - sage: exact_nan.mid(), exact_nan.rad() 373 - (NaN, 0.00000000) 374 - @@ -2659,7 +2660,7 @@ cdef class RealBall(RingElement): 375 - sage: ~RBF(5) 376 - [0.2000000000000000 +/- 4.45e-17] 377 - sage: ~RBF(0) 378 - - [+/- inf] 379 - + nan 380 - sage: RBF(RIF(-0.1,0.1)) 381 - [+/- 0.101] 382 - 383 - @@ -2739,7 +2740,7 @@ cdef class RealBall(RingElement): 384 - sage: RBF(pi)/RBF(e) 385 - [1.155727349790922 +/- 8.43e-16] 386 - sage: RBF(2)/RBF(0) 387 - - [+/- inf] 388 - + nan 389 - """ 390 - cdef RealBall res = self._new() 391 - if _do_sig(prec(self)): sig_on() 392 - @@ -2765,7 +2766,7 @@ cdef class RealBall(RingElement): 393 - sage: RBF(-1)^(1/3) 394 - nan 395 - sage: RBF(0)^(-1) 396 - - [+/- inf] 397 - + nan 398 - sage: RBF(-e)**RBF(pi) 399 - nan 400 - 401 - @@ -3129,7 +3130,7 @@ cdef class RealBall(RingElement): 402 - sage: RBF(1).tan() 403 - [1.557407724654902 +/- 3.26e-16] 404 - sage: RBF(pi/2).tan() 405 - - [+/- inf] 406 - + nan 407 - """ 408 - cdef RealBall res = self._new() 409 - if _do_sig(prec(self)): sig_on() 410 - @@ -3146,7 +3147,7 @@ cdef class RealBall(RingElement): 411 - sage: RBF(1).cot() 412 - [0.642092615934331 +/- 4.79e-16] 413 - sage: RBF(pi).cot() 414 - - [+/- inf] 415 - + nan 416 - """ 417 - cdef RealBall res = self._new() 418 - if _do_sig(prec(self)): sig_on() 419 - @@ -3257,7 +3258,7 @@ cdef class RealBall(RingElement): 420 - sage: RBF(1).coth() 421 - [1.313035285499331 +/- 4.97e-16] 422 - sage: RBF(0).coth() 423 - - [+/- inf] 424 - + nan 425 - """ 426 - cdef RealBall res = self._new() 427 - if _do_sig(prec(self)): sig_on()
+15
pkgs/applications/science/math/sage/patches/known-padics-bug.patch
··· 1 + diff --git a/build/pkgs/openblas/package-version.txt b/build/pkgs/openblas/package-version.txt 2 + index 3bc45c25d4..7c7c224887 100644 3 + --- a/src/sage/schemes/elliptic_curves/padics.py 4 + +++ b/src/sage/schemes/elliptic_curves/padics.py 5 + @@ -292,8 +292,8 @@ def padic_regulator(self, p, prec=20, height=None, check_hypotheses=True): 6 + 7 + sage: max_prec = 30 # make sure we get past p^2 # long time 8 + sage: full = E.padic_regulator(5, max_prec) # long time 9 + - sage: for prec in range(1, max_prec): # long time 10 + - ....: assert E.padic_regulator(5, prec) == full # long time 11 + + sage: for prec in range(1, max_prec): # known bug (#25969) # long time 12 + + ....: assert E.padic_regulator(5, prec) == full # known bug (#25969) # long time 13 + 14 + A case where the generator belongs to the formal group already 15 + (:trac:`3632`)::
-48
pkgs/applications/science/math/sage/patches/maxima-5.41.0-doctests.patch
··· 1 - diff --git a/src/sage/interfaces/maxima_abstract.py b/src/sage/interfaces/maxima_abstract.py 2 - index 961c20aaac..3d601d8939 100644 3 - --- a/src/sage/interfaces/maxima_abstract.py 4 - +++ b/src/sage/interfaces/maxima_abstract.py 5 - @@ -1743,7 +1743,7 @@ class MaximaAbstractElement(ExtraTabCompletion, InterfaceElement): 6 - sage: y,d = var('y,d') 7 - sage: f = function('f') 8 - sage: latex(maxima(derivative(f(x*y), x))) 9 - - \left(\left.{{{\it \partial}}\over{{\it \partial}\, {\it t_0}}}\,f\left({\it t_0}\right) \right|_{{\it t_0}={\it x}\, {\it y}}\right)\,{\it y} 10 - + \left(\left.{{{\it \partial}}\over{{\it \partial}\, {\it t}_{0}}}\,f\left({\it t}_{0}\right) \right|_{{\it t}_{0}={\it x}\, {\it y}}\right)\,{\it y} 11 - sage: latex(maxima(derivative(f(x,y,d), d,x,x,y))) 12 - {{{\it \partial}^4}\over{{\it \partial}\,{\it d}\, {\it \partial}\,{\it x}^2\,{\it \partial}\, {\it y}}}\,f\left({\it x} , {\it y} , {\it d}\right) 13 - sage: latex(maxima(d/(d-2))) 14 - diff --git a/src/sage/manifolds/differentiable/metric.py b/src/sage/manifolds/differentiable/metric.py 15 - index 3cd6ad3235..1e18af1a6b 100644 16 - --- a/src/sage/manifolds/differentiable/metric.py 17 - +++ b/src/sage/manifolds/differentiable/metric.py 18 - @@ -993,7 +993,7 @@ class PseudoRiemannianMetric(TensorField): 19 - 2-dimensional differentiable manifold S^2 20 - sage: g.riemann()[:] 21 - [[[[0, 0], [0, 0]], [[0, sin(th)^2], [-sin(th)^2, 0]]], 22 - - [[[0, (cos(th)^2 - 1)/sin(th)^2], [1, 0]], [[0, 0], [0, 0]]]] 23 - + [[[0, -1], [1, 0]], [[0, 0], [0, 0]]]] 24 - 25 - In dimension 2, the Riemann tensor can be expressed entirely in terms of 26 - the Ricci scalar `r`: 27 - diff --git a/src/sage/symbolic/expression.pyx b/src/sage/symbolic/expression.pyx 28 - index dfb8751467..27402e54ab 100644 29 - --- a/src/sage/symbolic/expression.pyx 30 - +++ b/src/sage/symbolic/expression.pyx 31 - @@ -7154,7 +7154,7 @@ cdef class Expression(CommutativeRingElement): 32 - sage: ex = lcm(sin(x)^2 - 1, sin(x)^2 + sin(x)); ex 33 - (sin(x)^2 + sin(x))*(sin(x)^2 - 1)/(sin(x) + 1) 34 - sage: ex.simplify_full() 35 - - -cos(x)^2*sin(x) 36 - + sin(x)^3 - sin(x) 37 - 38 - TESTS: 39 - 40 - @@ -10004,7 +10004,7 @@ cdef class Expression(CommutativeRingElement): 41 - 42 - sage: f=tan(3*x) 43 - sage: f.simplify_trig() 44 - - (4*cos(x)^2 - 1)*sin(x)/(4*cos(x)^3 - 3*cos(x)) 45 - + -(4*cos(x)^2 - 1)*sin(x)/(4*cos(x)*sin(x)^2 - cos(x)) 46 - sage: f.simplify_trig(False) 47 - sin(3*x)/cos(3*x) 48 -
+18
pkgs/applications/science/math/sage/patches/pari-no-threads.patch
··· 1 + diff --git a/src/sage/libs/pari/__init__.py b/src/sage/libs/pari/__init__.py 2 + index e451766474..77eda66097 100644 3 + --- a/src/sage/libs/pari/__init__.py 4 + +++ b/src/sage/libs/pari/__init__.py 5 + @@ -205,6 +205,13 @@ def _get_pari_instance(): 6 + # messages in Sage. 7 + P.default("debugmem", 0) 8 + 9 + + # Make sure pari doesn't use threads, regardless of how it was compiled. 10 + + # Threads cause some doctest failures (memory issues). Those could probably 11 + + # be solved without disabling threads. But that would require figuring out 12 + + # some sensible values for `threadsizemax`. See 13 + + # https://pari.math.u-bordeaux.fr/dochtml/html/GP_defaults.html 14 + + P.default("nbthreads", 1) 15 + + 16 + return P 17 + 18 + pari = _get_pari_instance()
-479
pkgs/applications/science/math/sage/patches/pynac-0.7.22.patch
··· 1 - diff --git a/src/sage/calculus/calculus.py b/src/sage/calculus/calculus.py 2 - index 3a417d9d5c..fadaadbaf6 100644 3 - --- a/src/sage/calculus/calculus.py 4 - +++ b/src/sage/calculus/calculus.py 5 - @@ -231,7 +231,7 @@ Another example:: 6 - sage: f(x=3) 7 - arcsinh(1) 8 - sage: f.derivative(x) 9 - - 1/3/sqrt(1/9*x^2 + 1) 10 - + 1/sqrt(x^2 + 9) 11 - 12 - We compute the length of the parabola from 0 to 2:: 13 - 14 - @@ -1509,8 +1509,8 @@ def laplace(ex, t, s, algorithm='maxima'): 15 - Testing SymPy:: 16 - 17 - sage: laplace(t^n, t, s, algorithm='sympy') 18 - - (s^(-n)*gamma(n + 1)/s, 0, -re(n) < 1) 19 - - 20 - + (gamma(n + 1)/(s*s^n), 0, -re(n) < 1) 21 - + 22 - Testing Maxima:: 23 - 24 - sage: laplace(t^n, t, s, algorithm='maxima') 25 - diff --git a/src/sage/functions/hypergeometric.py b/src/sage/functions/hypergeometric.py 26 - index 1fc2db5c94..f3e49b9cdb 100644 27 - --- a/src/sage/functions/hypergeometric.py 28 - +++ b/src/sage/functions/hypergeometric.py 29 - @@ -34,7 +34,7 @@ Simplification (note that ``simplify_full`` does not yet call 30 - sage: a.simplify_hypergeometric() 31 - 1/((-e^x + 1)^e^x) 32 - sage: a.simplify_hypergeometric(algorithm='sage') 33 - - (-e^x + 1)^(-e^x) 34 - + 1/((-e^x + 1)^e^x) 35 - 36 - Equality testing:: 37 - 38 - @@ -145,7 +145,7 @@ Series expansions of confluent hypergeometric functions:: 39 - 40 - sage: hypergeometric_M(2, 2, x).series(x, 3) 41 - 1 + 1*x + 1/2*x^2 + Order(x^3) 42 - - sage: hypergeometric_U(2, 2, x).series(x == 3, 100).subs(x=1).n() 43 - + sage: hypergeometric_U(2, 2, x).series(x == 3, 100).subs(x=1).n() # known bug (see :trac:`25688`) 44 - 0.403652637676806 45 - sage: hypergeometric_U(2, 2, 1).n() 46 - 0.403652637676806 47 - @@ -773,7 +773,7 @@ def closed_form(hyp): 48 - sage: closed_form(hypergeometric([], [], z)) 49 - e^z 50 - sage: closed_form(hypergeometric([a], [], z)) 51 - - (-z + 1)^(-a) 52 - + 1/((-z + 1)^a) 53 - sage: closed_form(hypergeometric([1, 1, 2], [1, 1], z)) 54 - (z - 1)^(-2) 55 - sage: closed_form(hypergeometric([2, 3], [1], x)) 56 - @@ -1121,7 +1121,7 @@ class Hypergeometric_U(BuiltinFunction): 57 - sage: var('a b z') 58 - (a, b, z) 59 - sage: hypergeometric_U(a, b, z).generalized() 60 - - z^(-a)*hypergeometric((a, a - b + 1), (), -1/z) 61 - + hypergeometric((a, a - b + 1), (), -1/z)/z^a 62 - sage: hypergeometric_U(1, 3, 1/2).generalized() 63 - 2*hypergeometric((1, -1), (), -2) 64 - sage: hypergeometric_U(3, I, 2).generalized() 65 - diff --git a/src/sage/functions/log.py b/src/sage/functions/log.py 66 - index 75d1bf8060..61968582af 100644 67 - --- a/src/sage/functions/log.py 68 - +++ b/src/sage/functions/log.py 69 - @@ -518,17 +518,17 @@ class Function_polylog(GinacFunction): 70 - 71 - sage: BF = RealBallField(100) 72 - sage: polylog(2, BF(1/3)) 73 - - [0.36621322997706348761674629766 +/- 4.51e-30] 74 - + [0.36621322997706348761674629766... +/- ...] 75 - sage: polylog(2, BF(4/3)) 76 - - nan 77 - + [2.27001825336107090380391448586 +/- 5.64e-30] + [-0.90377988538400159956755721265 +/- 8.39e-30]*I 78 - sage: parent(_) 79 - - Real ball field with 100 bits of precision 80 - + Complex ball field with 100 bits of precision 81 - sage: polylog(2, CBF(1/3)) 82 - - [0.366213229977063 +/- 5.85e-16] 83 - + [0.366213229977063 +/- ...] 84 - sage: parent(_) 85 - Complex ball field with 53 bits of precision 86 - sage: polylog(2, CBF(1)) 87 - - [1.644934066848226 +/- 6.59e-16] 88 - + [1.644934066848226 +/- ...] 89 - sage: parent(_) 90 - Complex ball field with 53 bits of precision 91 - """ 92 - diff --git a/src/sage/functions/trig.py b/src/sage/functions/trig.py 93 - index e7e7a311cd..1f2926d6c9 100644 94 - --- a/src/sage/functions/trig.py 95 - +++ b/src/sage/functions/trig.py 96 - @@ -529,13 +529,8 @@ class Function_arcsin(GinacFunction): 97 - arcsin 98 - sage: asin(complex(1,1)) 99 - (0.6662394324925152+1.0612750619050357j) 100 - - 101 - - Check that :trac:`22823` is fixed:: 102 - - 103 - - sage: bool(asin(SR(2.1)) == NaN) 104 - - True 105 - - sage: asin(SR(2.1)).is_real() 106 - - False 107 - + sage: asin(SR(2.1)) 108 - + 1.57079632679490 - 1.37285914424258*I 109 - """ 110 - GinacFunction.__init__(self, 'arcsin', latex_name=r"\arcsin", 111 - conversions=dict(maxima='asin', sympy='asin', fricas="asin", giac="asin")) 112 - @@ -595,13 +590,8 @@ class Function_arccos(GinacFunction): 113 - arccos 114 - sage: acos(complex(1,1)) 115 - (0.9045568943023814-1.0612750619050357j) 116 - - 117 - - Check that :trac:`22823` is fixed:: 118 - - 119 - - sage: bool(acos(SR(2.1)) == NaN) 120 - - True 121 - - sage: acos(SR(2.1)).is_real() 122 - - False 123 - + sage: acos(SR(2.1)) 124 - + 1.37285914424258*I 125 - """ 126 - GinacFunction.__init__(self, 'arccos', latex_name=r"\arccos", 127 - conversions=dict(maxima='acos', sympy='acos', fricas='acos', giac='acos')) 128 - @@ -807,7 +797,7 @@ class Function_arcsec(GinacFunction): 129 - sage: arcsec(2).n(100) 130 - 1.0471975511965977461542144611 131 - sage: arcsec(1/2).n(100) 132 - - NaN 133 - + 1.3169578969248167086250463473*I 134 - sage: RDF(arcsec(2)) # abs tol 1e-15 135 - 1.0471975511965976 136 - sage: arcsec(1 + I) 137 - @@ -958,7 +948,9 @@ class Function_arctan2(GinacFunction): 138 - sage: atan2(0,0,hold=True) 139 - arctan2(0, 0) 140 - sage: atan2(0,0,hold=True).n() 141 - - NaN 142 - + Traceback (most recent call last): 143 - + ... 144 - + RuntimeError: atan2(): division by zero 145 - 146 - Check if :trac:`10062` is fixed, this was caused by 147 - ``(I*I).is_positive()`` returning ``True``:: 148 - diff --git a/src/sage/geometry/hyperbolic_space/hyperbolic_geodesic.py b/src/sage/geometry/hyperbolic_space/hyperbolic_geodesic.py 149 - index 3b5c8d1729..1c6b73a16c 100644 150 - --- a/src/sage/geometry/hyperbolic_space/hyperbolic_geodesic.py 151 - +++ b/src/sage/geometry/hyperbolic_space/hyperbolic_geodesic.py 152 - @@ -1422,8 +1422,10 @@ class HyperbolicGeodesicUHP(HyperbolicGeodesic): 153 - expressions do not generate runtime errors. :: 154 - 155 - sage: g=HyperbolicPlane().UHP().get_geodesic(-1+I,1+I) 156 - - sage: g.midpoint() 157 - - Point in UHP 1/2*(sqrt(2)*e^(1/2*arccosh(3)) - sqrt(2) + (I - 1)*e^(1/2*arccosh(3)) + I - 1)/((1/4*I - 1/4)*sqrt(2)*e^(1/2*arccosh(3)) - (1/4*I - 1/4)*sqrt(2) + 1/2*e^(1/2*arccosh(3)) + 1/2) 158 - + sage: point = g.midpoint(); point 159 - + Point in UHP -1/2*(sqrt(2)*... 160 - + sage: QQbar(point.coordinates()).radical_expression() 161 - + I*sqrt(2) 162 - 163 - Check that floating points remain floating points 164 - in :meth:`midpoint` :: 165 - diff --git a/src/sage/interfaces/fricas.py b/src/sage/interfaces/fricas.py 166 - index 82aae78e37..8501ea2a18 100644 167 - --- a/src/sage/interfaces/fricas.py 168 - +++ b/src/sage/interfaces/fricas.py 169 - @@ -1084,14 +1084,14 @@ class FriCASElement(ExpectElement): 170 - 0.451026811796262, 171 - 0.732815101786507, 172 - 0.837981225008390, 173 - - NaN, 174 - - NaN, 175 - + 1.57079632679490 - 0.467145308103262*I, 176 - + 0.467145308103262*I, 177 - 1.11976951499863, 178 - 0.451026811796262, 179 - 0.732815101786507, 180 - 0.837981225008390, 181 - - NaN, 182 - - NaN] 183 - + 1.57079632679490 - 0.467145308103262*I, 184 - + 0.467145308103262*I] 185 - sage: l = [tanh, sinh, cosh, coth, sech, csch, asinh, acosh, atanh, acoth, asech, acsch, arcsinh, arccosh, arctanh, arccoth, arcsech, arccsch] 186 - sage: [f(x)._fricas_().sage().subs(x=0.9) for f in l] # optional - fricas 187 - [0.716297870199024, 188 - diff --git a/src/sage/libs/pynac/pynac.pyx b/src/sage/libs/pynac/pynac.pyx 189 - index 9e9d8f664b..e3406f007e 100644 190 - --- a/src/sage/libs/pynac/pynac.pyx 191 - +++ b/src/sage/libs/pynac/pynac.pyx 192 - @@ -1824,7 +1824,7 @@ cdef py_atan2(x, y): 193 - sage: atan2(CC(I), CC(I+1)) 194 - 0.553574358897045 + 0.402359478108525*I 195 - sage: atan2(CBF(I), CBF(I+1)) 196 - - [0.55357435889705 +/- 5.58e-15] + [0.402359478108525 +/- 7.11e-16]*I 197 - + [0.55357435889705 +/- ...] + [0.402359478108525 +/- ...]*I 198 - 199 - Check that :trac:`23776` is fixed and RDF input gives real output:: 200 - 201 - diff --git a/src/sage/matrix/matrix_symbolic_dense.pyx b/src/sage/matrix/matrix_symbolic_dense.pyx 202 - index 46a15e53eb..7a0beb437b 100644 203 - --- a/src/sage/matrix/matrix_symbolic_dense.pyx 204 - +++ b/src/sage/matrix/matrix_symbolic_dense.pyx 205 - @@ -200,7 +200,7 @@ cdef class Matrix_symbolic_dense(Matrix_generic_dense): 206 - sage: eval, [evec], mult = es[0] 207 - sage: delta = eval*evec - evec*A 208 - sage: abs(abs(delta)) < 1e-10 209 - - sqrt(9/25*((2*sqrt(6) - 3)*(sqrt(6) - 2) + 7*sqrt(6) - 18)^2 + 9/25*((sqrt(6) - 2)*(sqrt(6) - 4) + 6*sqrt(6) - 14)^2) < (1.00000000000000e-10) 210 - + 3/5*sqrt(((2*sqrt(6) - 3)*(sqrt(6) - 2) + 7*sqrt(6) - 18)^2 + ((sqrt(6) - 2)*(sqrt(6) - 4) + 6*sqrt(6) - 14)^2) < (1.00000000000000e-10) 211 - sage: abs(abs(delta)).n() < 1e-10 212 - True 213 - 214 - diff --git a/src/sage/modules/matrix_morphism.py b/src/sage/modules/matrix_morphism.py 215 - index 17a1d6e290..03892ceec0 100644 216 - --- a/src/sage/modules/matrix_morphism.py 217 - +++ b/src/sage/modules/matrix_morphism.py 218 - @@ -214,9 +214,9 @@ class MatrixMorphism_abstract(sage.categories.morphism.Morphism): 219 - sage: f((1, 0)) 220 - Traceback (most recent call last): 221 - ... 222 - - TypeError: Unable to coerce entries (=[1.00000000000000*I, 0.000000000000000]) to coefficients in Real Field with 53 bits of precision 223 - + TypeError: Unable to coerce entries (=[1.00000000000000*I, 0]) to coefficients in Real Field with 53 bits of precision 224 - sage: f((1, 0), coerce=False) 225 - - (1.00000000000000*I, 0.000000000000000) 226 - + (1.00000000000000*I, 0) 227 - 228 - """ 229 - if self.domain().is_ambient(): 230 - diff --git a/src/sage/plot/plot.py b/src/sage/plot/plot.py 231 - index 77cdeb8c46..e501e74036 100644 232 - --- a/src/sage/plot/plot.py 233 - +++ b/src/sage/plot/plot.py 234 - @@ -2061,7 +2061,7 @@ def _plot(funcs, xrange, parametric=False, 235 - plot properly (:trac:`13246`):: 236 - 237 - sage: parametric_plot((x, arcsec(x)), (x, -2, 2)) 238 - - Graphics object consisting of 1 graphics primitive 239 - + Graphics object consisting of 2 graphics primitives 240 - 241 - """ 242 - from sage.plot.colors import Color 243 - diff --git a/src/sage/repl/display/formatter.py b/src/sage/repl/display/formatter.py 244 - index 8ce2e839d7..948207c95e 100644 245 - --- a/src/sage/repl/display/formatter.py 246 - +++ b/src/sage/repl/display/formatter.py 247 - @@ -25,11 +25,11 @@ generally, all sage expression as an ASCII art object:: 248 - sage: shell = get_test_shell() 249 - sage: shell.run_cell('%display ascii_art') 250 - sage: shell.run_cell('integral(x^2/pi^x, x)') 251 - - / 2 2 \ -x*log(pi) 252 - - -\x *log (pi) + 2*x*log(pi) + 2/*e 253 - - --------------------------------------------- 254 - - 3 255 - - log (pi) 256 - + -x / 2 2 \ 257 - + -pi *\x *log (pi) + 2*x*log(pi) + 2/ 258 - + -------------------------------------- 259 - + 3 260 - + log (pi) 261 - sage: shell.run_cell("i = var('i')") 262 - sage: shell.run_cell('sum(i*x^i, i, 0, 10)') 263 - 10 9 8 7 6 5 4 3 2 264 - diff --git a/src/sage/rings/asymptotic/asymptotics_multivariate_generating_functions.py b/src/sage/rings/asymptotic/asymptotics_multivariate_generating_functions.py 265 - index d8ebbf4f76..8c60f65e99 100644 266 - --- a/src/sage/rings/asymptotic/asymptotics_multivariate_generating_functions.py 267 - +++ b/src/sage/rings/asymptotic/asymptotics_multivariate_generating_functions.py 268 - @@ -151,8 +151,8 @@ A multiple point example (Example 6.5 of [RaWi2012]_):: 269 - [(x + 2*y - 1, 1), (2*x + y - 1, 1)]) 270 - sage: F1 = decomp[1] 271 - sage: F1.asymptotics(p, alpha, 2) 272 - - (-3*((2*a^2 - 5*a*b + 2*b^2)*r^2 + (a + b)*r + 3)*((1/3)^(-a)*(1/3)^(-b))^r, 273 - - (1/3)^(-a)*(1/3)^(-b), -3*(2*a^2 - 5*a*b + 2*b^2)*r^2 - 3*(a + b)*r - 9) 274 - + (-3*((2*a^2 - 5*a*b + 2*b^2)*r^2 + (a + b)*r + 3)*(1/((1/3)^a*(1/3)^b))^r, 275 - + 1/((1/3)^a*(1/3)^b), -3*(2*a^2 - 5*a*b + 2*b^2)*r^2 - 3*(a + b)*r - 9) 276 - sage: alpha = [4, 3] 277 - sage: decomp = F.asymptotic_decomposition(alpha) 278 - sage: F1 = decomp[1] 279 - @@ -2159,7 +2159,7 @@ class FractionWithFactoredDenominator(RingElement): 280 - sage: p = {x: 1/3, y: 1/3} 281 - sage: alpha = (var('a'), var('b')) 282 - sage: F.asymptotics_multiple(p, alpha, 2, var('r')) # long time 283 - - (3*((1/3)^(-a)*(1/3)^(-b))^r*e^(2/3), (1/3)^(-a)*(1/3)^(-b), 3*e^(2/3)) 284 - + (3*(1/((1/3)^a*(1/3)^b))^r*e^(2/3), 1/((1/3)^a*(1/3)^b), 3*e^(2/3)) 285 - """ 286 - from itertools import product 287 - from sage.calculus.functions import jacobian 288 - diff --git a/src/sage/stats/basic_stats.py b/src/sage/stats/basic_stats.py 289 - index 16a268a02c..5fd244e93b 100644 290 - --- a/src/sage/stats/basic_stats.py 291 - +++ b/src/sage/stats/basic_stats.py 292 - @@ -183,7 +183,7 @@ def std(v, bias=False): 293 - sage: std([]) 294 - NaN 295 - sage: std([I, sqrt(2), 3/5]) 296 - - sqrt(1/450*(10*sqrt(2) - 5*I - 3)^2 + 1/450*(5*sqrt(2) - 10*I + 3)^2 + 1/450*(5*sqrt(2) + 5*I - 6)^2) 297 - + 1/15*sqrt(1/2)*sqrt((10*sqrt(2) - 5*I - 3)^2 + (5*sqrt(2) - 10*I + 3)^2 + (5*sqrt(2) + 5*I - 6)^2) 298 - sage: std([RIF(1.0103, 1.0103), RIF(2)]) 299 - 0.6998235813403261? 300 - sage: import numpy 301 - diff --git a/src/sage/symbolic/expression.pyx b/src/sage/symbolic/expression.pyx 302 - index ab4c05de3a..60f0dc549a 100644 303 - --- a/src/sage/symbolic/expression.pyx 304 - +++ b/src/sage/symbolic/expression.pyx 305 - @@ -622,7 +622,7 @@ cdef class Expression(CommutativeRingElement): 306 - sage: x^(-5) 307 - x^(-5) 308 - sage: x^(-y) 309 - - x^(-y) 310 - + 1/(x^y) 311 - sage: 2*x^(-1) 312 - 2/x 313 - sage: i*x 314 - @@ -3621,14 +3621,14 @@ cdef class Expression(CommutativeRingElement): 315 - sage: repl_dict = {b_0: b_0, b_3: b_1, b_2: b_3, b_1: b_2} 316 - sage: P = precomp.substitute(repl_dict) 317 - sage: P.expand() 318 - - -2^(-b_0)*2^(-b_2)*2^b_3 - 2^b_0*2^(-b_2)*2^b_3 - 319 - - 2^(-b_0)*2^b_2*2^b_3 + 2^b_0*2^b_2*2^b_3 - 2*2^(-b_0)*2^(-b_2) 320 - - - 2*2^b_0*2^(-b_2) - 2*2^(-b_0)*2^b_2 + 2*2^b_0*2^b_2 + 321 - - 2^(-b_0)*2^b_3 + 2^b_0*2^b_3 + 2^(-b_2)*2^b_3 + 2^b_2*2^b_3 + 322 - - 2*2^(-b_0) + 2*2^b_0 + 2*2^(-b_2) + 2*2^b_2 - 9*2^b_3 - 323 - - 2^(-b_0)*2^(-b_2)/2^b_3 - 2^b_0*2^(-b_2)/2^b_3 - 324 - - 2^(-b_0)*2^b_2/2^b_3 + 2^b_0*2^b_2/2^b_3 + 2^(-b_0)/2^b_3 + 325 - - 2^b_0/2^b_3 + 2^(-b_2)/2^b_3 + 2^b_2/2^b_3 - 9/2^b_3 - 18 326 - + 2^b_0*2^b_2*2^b_3 + 2*2^b_0*2^b_2 + 2^b_0*2^b_3 + 2^b_2*2^b_3 + 327 - + 2*2^b_0 + 2*2^b_2 - 9*2^b_3 + 2^b_0*2^b_2/2^b_3 - 328 - + 2^b_0*2^b_3/2^b_2 - 2^b_2*2^b_3/2^b_0 - 2*2^b_0/2^b_2 - 329 - + 2*2^b_2/2^b_0 + 2^b_0/2^b_3 + 2^b_2/2^b_3 + 2^b_3/2^b_0 + 330 - + 2^b_3/2^b_2 + 2/2^b_0 + 2/2^b_2 - 2^b_0/(2^b_2*2^b_3) - 331 - + 2^b_2/(2^b_0*2^b_3) - 9/2^b_3 - 2^b_3/(2^b_0*2^b_2) - 332 - + 2/(2^b_0*2^b_2) + 1/(2^b_0*2^b_3) + 1/(2^b_2*2^b_3) - 333 - + 1/(2^b_0*2^b_2*2^b_3) - 18 334 - 335 - sage: _0,b_1,b_2=var('b_0,b_1,b_2') 336 - sage: f = 1/27*b_2^2/(2^b_2)^2 + 1/27*b_1^2/(2^b_1)^2 + \ 337 - @@ -3809,7 +3809,7 @@ cdef class Expression(CommutativeRingElement): 338 - 339 - sage: x = SR.symbol('x', domain='real') 340 - sage: (x^3)^(1/3) 341 - - (x^3)^(1/3) 342 - + x 343 - sage: (x^4)^(1/4) 344 - abs(x) 345 - sage: (x^8)^(1/4) 346 - @@ -3872,7 +3872,7 @@ cdef class Expression(CommutativeRingElement): 347 - sage: 2^(x/log(2)) 348 - e^x 349 - sage: 2^(-x^2/2/log(2)) 350 - - e^(-1/2*x^2) 351 - + 1/e^(1/2*x^2) 352 - sage: x^(x/log(x)) 353 - x^(x/log(x)) 354 - sage: assume(x > 0) 355 - @@ -4816,18 +4816,24 @@ cdef class Expression(CommutativeRingElement): 356 - sage: ((x+y)^(x+y)).match(w0^w0) 357 - {$0: x + y} 358 - sage: t = ((a+b)*(a+c)).match((a+w0)*(a+w1)) 359 - - sage: t[w0], t[w1] 360 - - (c, b) 361 - + sage: set([t[w0], t[w1]]) == set([b, c]) 362 - + True 363 - sage: ((a+b)*(a+c)).match((w0+b)*(w0+c)) 364 - {$0: a} 365 - sage: t = ((a+b)*(a+c)).match((w0+w1)*(w0+w2)) 366 - - sage: t[w0], t[w1], t[w2] 367 - - (a, c, b) 368 - - sage: print(((a+b)*(a+c)).match((w0+w1)*(w1+w2))) 369 - - None 370 - + sage: t[w0] 371 - + a 372 - + sage: set([t[w1], t[w2]]) == set([b, c]) 373 - + True 374 - + sage: t = ((a+b)*(a+c)).match((w0+w1)*(w1+w2)) 375 - + sage: t[w1] 376 - + a 377 - + sage: set([t[w0], t[w2]]) == set([b, c]) 378 - + True 379 - sage: t = (a*(x+y)+a*z+b).match(a*w0+w1) 380 - - sage: t[w0], t[w1] 381 - - (x + y, a*z + b) 382 - + sage: s = set([t[w0], t[w1]]) 383 - + sage: s == set([x+y, a*z+b]) or s == set([z, a*(x+y)+b]) 384 - + True 385 - sage: print((a+b+c+d+f+g).match(c)) 386 - None 387 - sage: (a+b+c+d+f+g).has(c) 388 - @@ -4836,7 +4842,7 @@ cdef class Expression(CommutativeRingElement): 389 - {$0: a + b + d + f + g} 390 - sage: (a+b+c+d+f+g).match(c+g+w0) 391 - {$0: a + b + d + f} 392 - - sage: (a+b).match(a+b+w0) 393 - + sage: (a+b).match(a+b+w0) # known bug 394 - {$0: 0} 395 - sage: print((a*b^2).match(a^w0*b^w1)) 396 - None 397 - @@ -5009,7 +5015,7 @@ cdef class Expression(CommutativeRingElement): 398 - a^3 + b^3 + (x + y)^3 399 - 400 - sage: t.subs(w0 == w0^2) 401 - - (x^2 + y^2)^18 + a^16 + b^16 402 - + a^8 + b^8 + (x^2 + y^2)^6 403 - 404 - sage: t.subs(a == b, b == c) 405 - (x + y)^3 + b^2 + c^2 406 - @@ -8392,9 +8398,13 @@ cdef class Expression(CommutativeRingElement): 407 - sage: SR(I).arctan2(1) 408 - arctan2(I, 1) 409 - sage: SR(CDF(0,1)).arctan2(1) 410 - - NaN + +infinity*I 411 - - sage: SR(1).arctan2(CDF(0,1)) # known bug 412 - - 0.7853981633974484 - 19.012501686914433*I 413 - + Traceback (most recent call last): 414 - + ... 415 - + ValueError: power::eval(): division by zero 416 - + sage: SR(1).arctan2(CDF(0,1)) 417 - + Traceback (most recent call last): 418 - + ... 419 - + ValueError: power::eval(): division by zero 420 - 421 - sage: arctan2(0,oo) 422 - 0 423 - @@ -8656,7 +8666,7 @@ cdef class Expression(CommutativeRingElement): 424 - 1/2*I*pi 425 - sage: SR(1/2).arccosh() 426 - arccosh(1/2) 427 - - sage: SR(CDF(1/2)).arccosh() # rel tol 1e-15 428 - + sage: SR(CDF(1/2)).arccosh() # rel tol 1e-15 429 - 1.0471975511965976*I 430 - sage: maxima('acosh(0.5)') 431 - 1.04719755119659...*%i 432 - @@ -11687,7 +11697,7 @@ cdef class Expression(CommutativeRingElement): 433 - sage: a.solve(t) 434 - [] 435 - sage: b = a.canonicalize_radical(); b 436 - - -23040.0*(-2.0*e^(1800*t) + 25.0*e^(900*t) - 32.0)*e^(-2400*t) 437 - + (46080.0*e^(1800*t) - 576000.0*e^(900*t) + 737280.0)*e^(-2400*t) 438 - sage: b.solve(t) 439 - [] 440 - sage: b.solve(t, to_poly_solve=True) 441 - @@ -12163,14 +12173,14 @@ cdef class Expression(CommutativeRingElement): 442 - 443 - sage: (n,k,j)=var('n,k,j') 444 - sage: sum(binomial(n,k)*binomial(k-1,j)*(-1)**(k-1-j),k,j+1,n) 445 - - -(-1)^(-j)*sum((-1)^k*binomial(k - 1, j)*binomial(n, k), k, j + 1, n) 446 - + -(-1)^j*sum((-1)^k*binomial(k - 1, j)*binomial(n, k), k, j + 1, n) 447 - sage: assume(j>-1) 448 - sage: sum(binomial(n,k)*binomial(k-1,j)*(-1)**(k-1-j),k,j+1,n) 449 - 1 450 - sage: forget() 451 - sage: assume(n>=j) 452 - sage: sum(binomial(n,k)*binomial(k-1,j)*(-1)**(k-1-j),k,j+1,n) 453 - - -(-1)^(-j)*sum((-1)^k*binomial(k - 1, j)*binomial(n, k), k, j + 1, n) 454 - + -(-1)^j*sum((-1)^k*binomial(k - 1, j)*binomial(n, k), k, j + 1, n) 455 - sage: forget() 456 - sage: assume(j==-1) 457 - sage: sum(binomial(n,k)*binomial(k-1,j)*(-1)**(k-1-j),k,j+1,n) 458 - @@ -12178,7 +12188,7 @@ cdef class Expression(CommutativeRingElement): 459 - sage: forget() 460 - sage: assume(j<-1) 461 - sage: sum(binomial(n,k)*binomial(k-1,j)*(-1)**(k-1-j),k,j+1,n) 462 - - -(-1)^(-j)*sum((-1)^k*binomial(k - 1, j)*binomial(n, k), k, j + 1, n) 463 - + -(-1)^j*sum((-1)^k*binomial(k - 1, j)*binomial(n, k), k, j + 1, n) 464 - sage: forget() 465 - 466 - Check that :trac:`16176` is fixed:: 467 - diff --git a/src/sage/symbolic/relation.py b/src/sage/symbolic/relation.py 468 - index da6f0eef42..4bd65ef572 100644 469 - --- a/src/sage/symbolic/relation.py 470 - +++ b/src/sage/symbolic/relation.py 471 - @@ -895,7 +895,7 @@ def solve(f, *args, **kwds): 472 - sage: (r[0][x], r[0][y]) 473 - (2*lambert_w(1/2), 1) 474 - sage: solve(-2*x**3 + 4*x**2 - 2*x + 6 > 0, x, algorithm='sympy') 475 - - [x < (1/6*sqrt(77) + 79/54)^(1/3) + 1/9/(1/6*sqrt(77) + 79/54)^(1/3) + 2/3] 476 - + [x < 1/3*(1/2)^(1/3)*(9*sqrt(77) + 79)^(1/3) + 2/3*(1/2)^(2/3)/(9*sqrt(77) + 79)^(1/3) + 2/3] 477 - sage: solve(sqrt(2*x^2 - 7) - (3 - x),x,algorithm='sympy') 478 - [x == -8, x == 2] 479 - sage: solve(sqrt(2*x + 9) - sqrt(x + 1) - sqrt(x + 4),x,algorithm='sympy')
-40
pkgs/applications/science/math/sage/patches/python3-syntax-without-write.patch
··· 1 - diff --git a/src/sage/tests/py3_syntax.py b/src/sage/tests/py3_syntax.py 2 - index e564860b48..86ab3725f9 100644 3 - --- a/src/sage/tests/py3_syntax.py 4 - +++ b/src/sage/tests/py3_syntax.py 5 - @@ -179,15 +179,30 @@ class Python3SyntaxTest(SortedDirectoryWalkerABC): 6 - sage: py3_syntax = Python3SyntaxTest() 7 - sage: py3_syntax.test(src.name) 8 - Invalid Python 3 syntax found: 9 - - File "...py", line 1 10 - - print "invalid print statement" 11 - - ^ 12 - - SyntaxError: Missing parentheses in call to 'print' 13 - + Missing parentheses in call to 'print'... 14 - sage: os.unlink(src.name) 15 - """ 16 - + 17 - + # compile all given files in memory, printing all errors 18 - + # inspired by the py_compile module (but without writing to file) 19 - + script = """ 20 - +import sys 21 - +import importlib.machinery 22 - +rv = 0 23 - +for file in sys.argv[1:]: 24 - + loader = importlib.machinery.SourceFileLoader('<sage_test>', file) 25 - + source_bytes = loader.get_data(file) 26 - + try: 27 - + code = loader.source_to_code(source_bytes, file) 28 - + except Exception as err: 29 - + print(err) 30 - + rv = 1 31 - +sys.exit(rv) 32 - +""" 33 - cmd = [ 34 - 'python3', 35 - - '-m', 'py_compile' 36 - + '-c', 37 - + script, 38 - ] + list(filenames) 39 - process = subprocess.Popen( 40 - cmd,
-31
pkgs/applications/science/math/sage/patches/sagenb-sphinx-1.7.patch
··· 1 - From 7419e0246230594ebfd5e7a2fe6b80d67abfc98a Mon Sep 17 00:00:00 2001 2 - From: Jeroen Demeyer <jdemeyer@cage.ugent.be> 3 - Date: Tue, 20 Mar 2018 10:40:41 +0100 4 - Subject: Fix sphinxify doctests 5 - 6 - --- 7 - sagenb/misc/sphinxify.py | 6 +++--- 8 - 1 file changed, 3 insertions(+), 3 deletions(-) 9 - 10 - diff --git a/sagenb/misc/sphinxify.py b/sagenb/misc/sphinxify.py 11 - index 4f76d41..15623d9 100644 12 - --- a/sagenb/misc/sphinxify.py 13 - +++ b/sagenb/misc/sphinxify.py 14 - @@ -47,11 +47,11 @@ def sphinxify(docstring, format='html'): 15 - 16 - sage: from sage.misc.sphinxify import sphinxify 17 - sage: sphinxify('A test') 18 - - '...<div class="docstring">\n \n <p>A test</p>\n\n\n</div>' 19 - + '<div class="docstring">\n \n <p>A test</p>\n\n\n</div>' 20 - sage: sphinxify('**Testing**\n`monospace`') 21 - - '...<div class="docstring"...<strong>Testing</strong>\n<span class="math"...</p>\n\n\n</div>' 22 - + '<div class="docstring"...<strong>Testing</strong>\n<span class="math notranslate"...</p>\n\n\n</div>' 23 - sage: sphinxify('`x=y`') 24 - - '...<div class="docstring">\n \n <p><span class="math">x=y</span></p>\n\n\n</div>' 25 - + '<div class="docstring">\n \n <p><span class="math notranslate">x=y</span></p>\n\n\n</div>' 26 - sage: sphinxify('`x=y`', format='text') 27 - 'x=y\n' 28 - sage: sphinxify(':math:`x=y`', format='text') 29 - -- 30 - cgit v1.0-1-gd88e 31 -
+274
pkgs/applications/science/math/sage/patches/singular-4.1.1p2.patch
··· 1 + diff --git a/src/sage/interfaces/singular.py b/src/sage/interfaces/singular.py 2 + index 9d65c9fa6c..a028bbe719 100644 3 + --- a/src/sage/interfaces/singular.py 4 + +++ b/src/sage/interfaces/singular.py 5 + @@ -654,7 +654,7 @@ class Singular(ExtraTabCompletion, Expect): 6 + 7 + s = Expect.eval(self, x, **kwds) 8 + 9 + - if s.find("error") != -1 or s.find("Segment fault") != -1: 10 + + if s.find("error occurred") != -1 or s.find("Segment fault") != -1: 11 + raise SingularError('Singular error:\n%s'%s) 12 + 13 + if get_verbose() > 0: 14 + @@ -1079,7 +1079,7 @@ class Singular(ExtraTabCompletion, Expect): 15 + sage: S = singular.ring('real', '(a,b)', 'lp') 16 + sage: singular.current_ring() 17 + polynomial ring, over a field, global ordering 18 + - // coefficients: float 19 + + // coefficients: Float() 20 + // number of vars : 2 21 + // block 1 : ordering lp 22 + // : names a b 23 + @@ -1157,7 +1157,7 @@ class Singular(ExtraTabCompletion, Expect): 24 + sage: singular._tab_completion() 25 + ['exteriorPower', 26 + ... 27 + - 'flintZ'] 28 + + 'crossprod'] 29 + """ 30 + p = re.compile("// *([a-z0-9A-Z_]*).*") #compiles regular expression 31 + proclist = self.eval("listvar(proc)").splitlines() 32 + @@ -1183,7 +1183,7 @@ class Singular(ExtraTabCompletion, Expect): 33 + EXAMPLES:: 34 + 35 + sage: singular.version() 36 + - "Singular ... version 4.1.0 ... 37 + + "Singular ... version 4... 38 + """ 39 + return singular_version() 40 + 41 + @@ -1562,7 +1562,7 @@ class SingularElement(ExtraTabCompletion, ExpectElement): 42 + elif charstr[0] in ['0', 'QQ']: 43 + from sage.all import QQ 44 + br = QQ 45 + - elif charstr[0]=='real': 46 + + elif charstr[0].startswith('Float'): 47 + from sage.all import RealField, ceil, log 48 + prec = singular.eval('ringlist(basering)[1][2][1]') 49 + br = RealField(ceil((ZZ(prec)+1)/log(2,10))) 50 + @@ -1750,7 +1750,7 @@ class SingularElement(ExtraTabCompletion, ExpectElement): 51 + 52 + # Singular 4 puts parentheses around floats and sign outside them 53 + charstr = self.parent().eval('charstr(basering)').split(',',1) 54 + - if charstr[0] in ['real', 'complex']: 55 + + if charstr[0]=='complex' or charstr[0].startswith('Float'): 56 + for i in range(coeff_start, 2 * coeff_start): 57 + singular_poly_list[i] = singular_poly_list[i].replace('(','').replace(')','') 58 + 59 + @@ -1992,7 +1992,7 @@ class SingularElement(ExtraTabCompletion, ExpectElement): 60 + sage: S = singular.ring('real', '(a,b)', 'lp') 61 + sage: singular.current_ring() 62 + polynomial ring, over a field, global ordering 63 + - // coefficients: float 64 + + // coefficients: Float() 65 + // number of vars : 2 66 + // block 1 : ordering lp 67 + // : names a b 68 + @@ -2072,7 +2072,7 @@ class SingularElement(ExtraTabCompletion, ExpectElement): 69 + sage: R._tab_completion() 70 + ['exteriorPower', 71 + ... 72 + - 'flintZ'] 73 + + 'crossprod'] 74 + """ 75 + return self.parent()._tab_completion() 76 + 77 + @@ -2358,7 +2358,7 @@ def singular_version(): 78 + EXAMPLES:: 79 + 80 + sage: singular.version() 81 + - "Singular ... version 4.1.0 ... 82 + + "Singular ... version 4... 83 + """ 84 + return singular.eval('system("--version");') 85 + 86 + diff --git a/src/sage/libs/singular/decl.pxd b/src/sage/libs/singular/decl.pxd 87 + index 4b658c4807..d863740419 100644 88 + --- a/src/sage/libs/singular/decl.pxd 89 + +++ b/src/sage/libs/singular/decl.pxd 90 + @@ -170,7 +170,7 @@ cdef extern from "singular/Singular/libsingular.h": 91 + 92 + int n_NumberOfParameters(const n_Procs_s* r) 93 + 94 + - ctypedef struct poly "polyrec": 95 + + ctypedef struct poly "spolyrec": 96 + poly *next 97 + number *coef 98 + unsigned long exp[1] 99 + @@ -630,9 +630,13 @@ cdef extern from "singular/Singular/libsingular.h": 100 + # return p*q, destroys p and q 101 + poly *p_Mult_q(poly *p, poly *q, ring *r) 102 + 103 + + # polynomial division, ignoring the rest 104 + + # via singclap_pdivide resp. idLift, destroys p,q 105 + + poly *p_Divide(poly *p, poly *q, ring *r) 106 + + 107 + # divide monomial p by monomial q, p,q const 108 + 109 + - poly *pDivide(poly *p,poly *q) 110 + + poly *pMDivide(poly *p,poly *q) 111 + 112 + # return the i-th power of p; p destroyed, requires global ring 113 + 114 + diff --git a/src/sage/rings/polynomial/multi_polynomial_libsingular.pyx b/src/sage/rings/polynomial/multi_polynomial_libsingular.pyx 115 + index 2a8d9ae021..aeff53af6c 100644 116 + --- a/src/sage/rings/polynomial/multi_polynomial_libsingular.pyx 117 + +++ b/src/sage/rings/polynomial/multi_polynomial_libsingular.pyx 118 + @@ -190,8 +190,8 @@ from sage.libs.singular.decl cimport ( 119 + n_IsUnit, n_Invers, 120 + p_ISet, rChangeCurrRing, p_Copy, p_Init, p_SetCoeff, p_Setm, p_SetExp, p_Add_q, 121 + p_NSet, p_GetCoeff, p_Delete, p_GetExp, pNext, rRingVar, omAlloc0, omStrDup, 122 + - omFree, pDivide, p_SetCoeff0, n_Init, p_DivisibleBy, pLcm, p_LmDivisibleBy, 123 + - pDivide, p_IsConstant, p_ExpVectorEqual, p_String, p_LmInit, n_Copy, 124 + + omFree, pMDivide, p_Divide, p_SetCoeff0, n_Init, p_DivisibleBy, pLcm, p_LmDivisibleBy, 125 + + pMDivide, p_IsConstant, p_ExpVectorEqual, p_String, p_LmInit, n_Copy, 126 + p_IsUnit, p_Series, p_Head, idInit, fast_map_common_subexp, id_Delete, 127 + p_IsHomogeneous, p_Homogen, p_Totaldegree,pLDeg1_Totaldegree, singclap_pdivide, singclap_factorize, 128 + idLift, IDELEMS, On, Off, SW_USE_CHINREM_GCD, SW_USE_EZGCD, 129 + @@ -1693,8 +1693,8 @@ cdef class MPolynomialRing_libsingular(MPolynomialRing_base): 130 + if not g._poly: 131 + raise ZeroDivisionError 132 + 133 + - if r!=currRing: rChangeCurrRing(r) # pDivide 134 + - res = pDivide(f._poly, g._poly) 135 + + if r!=currRing: rChangeCurrRing(r) # pMDivide 136 + + res = pMDivide(f._poly, g._poly) 137 + if coeff: 138 + if r.cf.type == n_unknown or r.cf.cfDivBy(p_GetCoeff(f._poly, r), p_GetCoeff(g._poly, r), r.cf): 139 + n = r.cf.cfDiv( p_GetCoeff(f._poly, r) , p_GetCoeff(g._poly, r), r.cf) 140 + @@ -1853,8 +1853,8 @@ cdef class MPolynomialRing_libsingular(MPolynomialRing_base): 141 + and (<MPolynomial_libsingular>g) \ 142 + and g.parent() is self \ 143 + and p_LmDivisibleBy((<MPolynomial_libsingular>g)._poly, m, r): 144 + - if r!=currRing: rChangeCurrRing(r) # pDivide 145 + - flt = pDivide(f._poly, (<MPolynomial_libsingular>g)._poly) 146 + + if r!=currRing: rChangeCurrRing(r) # pMDivide 147 + + flt = pMDivide(f._poly, (<MPolynomial_libsingular>g)._poly) 148 + #p_SetCoeff(flt, n_Div( p_GetCoeff(f._poly, r) , p_GetCoeff((<MPolynomial_libsingular>g)._poly, r), r), r) 149 + p_SetCoeff(flt, n_Init(1, r), r) 150 + return new_MP(self,flt), g 151 + @@ -4023,16 +4023,6 @@ cdef class MPolynomial_libsingular(MPolynomial): 152 + Traceback (most recent call last): 153 + ... 154 + NotImplementedError: Division of multivariate polynomials over non fields by non-monomials not implemented. 155 + - 156 + - TESTS:: 157 + - 158 + - sage: P.<x,y> = ZZ[] 159 + - sage: p = 3*(-x^8*y^2 - x*y^9 + 6*x^8*y + 17*x^2*y^6 - x^3*y^2) 160 + - sage: q = 7*(x^2 + x*y + y^2 + 1) 161 + - sage: p*q//q == p 162 + - True 163 + - sage: p*q//p == q 164 + - True 165 + """ 166 + cdef MPolynomialRing_libsingular parent = self._parent 167 + cdef ring *r = self._parent_ring 168 + @@ -4052,13 +4042,18 @@ cdef class MPolynomial_libsingular(MPolynomial): 169 + _right = <MPolynomial_libsingular>right 170 + 171 + if r.cf.type != n_unknown: 172 + + if r.cf.type == n_Z: 173 + + P = parent.change_ring(RationalField()) 174 + + f = P(self)//P(right) 175 + + CM = list(f) 176 + + return parent(sum([c.floor()*m for c,m in CM])) 177 + if _right.is_monomial(): 178 + p = _self._poly 179 + quo = p_ISet(0,r) 180 + - if r != currRing: rChangeCurrRing(r) # pDivide 181 + + if r != currRing: rChangeCurrRing(r) # pMDivide 182 + while p: 183 + if p_DivisibleBy(_right._poly, p, r): 184 + - temp = pDivide(p, _right._poly) 185 + + temp = pMDivide(p, _right._poly) 186 + p_SetCoeff0(temp, n_Copy(p_GetCoeff(p, r), r), r) 187 + quo = p_Add_q(quo, temp, r) 188 + p = pNext(p) 189 + @@ -4794,6 +4789,8 @@ cdef class MPolynomial_libsingular(MPolynomial): 190 + sage: p = -x*y + x*z + 54*x - 2 191 + sage: (5*p^2).lcm(3*p) == 15*p^2 192 + True 193 + + sage: lcm(2*x,2*x*y) 194 + + 2*x*y 195 + """ 196 + cdef ring *_ring = self._parent_ring 197 + cdef poly *ret 198 + @@ -4821,9 +4818,7 @@ cdef class MPolynomial_libsingular(MPolynomial): 199 + if _ring!=currRing: rChangeCurrRing(_ring) # singclap_gcd 200 + gcd = singclap_gcd(p_Copy(self._poly, _ring), p_Copy(_g._poly, _ring), _ring ) 201 + prod = pp_Mult_qq(self._poly, _g._poly, _ring) 202 + - ret = singclap_pdivide(prod , gcd , _ring) 203 + - p_Delete(&prod, _ring) 204 + - p_Delete(&gcd, _ring) 205 + + ret = p_Divide(prod, gcd, _ring) 206 + if count >= 20: 207 + sig_off() 208 + return new_MP(self._parent, ret) 209 + @@ -4866,7 +4861,7 @@ cdef class MPolynomial_libsingular(MPolynomial): 210 + sage: f.quo_rem(y) 211 + (2*x^2, x + 1) 212 + sage: f.quo_rem(3*x) 213 + - (2*x*y + 1, -4*x^2*y - 2*x + 1) 214 + + (0, 2*x^2*y + x + 1) 215 + 216 + TESTS:: 217 + 218 + @@ -4888,7 +4883,7 @@ cdef class MPolynomial_libsingular(MPolynomial): 219 + if right.is_zero(): 220 + raise ZeroDivisionError 221 + 222 + - if not self._parent._base.is_field() and not is_IntegerRing(self._parent._base): 223 + + if not self._parent._base.is_field(): 224 + py_quo = self//right 225 + py_rem = self - right*py_quo 226 + return py_quo, py_rem 227 + diff --git a/src/sage/rings/polynomial/plural.pyx b/src/sage/rings/polynomial/plural.pyx 228 + index d5439f7f08..ad20ebcca0 100644 229 + --- a/src/sage/rings/polynomial/plural.pyx 230 + +++ b/src/sage/rings/polynomial/plural.pyx 231 + @@ -998,7 +998,7 @@ cdef class NCPolynomialRing_plural(Ring): 232 + if not g._poly: 233 + raise ZeroDivisionError 234 + 235 + - res = pDivide(f._poly,g._poly) 236 + + res = pMDivide(f._poly,g._poly) 237 + if coeff: 238 + if (r.cf.type == n_unknown) or r.cf.cfDivBy(p_GetCoeff(f._poly, r), p_GetCoeff(g._poly, r), r.cf): 239 + n = r.cf.cfDiv( p_GetCoeff(f._poly, r) , p_GetCoeff(g._poly, r), r.cf) 240 + @@ -1193,7 +1193,7 @@ cdef class NCPolynomialRing_plural(Ring): 241 + if isinstance(g, NCPolynomial_plural) \ 242 + and (<NCPolynomial_plural>g) \ 243 + and p_LmDivisibleBy((<NCPolynomial_plural>g)._poly, m, r): 244 + - flt = pDivide(f._poly, (<NCPolynomial_plural>g)._poly) 245 + + flt = pMDivide(f._poly, (<NCPolynomial_plural>g)._poly) 246 + #p_SetCoeff(flt, n_Div( p_GetCoeff(f._poly, r) , p_GetCoeff((<NCPolynomial_plural>g)._poly, r), r), r) 247 + p_SetCoeff(flt, n_Init(1, r), r) 248 + return new_NCP(self,flt), g 249 + diff --git a/src/sage/rings/polynomial/polynomial_singular_interface.py b/src/sage/rings/polynomial/polynomial_singular_interface.py 250 + index 9331169f8b..f753610fd3 100644 251 + --- a/src/sage/rings/polynomial/polynomial_singular_interface.py 252 + +++ b/src/sage/rings/polynomial/polynomial_singular_interface.py 253 + @@ -81,8 +81,8 @@ class PolynomialRing_singular_repr: 254 + sage: R.<x,y> = PolynomialRing(CC) 255 + sage: singular(R) 256 + polynomial ring, over a field, global ordering 257 + - // coefficients: float[I](complex:15 digits, additional 0 digits)/(I^2+1) 258 + - // number of vars : 2 259 + + // coefficients: real[I](complex:15 digits, additional 0 digits)/(I^2+1) 260 + + // number of vars : 2 261 + // block 1 : ordering dp 262 + // : names x y 263 + // block 2 : ordering C 264 + @@ -90,8 +90,8 @@ class PolynomialRing_singular_repr: 265 + sage: R.<x,y> = PolynomialRing(RealField(100)) 266 + sage: singular(R) 267 + polynomial ring, over a field, global ordering 268 + - // coefficients: float 269 + - // number of vars : 2 270 + + // coefficients: Float() 271 + + // number of vars : 2 272 + // block 1 : ordering dp 273 + // : names x y 274 + // block 2 : ordering C
-62
pkgs/applications/science/math/sage/patches/sphinx-1.7.patch
··· 1 - diff --git a/src/bin/sage b/src/bin/sage 2 - index 397f30cbed..3fc473c343 100755 3 - --- a/src/bin/sage 4 - +++ b/src/bin/sage 5 - @@ -980,8 +980,11 @@ if [ "$1" = '-rsyncdist' -o "$1" = "--rsyncdist" ]; then 6 - fi 7 - 8 - if [ "$1" = "-docbuild" -o "$1" = "--docbuild" ]; then 9 - + # Redirect stdin from /dev/null. This helps with running TeX which 10 - + # tends to ask interactive questions if something goes wrong. These 11 - + # cause the build to hang. If stdin is /dev/null, TeX just aborts. 12 - shift 13 - - exec sage-python23 -m "sage_setup.docbuild" "$@" 14 - + exec sage-python23 -m sage_setup.docbuild "$@" </dev/null 15 - fi 16 - 17 - if [ "$1" = '-gdb' -o "$1" = "--gdb" ]; then 18 - diff --git a/src/doc/common/conf.py b/src/doc/common/conf.py 19 - index 25f94f7b7d..3f07474d9b 100644 20 - --- a/src/doc/common/conf.py 21 - +++ b/src/doc/common/conf.py 22 - @@ -627,7 +627,7 @@ def call_intersphinx(app, env, node, contnode): 23 - sage: for line in open(thematic_index).readlines(): 24 - ....: if "padics" in line: 25 - ....: sys.stdout.write(line) 26 - - <li><a class="reference external" href="../reference/padics/sage/rings/padics/tutorial.html#sage-rings-padics-tutorial" title="(in Sage Reference Manual: p-Adics ...)"><span>Introduction to the -adics</span></a></li> 27 - + <li><a class="reference external" href="../reference/padics/sage/rings/padics/tutorial.html#sage-rings-padics-tutorial" title="(in Sage Reference Manual: p-Adics v...)"><span>Introduction to the -adics</span></a></li> 28 - """ 29 - debug_inf(app, "???? Trying intersphinx for %s"%node['reftarget']) 30 - builder = app.builder 31 - diff --git a/src/sage/misc/sphinxify.py b/src/sage/misc/sphinxify.py 32 - index 4f76d4113a..8f426b5989 100644 33 - --- a/src/sage/misc/sphinxify.py 34 - +++ b/src/sage/misc/sphinxify.py 35 - @@ -47,11 +47,11 @@ def sphinxify(docstring, format='html'): 36 - 37 - sage: from sage.misc.sphinxify import sphinxify 38 - sage: sphinxify('A test') 39 - - '...<div class="docstring">\n \n <p>A test</p>\n\n\n</div>' 40 - + '<div class="docstring">\n \n <p>A test</p>\n\n\n</div>' 41 - sage: sphinxify('**Testing**\n`monospace`') 42 - - '...<div class="docstring"...<strong>Testing</strong>\n<span class="math"...</p>\n\n\n</div>' 43 - + '<div class="docstring"...<strong>Testing</strong>\n<span class="math...</p>\n\n\n</div>' 44 - sage: sphinxify('`x=y`') 45 - - '...<div class="docstring">\n \n <p><span class="math">x=y</span></p>\n\n\n</div>' 46 - + '<div class="docstring">\n \n <p><span class="math notranslate nohighlight">x=y</span></p>\n\n\n</div>' 47 - sage: sphinxify('`x=y`', format='text') 48 - 'x=y\n' 49 - sage: sphinxify(':math:`x=y`', format='text') 50 - diff --git a/src/sage_setup/docbuild/sphinxbuild.py b/src/sage_setup/docbuild/sphinxbuild.py 51 - index fda76a4174..d3413239dd 100644 52 - --- a/src/sage_setup/docbuild/sphinxbuild.py 53 - +++ b/src/sage_setup/docbuild/sphinxbuild.py 54 - @@ -207,7 +207,7 @@ def runsphinx(): 55 - try: 56 - sys.stdout = SageSphinxLogger(sys.stdout, os.path.basename(output_dir)) 57 - sys.stderr = SageSphinxLogger(sys.stderr, os.path.basename(output_dir)) 58 - - sphinx.cmdline.main(sys.argv) 59 - + sphinx.cmdline.main(sys.argv[1:]) 60 - finally: 61 - sys.stdout = saved_stdout 62 - sys.stderr = saved_stderr
+46
pkgs/applications/science/math/sage/patches/spkg-scripts.patch
··· 1 + commit f02714d4aea80e17cb8df62bab75d7c1a1b61a8e 2 + Author: Timo Kaufmann <timokau@zoho.com> 3 + Date: Mon Jul 9 18:26:18 2018 +0200 4 + 5 + Don't attempt to create dirs when showing pkg info 6 + 7 + The script dir cannot be assumed to be writeable after installation. 8 + 9 + diff --git a/build/bin/sage-spkg b/build/bin/sage-spkg 10 + index f3e02aeae5..190d558ad1 100755 11 + --- a/build/bin/sage-spkg 12 + +++ b/build/bin/sage-spkg 13 + @@ -167,14 +167,6 @@ if [ -z "$SAGE_BUILD_DIR" ]; then 14 + export SAGE_BUILD_DIR="$SAGE_LOCAL/var/tmp/sage/build" 15 + fi 16 + 17 + -for dir in "$SAGE_SPKG_INST" "$SAGE_SPKG_SCRIPTS"; do 18 + - mkdir -p "$dir" 19 + - if [ $? -ne 0 ]; then 20 + - error_msg "Error creating directory $dir" 21 + - exit 1 22 + - fi 23 + -done 24 + - 25 + 26 + # Remove '.' from PYTHONPATH, which may also come from SAGE_PATH, to avoid 27 + # trouble with setuptools / easy_install (cf. #10192, #10176): 28 + @@ -563,11 +555,13 @@ fi 29 + # Setup directories 30 + ################################################################## 31 + 32 + -mkdir -p "$SAGE_BUILD_DIR" 33 + -if [ $? -ne 0 ]; then 34 + - error_msg "Error creating directory $SAGE_BUILD_DIR" 35 + - exit 1 36 + -fi 37 + +for dir in "$SAGE_SPKG_INST" "$SAGE_SPKG_SCRIPTS" "$SAGE_BUILD_DIR"; do 38 + + mkdir -p "$dir" 39 + + if [ $? -ne 0 ]; then 40 + + error_msg "Error creating directory $dir" 41 + + exit 1 42 + + fi 43 + +done 44 + 45 + # Trac #5852: check write permissions 46 + if [ ! -w "$SAGE_BUILD_DIR" ]; then
-13
pkgs/applications/science/math/sage/patches/zn_poly_version.patch
··· 1 - diff --git a/src/sage/misc/package.py b/src/sage/misc/package.py 2 - index 7ff4f21675..1d72168833 100644 3 - --- a/src/sage/misc/package.py 4 - +++ b/src/sage/misc/package.py 5 - @@ -350,7 +350,7 @@ def package_versions(package_type, local=False): 6 - sage: 'gap' in std 7 - True 8 - sage: std['zn_poly'] 9 - - ('0.9.p11', '0.9.p11') 10 - + ('0.9', '0.9.p11') 11 - """ 12 - return {pkg['name']: (pkg['installed_version'], pkg['remote_version']) for pkg in list_packages(package_type, local=local).values()} 13 -
+42 -95
pkgs/applications/science/math/sage/sage-src.nix
··· 3 3 , fetchpatch 4 4 }: 5 5 stdenv.mkDerivation rec { 6 - version = "8.2"; 6 + version = "8.3"; 7 7 name = "sage-src-${version}"; 8 8 9 9 src = fetchFromGitHub { 10 10 owner = "sagemath"; 11 11 repo = "sage"; 12 12 rev = version; 13 - sha256 = "0d7vc16s7dj23an2cb8v5bhbnc6nsw20qhnnxr0xh8qg629027b8"; 13 + sha256 = "0mbm99m5xry21xpi4q3q96gx392liwbifywf5awvl0j85a7rkfyx"; 14 14 }; 15 15 16 16 nixPatches = [ 17 + # https://trac.sagemath.org/ticket/25809 18 + ./patches/spkg-scripts.patch 19 + 17 20 # https://trac.sagemath.org/ticket/25309 18 21 (fetchpatch { 19 22 name = "spkg-paths.patch"; ··· 26 29 sha256 = "14s50yg3hpw9cp3v581dx7zfmpm2j972im7x30iwki8k45mjvk3i"; 27 30 }) 28 31 29 - # https://trac.sagemath.org/ticket/25328 30 - # https://trac.sagemath.org/ticket/25546 31 32 # https://trac.sagemath.org/ticket/25722 32 - (fetchpatch { 33 - name = "install-jupyter-kernel-in-correct-prefix.patch"; 34 - url = "https://git.sagemath.org/sage.git/patch?id=72167b98e3f64326df6b2c78785df25539472fcc"; 35 - sha256 = "0pscnjhm7r2yr2rxnv4kkkq626vwaja720lixa3m3w9rwlxll5a7"; 36 - }) 37 33 ./patches/test-in-tmpdir.patch 38 34 39 35 # https://trac.sagemath.org/ticket/25358 ··· 43 39 sha256 = "1hhannz7xzprijakn2w2d0rhd5zv2zikik9p51i87bas3nc658f7"; 44 40 }) 45 41 46 - # https://trac.sagemath.org/ticket/25357 rebased on 8.2 47 - ./patches/python3-syntax-without-write.patch 48 - 49 - # https://trac.sagemath.org/ticket/25314 50 - (fetchpatch { 51 - name = "make-qepcad-test-optional.patch"; 52 - url = "https://git.sagemath.org/sage.git/patch/?h=fe294c58bd035ef427e268901d54a6faa0058138"; 53 - sha256 = "003d5baf5c0n5rfg010ijwkwz8kg0s414cxwczs2vhdayxdixbix"; 54 - }) 55 - 42 + # Unfortunately inclusion in upstream sage was rejected. Instead the bug was 43 + # fixed in python, but of course not backported to 2.7. So we'll probably 44 + # have to keep this around until 2.7 is deprecated. 56 45 # https://trac.sagemath.org/ticket/25316 46 + # https://github.com/python/cpython/pull/7476 57 47 ./patches/python-5755-hotpatch.patch 58 48 59 - # https://trac.sagemath.org/ticket/25354 60 - # https://trac.sagemath.org/ticket/25531 61 - (fetchpatch { 62 - name = "cysignals-include.patch"; 63 - url = "https://git.sagemath.org/sage.git/patch/?h=28778bd25a37c80884d2b24e0683fb2989300cef"; 64 - sha256 = "0fiiiw91pgs8avm9ggj8hb64bhqzl6jcw094d94nhirmh8w2jmc5"; 65 - }) 66 - 67 49 # https://trac.sagemath.org/ticket/25315 68 50 (fetchpatch { 69 51 name = "find-libraries-in-dyld-library-path.patch"; ··· 71 53 sha256 = "1k3afq3qlzmgqwx6rzs5wv153vv9dsf5rk8pi61g57l3r3npbjmc"; 72 54 }) 73 55 74 - # Pari upstream has since accepted a patch, so this patch won't be necessary once sage updates pari. 75 - # https://trac.sagemath.org/ticket/25312 76 - ./patches/pari-stackwarn.patch 77 - 78 - # https://trac.sagemath.org/ticket/25311 79 - ./patches/zn_poly_version.patch 80 - 81 56 # https://trac.sagemath.org/ticket/25345 82 57 # (upstream patch doesn't apply on 8.2 source) 83 58 ./patches/dochtml-optional.patch 59 + 60 + # work with pari with threads enabled at compile time (disable them at runtime) 61 + # https://trac.sagemath.org/ticket/26002 62 + ./patches/pari-no-threads.patch 84 63 ]; 85 64 86 65 packageUpgradePatches = [ ··· 106 85 # the last version. 107 86 ./patches/eclib-regulator-precision.patch 108 87 109 - # sphinx 1.6 -> 1.7 upgrade 110 - # https://trac.sagemath.org/ticket/24935 111 - ./patches/sphinx-1.7.patch 112 - 113 - # Adapt hashes to new boost version 114 - # https://trac.sagemath.org/ticket/22243 115 - # (this ticket doesn't only upgrade boost but also avoids this problem in the future) 116 - (fetchpatch { 117 - name = "boost-upgrade.patch"; 118 - url = "https://git.sagemath.org/sage.git/patch?id=a24a9c6b30b93957333a3116196214a931325b69"; 119 - sha256 = "0z3870g2ms2a81vnw08dc2i4k7jr62w8fggvcdwaavgd1wvdxwfl"; 120 - }) 121 - 122 - # gfan 0.6.2 123 - # https://trac.sagemath.org/ticket/23353 124 - (fetchpatch { 125 - name = "gfan-update.patch"; 126 - url = "https://git.sagemath.org/sage.git/patch/?h=420215fc469cde733ec7a339e59b78ad6eec804c&id=112498a293ea2bf563e41aed35f1aa608f01b349"; 127 - sha256 = "0ga3hkx8cr23dpc919lgvpi5lmy0d728jkq9z6kf0fl9s8g31mxb"; 128 - }) 129 - 130 88 # New glpk version has new warnings, filter those out until upstream sage has found a solution 131 89 # https://trac.sagemath.org/ticket/24824 90 + ./patches/pari-stackwarn.patch # not actually necessary since tha pari upgrade, but necessary for the glpk patch to apply 132 91 (fetchpatch { 133 92 url = "https://salsa.debian.org/science-team/sagemath/raw/58bbba93a807ca2933ca317501d093a1bb4b84db/debian/patches/dt-version-glpk-4.65-ignore-warnings.patch"; 134 93 sha256 = "0b9293v73wb4x13wv5zwyjgclc01zn16msccfzzi6znswklgvddp"; 135 94 stripLen = 1; 136 95 }) 137 96 138 - # https://trac.sagemath.org/ticket/25329 139 - (fetchpatch { 140 - name = "dont-check-exact-glpk-version.patch"; 141 - url = "https://git.sagemath.org/sage.git/patch?id2=8bdc326ba57d1bb9664f63cf165a9e9920cc1afc&id=89d068d8d77316bfffa6bf8e9ebf70b3b3b88e5c"; 142 - sha256 = "00knwxs6fmymfgfl0q5kcavmxm9sf90a4r76y35n5s55gj8pl918"; 143 - }) 97 + # Only formatting changes. 98 + # https://trac.sagemath.org/ticket/25260 99 + ./patches/numpy-1.14.3.patch 144 100 145 - # https://trac.sagemath.org/ticket/25355 146 - (fetchpatch { 147 - name = "maxima-5.41.0.patch"; 148 - url = "https://git.sagemath.org/sage.git/patch/?id=87328023c4739abdf24108038201e3fa9bdfc739"; 149 - sha256 = "0hxi7qr5mfx1bc32r8j7iba4gzd7c6v63asylyf5cbyp86azpb7i"; 150 - }) 101 + # https://trac.sagemath.org/ticket/25862 102 + ./patches/eclib-20180710.patch 151 103 152 - # Update cddlib from 0.94g to 0.94h. 153 - # https://trac.sagemath.org/ticket/25341 (doesn't apply to 8.2 sources) 104 + # https://trac.sagemath.org/ticket/24735 105 + ./patches/singular-4.1.1p2.patch 106 + 107 + # https://trac.sagemath.org/ticket/25567 and dependency #25635 154 108 (fetchpatch { 155 - url = "https://salsa.debian.org/science-team/sagemath/raw/58bbba93a807ca2933ca317501d093a1bb4b84db/debian/patches/u2-version-cddlib-094h.patch"; 156 - sha256 = "0fmw7pzbaxs2dshky6iw9pr8i23p9ih2y2lw661qypdrxh5xw03k"; 157 - stripLen = 1; 109 + name = "pari-upgrade-dependency.patch"; 110 + url = "https://git.sagemath.org/sage.git/patch/?id=6995e7cae1b3476ad0145f8dfc897cf91f0c3c4d"; 111 + sha256 = "1dvhabl1c9pwd9xkjvbjjg15mvb14b24p1f3cby1mlqk34d4lrs6"; 158 112 }) 159 113 (fetchpatch { 160 - name = "revert-cddlib-doctest-changes.patch"; 161 - url = "https://git.sagemath.org/sage.git/patch/?id=269c1e1551285566b8ba7a2b890989e5590e9f11"; 162 - sha256 = "12bcjhq7hm2pmmj2bgjvcffjyls2x7q61ivlnaj5v5bsvhc183iy"; 163 - revert = true; 114 + name = "pari-2.11.0.patch"; 115 + url = "https://git.sagemath.org/sage.git/patch/?id=7af4748cab37d651eaa88be501db88f4a5ffc584"; 116 + sha256 = "13f740ly3c19gcmhjngiycvmc3mcfj61y00i6jv0wmfgpm2z3ank"; 164 117 }) 165 118 166 - 167 - # Only formatting changes. 168 - # https://trac.sagemath.org/ticket/25260 169 - ./patches/numpy-1.14.3.patch 170 - 171 - # https://trac.sagemath.org/ticket/24374 119 + # ntl upgrade 172 120 (fetchpatch { 173 - name = "networkx-2.1.patch"; 174 - url = "https://salsa.debian.org/science-team/sagemath/raw/487df9ae48ca1d93d9b1cb3af8745d31e30fb741/debian/patches/u0-version-networkx-2.1.patch"; 175 - sha256 = "1xxxawygbgxgvlv7b4w8hhzgdnva4rhmgdxaiaa3pwdwln0yc750"; 176 - stripLen = 1; 121 + name = "lcalc-c++11.patch"; 122 + url = "https://git.archlinux.org/svntogit/community.git/plain/trunk/sagemath-lcalc-c++11.patch?h=packages/sagemath&id=0e31ae526ab7c6b5c0bfacb3f8b1c4fd490035aa"; 123 + sha256 = "0p5wnvbx65i7cp0bjyaqgp4rly8xgnk12pqwaq3dqby0j2bk6ijb"; 177 124 }) 178 125 179 - # https://trac.sagemath.org/ticket/24927 rebased 180 - ./patches/arb-2.13.0.patch 126 + # cddlib 0.94i -> 0.94j 127 + (fetchpatch { 128 + name = "cddlib-0.94j.patch"; 129 + url = "https://git.sagemath.org/sage.git/patch/?id=2ab1546b3e21d1d0ab3b4fcd58576848b3a2d888"; 130 + sha256 = "1c5gnasq7y9xxj762bn79bis0zi8d9bgg7jzlf64ifixsrc5cymb"; 131 + }) 132 + ]; 181 133 182 - # https://trac.sagemath.org/ticket/24838 rebased 183 - ./patches/pynac-0.7.22.patch 184 - 185 - # https://trac.sagemath.org/ticket/25862 186 - ./patches/eclib-20180710.patch 134 + patches = nixPatches ++ packageUpgradePatches ++ [ 135 + ./patches/known-padics-bug.patch 187 136 ]; 188 - 189 - patches = nixPatches ++ packageUpgradePatches; 190 137 191 138 postPatch = '' 192 139 # make sure shebangs etc are fixed, but sage-python23 still works
+3 -3
pkgs/applications/science/math/scilab-bin/default.nix
··· 3 3 let 4 4 name = "scilab-bin-${ver}"; 5 5 6 - ver = "5.5.2"; 6 + ver = "6.0.1"; 7 7 8 8 majorVer = builtins.elemAt (lib.splitString "." ver) 0; 9 9 ··· 24 24 url = "https://www.scilab.org/download/${ver}/scilab-${ver}.bin.linux-${architecture}.tar.gz"; 25 25 sha256 = 26 26 if stdenv.system == "i686-linux" then 27 - "6143a95ded40411a35630a89b365875a6526cd4db1e2865ac5612929a7db937a" 27 + "0fgjc2ak3b2qi6yin3fy50qwk2bcj0zbz1h4lyyic9n1n1qcliib" 28 28 else if stdenv.system == "x86_64-linux" then 29 - "c0dd7a5f06ec7a1df7a6b1b8b14407ff7f45e56821dff9b3c46bd09d4df8d350" 29 + "1scswlznc14vyzg0gqa1q9gcpwx05kz1sbn563463mzkdp7nd35d" 30 30 else 31 31 badArch; 32 32 };
+13
pkgs/applications/science/math/singular/default.nix
··· 1 1 { stdenv, fetchurl, gmp, bison, perl, ncurses, readline, coreutils, pkgconfig 2 2 , lib 3 + , fetchpatch 3 4 , autoreconfHook 4 5 , file 5 6 , flint ··· 35 36 postUnpack = '' 36 37 patchShebangs . 37 38 ''; 39 + 40 + patches = [ 41 + # NTL error handler was introduced in the library part, preventing users of 42 + # the library from implementing their own error handling 43 + # https://www.singular.uni-kl.de/forum/viewtopic.php?t=2769 44 + (fetchpatch { 45 + name = "move_error_handler_out_of_libsingular.patch"; 46 + # rebased version of https://github.com/Singular/Sources/commit/502cf86d0bb2a96715be6764774b64a69c1ca34c.patch 47 + url = "https://git.sagemath.org/sage.git/plain/build/pkgs/singular/patches/singular-ntl-error-handler.patch?h=50b9ae2fd233c30860e1cbb3e63a26f2cc10560a"; 48 + sha256 = "0vgh4m9zn1kjl0br68n04j4nmn5i1igfn28cph0chnwf7dvr9194"; 49 + }) 50 + ]; 38 51 39 52 # For reference (last checked on commit 75f460d): 40 53 # https://github.com/Singular/Sources/blob/spielwiese/doc/Building-Singular-from-source.md
+32 -13
pkgs/applications/video/mpv/default.nix
··· 1 - { stdenv, fetchurl, fetchFromGitHub, makeWrapper 1 + { stdenv, fetchpatch, fetchurl, fetchFromGitHub, makeWrapper 2 2 , docutils, perl, pkgconfig, python3, which, ffmpeg_4 3 3 , freefont_ttf, freetype, libass, libpthreadstubs 4 4 , lua, luasocket, libuchardet, libiconv ? null, darwin ··· 35 35 , youtubeSupport ? true, youtube-dl ? null 36 36 , vaapiSupport ? true, libva ? null 37 37 , drmSupport ? true, libdrm ? null 38 - , openalSupport ? true, openalSoft ? null 38 + , openalSupport ? false, openalSoft ? null 39 39 , vapoursynthSupport ? false, vapoursynth ? null 40 40 , archiveSupport ? false, libarchive ? null 41 41 , jackaudioSupport ? false, libjack2 ? null ··· 93 93 sha256 = "0i2nl65diqsjyz28dj07h6d8gq6ix72ysfm0nhs8514hqccaihs3"; 94 94 }; 95 95 96 + # FIXME: Remove this patch for building on macOS if it gets released in 97 + # the future. 98 + patches = optional stdenv.isDarwin (fetchpatch { 99 + url = https://github.com/mpv-player/mpv/commit/dc553c8cf4349b2ab5d2a373ad2fac8bdd229ebb.patch; 100 + sha256 = "0pa8vlb8rsxvd1s39c4iv7gbaqlkn3hx21a6xnpij99jdjkw3pg8"; 101 + }); 102 + 96 103 postPatch = '' 97 104 patchShebangs ./TOOLS/ 98 105 ''; ··· 107 114 "--disable-libmpv-static" 108 115 "--disable-static-build" 109 116 "--disable-build-date" # Purity 117 + "--disable-macos-cocoa-cb" # Disable whilst Swift isn't supported 110 118 (enableFeature archiveSupport "libarchive") 111 119 (enableFeature dvdreadSupport "dvdread") 112 120 (enableFeature dvdnavSupport "dvdnav") ··· 143 151 ++ optional speexSupport speex 144 152 ++ optional bs2bSupport libbs2b 145 153 ++ optional openalSupport openalSoft 146 - ++ optional (openalSupport && stdenv.isDarwin) darwin.apple_sdk.frameworks.OpenAL 147 154 ++ optional libpngSupport libpng 148 155 ++ optional youtubeSupport youtube-dl 149 156 ++ optional sdl2Support SDL2 ··· 152 159 ++ optional drmSupport libdrm 153 160 ++ optional vapoursynthSupport vapoursynth 154 161 ++ optional archiveSupport libarchive 162 + ++ optional stdenv.isDarwin libiconv 155 163 ++ optionals dvdnavSupport [ libdvdnav libdvdnav.libdvdread ] 156 164 ++ optionals x11Support [ libX11 libXext libGLU_combined libXxf86vm libXrandr ] 157 165 ++ optionals waylandSupport [ wayland wayland-protocols libxkbcommon ] 158 166 ++ optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [ 159 - CoreFoundation libiconv Cocoa CoreAudio 167 + CoreFoundation Cocoa CoreAudio 160 168 ]); 161 169 162 170 enableParallelBuilding = true; 163 171 164 172 buildPhase = '' 165 173 python3 ${waf} build 174 + '' + optionalString stdenv.isDarwin '' 175 + python3 TOOLS/osxbundle.py -s build/mpv 166 176 ''; 167 177 168 - installPhase = 178 + # Ensure youtube-dl is available in $PATH for mpv 179 + wrapperFlags = 169 180 let 170 181 getPath = type : "${luasocket}/lib/lua/${lua.luaversion}/?.${type};" + 171 182 "${luasocket}/share/lua/${lua.luaversion}/?.${type}"; ··· 173 184 luaCPath = getPath "so"; 174 185 in 175 186 '' 176 - python3 ${waf} install 177 - 178 - # Use a standard font 179 - mkdir -p $out/share/mpv 180 - ln -s ${freefont_ttf}/share/fonts/truetype/FreeSans.ttf $out/share/mpv/subfont.ttf 181 - # Ensure youtube-dl is available in $PATH for MPV 182 - wrapProgram $out/bin/mpv \ 183 187 --prefix LUA_PATH : "${luaPath}" \ 184 188 --prefix LUA_CPATH : "${luaCPath}" \ 185 189 '' + optionalString youtubeSupport '' 186 190 --prefix PATH : "${youtube-dl}/bin" \ 187 191 '' + optionalString vapoursynthSupport '' 188 192 --prefix PYTHONPATH : "${vapoursynth}/lib/${python3.libPrefix}/site-packages:$PYTHONPATH" 189 - '' + '' 193 + ''; 194 + 195 + installPhase = '' 196 + python3 ${waf} install 197 + 198 + # Use a standard font 199 + mkdir -p $out/share/mpv 200 + ln -s ${freefont_ttf}/share/fonts/truetype/FreeSans.ttf $out/share/mpv/subfont.ttf 201 + wrapProgram "$out/bin/mpv" \ 202 + ${wrapperFlags} 190 203 191 204 cp TOOLS/umpv $out/bin 192 205 wrapProgram $out/bin/umpv \ 193 206 --set MPV "$out/bin/mpv" 207 + 208 + '' + optionalString stdenv.isDarwin '' 209 + mkdir -p $out/Applications 210 + cp -r build/mpv.app $out/Applications 211 + wrapProgram "$out/Applications/mpv.app/Contents/MacOS/mpv" \ 212 + ${wrapperFlags} 194 213 ''; 195 214 196 215 meta = with stdenv.lib; {
+86
pkgs/applications/video/plex-media-player/default.nix
··· 1 + { stdenv, fetchFromGitHub, fetchurl, makeDesktopItem, pkgconfig, cmake, python3 2 + , libX11, libXrandr, qtbase, qtwebchannel, qtwebengine, qtx11extras 3 + , libvdpau, SDL2, mpv, libGL }: 4 + let 5 + # During compilation, a CMake bundle is downloaded from `artifacts.plex.tv`, 6 + # which then downloads a handful of web client-related files. To enable 7 + # sandboxed builds, we manually download them and save them so these files 8 + # are fetched ahead-of-time instead of during the CMake build. Whenever 9 + # plex-media-player is updated, the versions for these files are changed, 10 + # so the build IDs (and SHAs) below will need to be updated! 11 + depSrcs = rec { 12 + webClientBuildId = "56-23317d81e49651"; 13 + webClientDesktopBuildId = "3.57.1-1e49651"; 14 + webClientTvBuildId = "3.60.1-23317d8"; 15 + 16 + webClient = fetchurl { 17 + url = "https://artifacts.plex.tv/web-client-pmp/${webClientBuildId}/buildid.cmake"; 18 + sha256 = "1a48a65zzdx347kfnxriwkb0yjlhvn2g8jkda5pz10r3lwja0gbi"; 19 + }; 20 + webClientDesktopHash = fetchurl { 21 + url = "https://artifacts.plex.tv/web-client-pmp/${webClientBuildId}/web-client-desktop-${webClientDesktopBuildId}.tar.xz.sha1"; 22 + sha256 = "04wdgpsh33y8hyjhjrfw6ymf9g002jny7hvhld4xp33lwxhd2j5w"; 23 + }; 24 + webClientDesktop = fetchurl { 25 + url = "https://artifacts.plex.tv/web-client-pmp/${webClientBuildId}/web-client-desktop-${webClientDesktopBuildId}.tar.xz"; 26 + sha256 = "1asw9f84z9sm3w7ifnc7j631j84rgx23c6msmn2dnw48ckv3bj2z"; 27 + }; 28 + webClientTvHash = fetchurl { 29 + url = "https://artifacts.plex.tv/web-client-pmp/${webClientBuildId}/web-client-tv-${webClientTvBuildId}.tar.xz.sha1"; 30 + sha256 = "0d1hsvmpwczwx442f8qdvfr8c3w84630j9qwpg2y4qm423sgdvja"; 31 + }; 32 + webClientTv = fetchurl { 33 + url = "https://artifacts.plex.tv/web-client-pmp/${webClientBuildId}/web-client-tv-${webClientTvBuildId}.tar.xz"; 34 + sha256 = "1ih3l5paf1jl68b1xq3iqqmvs3m07fybz57hcz4f78v0gwq2kryq"; 35 + }; 36 + }; 37 + in stdenv.mkDerivation rec { 38 + name = "plex-media-player-${version}"; 39 + version = "2.14.1.880"; 40 + vsnHash = "301a4b6c"; 41 + 42 + src = fetchFromGitHub { 43 + owner = "plexinc"; 44 + repo = "plex-media-player"; 45 + rev = "v${version}-${vsnHash}"; 46 + sha256 = "0xz41r697vl6s3qvy6jwriv3pb9cfy61j6sydvdq121x5a0jnh9a"; 47 + }; 48 + 49 + nativeBuildInputs = [ pkgconfig cmake python3 ]; 50 + buildInputs = [ libX11 libXrandr qtbase qtwebchannel qtwebengine qtx11extras 51 + libvdpau SDL2 mpv libGL ]; 52 + 53 + desktopItem = makeDesktopItem { 54 + name = "plex-media-player"; 55 + exec = "plexmediaplayer"; 56 + icon = "plex-media-player"; 57 + comment = "View your media"; 58 + desktopName = "Plex Media Player"; 59 + genericName = "Media Player"; 60 + categories = "AudioVideo;Video;Player;TV;"; 61 + }; 62 + 63 + preConfigure = with depSrcs; '' 64 + mkdir -p build/dependencies 65 + ln -s ${webClient} build/dependencies/buildid-${webClientBuildId}.cmake 66 + ln -s ${webClientDesktopHash} build/dependencies/web-client-desktop-${webClientDesktopBuildId}.tar.xz.sha1 67 + ln -s ${webClientDesktop} build/dependencies/web-client-desktop-${webClientDesktopBuildId}.tar.xz 68 + ln -s ${webClientTvHash} build/dependencies/web-client-tv-${webClientTvBuildId}.tar.xz.sha1 69 + ln -s ${webClientTv} build/dependencies/web-client-tv-${webClientTvBuildId}.tar.xz 70 + ''; 71 + 72 + postInstall = '' 73 + mkdir -p $out/share/{applications,pixmaps} 74 + cp ${src}/resources/images/icon.png $out/share/pixmaps/plex-media-player.png 75 + cp ${desktopItem}/share/applications/* $out/share/applications 76 + ''; 77 + 78 + cmakeFlags = [ "-DCMAKE_BUILD_TYPE=RelWithDebInfo" "-DQTROOT=${qtbase}" ]; 79 + 80 + meta = with stdenv.lib; { 81 + description = "Streaming media player for Plex"; 82 + license = licenses.gpl2; 83 + maintainers = with maintainers; [ kylewlacy ]; 84 + homepage = https://plex.tv; 85 + }; 86 + }
+4 -10
pkgs/applications/video/shotcut/default.nix
··· 1 1 { stdenv, fetchFromGitHub, SDL2, frei0r, gettext, mlt, jack1, pkgconfig, qtbase 2 2 , qtmultimedia, qtwebkit, qtx11extras, qtwebsockets, qtquickcontrols 3 3 , qtgraphicaleffects, libmlt 4 - , qmake, makeWrapper, fetchpatch, qttools }: 4 + , qmake, makeWrapper, qttools }: 5 5 6 6 assert stdenv.lib.versionAtLeast libmlt.version "6.8.0"; 7 7 assert stdenv.lib.versionAtLeast mlt.version "6.8.0"; 8 8 9 9 stdenv.mkDerivation rec { 10 10 name = "shotcut-${version}"; 11 - version = "18.06.02"; 11 + version = "18.08"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "mltframework"; 15 15 repo = "shotcut"; 16 16 rev = "v${version}"; 17 - sha256 = "1pqpgsb8ix1akq326chf46vvl5h02dwmdskskf2n6impygsy4x7v"; 17 + sha256 = "1p2s4avm3bl5ippmgfzkkbb2w0xs4vhk2wbcd22g7bh1zq9w190n"; 18 18 }; 19 19 20 20 enableParallelBuilding = true; ··· 26 26 ]; 27 27 28 28 NIX_CFLAGS_COMPILE = "-I${libmlt}/include/mlt++ -I${libmlt}/include/mlt"; 29 - qmakeFlags = [ "QMAKE_LRELEASE=${stdenv.lib.getDev qttools}/bin/lrelease" ]; 29 + qmakeFlags = [ "QMAKE_LRELEASE=${stdenv.lib.getDev qttools}/bin/lrelease" "SHOTCUT_VERSION=${version}" ]; 30 30 31 31 prePatch = '' 32 32 sed 's_shotcutPath, "qmelt"_"${mlt}/bin/melt"_' -i src/jobs/meltjob.cpp ··· 34 34 NICE=$(type -P nice) 35 35 sed "s_/usr/bin/nice_''${NICE}_" -i src/jobs/meltjob.cpp src/jobs/ffmpegjob.cpp 36 36 ''; 37 - 38 - patches = [ (fetchpatch { 39 - url = https://github.com/mltframework/shotcut/commit/f304b7403cc7beb57b1610afd9c5c8173749e80b.patch; 40 - name = "qt511.patch"; 41 - sha256 = "1ynvyjchcb33a33x4w1ddnah2gyzmnm125ailgg6xy60lqsnsmp9"; 42 - } ) ]; 43 37 44 38 postInstall = '' 45 39 mkdir -p $out/share/shotcut
+25
pkgs/data/fonts/inter-ui/default.nix
··· 1 + { stdenv, fetchzip }: 2 + 3 + let 4 + version = "2.5"; 5 + in fetchzip { 6 + name = "inter-ui-${version}"; 7 + 8 + url = "https://github.com/rsms/inter/releases/download/v${version}/Inter-UI-${version}.zip"; 9 + 10 + postFetch = '' 11 + mkdir -p $out/share/fonts/opentype 12 + unzip -j $downloadedFile \*.otf -d $out/share/fonts/opentype 13 + ''; 14 + 15 + sha256 = "1d88y6c9vbjz5siazhavnpfpazfkvpbcbb4pdycbnj03mmx6y07v"; 16 + 17 + meta = with stdenv.lib; { 18 + homepage = https://rsms.me/inter/; 19 + description = "A typeface specially designed for user interfaces"; 20 + license = licenses.ofl; 21 + platforms = platforms.all; 22 + maintainers = with maintainers; [ demize ]; 23 + }; 24 + } 25 +
-8
pkgs/data/fonts/tex-gyre/default.nix
··· 34 34 }; 35 35 in stdenv.lib.mapAttrs mkVariant { 36 36 adventor = { 37 - displayName = "Adventor"; 38 37 version = "2_501"; 39 38 sha256 = "0qjg3x0adfppyx3x33cm07ww9i9sl88xaq07m7wfip8rmyp567fn"; 40 39 outputHash = "117h6f02m1r54b4f1a98q5kkjchl5pv9ibm1jla6xrzhk2pchb27"; 41 40 abbreviation = "qag"; 42 41 }; 43 42 bonum = { 44 - displayName = "Bonum"; 45 43 version = "2.004"; 46 44 sha256 = "0qbrs98knx4h0b297c5n3vav4mkal1a95ai2dzmdc10pghfzl8vv"; 47 45 outputHash = "0bid8gzwz50ylmm8jyqf9s4nfvy6cp1x34wbyrh4gyk1ki6hf3z1"; 48 46 abbreviation = "qbk"; 49 47 }; 50 48 chorus = { 51 - displayName = "Chorus"; 52 49 version = "2.003"; 53 50 sha256 = "1b0zak27fzmapwbf2jasvsd95vhnqyc92n985d1lc1ivwja1zgfa"; 54 51 outputHash = "0fqifd45c1ys6y98b66lmldfbv7wjb2414fs9swicv4n7xvl3cp1"; 55 52 abbreviation = "qzc"; 56 53 }; 57 54 cursor = { 58 - displayName = "Cursor"; 59 55 version = "2.004"; 60 56 sha256 = "0ck3jm33bk2xsxp5d2irzd3j24zb49f0gnjvd1nikg1ivk8w85ng"; 61 57 outputHash = "0i76835xqlkrnlx303mx63m0f4899j056c2ag2fl6p9qk8s4rskp"; 62 58 abbreviation = "qcr"; 63 59 }; 64 60 heros = { 65 - displayName = "Heros"; 66 61 version = "2.004"; 67 62 sha256 = "1fj2srxxf6ap913y5yd3dn4jzg828j7381gifs39nm5lnzmgw78y"; 68 63 outputHash = "16y76ab46fxm9k8wfmwx4w0cl96yrmjywz587lyr08s0agp1v3kf"; 69 64 abbreviation = "qhv"; 70 65 }; 71 66 pagella = { 72 - displayName = "Pagella"; 73 67 version ="2_501"; 74 68 sha256 = "1kccaxs3vk93la2pz4nv05hx1x3diyla49cz4l33zifdcp2zgg9d"; 75 69 outputHash = "1nnjsgplimh29502pkd19rvfg93x31svxxmx4x7h51njrx1j8qa8"; 76 70 abbreviation = "qpl"; 77 71 }; 78 72 schola = { 79 - displayName = "Schola"; 80 73 version = "2.005"; 81 74 sha256 = "05z3gk4mm0sa7wwjcv31j2xlzqhwhcncpamn0kn9y0221cdknyp8"; 82 75 outputHash = "1yqq1ngcylhldrh1v35l439k72szq9m4gx6g0wh235fk65chb2bm"; 83 76 abbreviation = "qcs"; 84 77 }; 85 78 termes = { 86 - displayName = "Termes"; 87 79 version = "2.004"; 88 80 sha256 = "1aq3yqbgkc3z20dkcqyhicsyq0afbgg4l397z96sd8a16jyz2x8k"; 89 81 outputHash = "1igw821m601h8937pix6yish4d8fxmz3h4j9hripf41bxsiafzzg";
+47
pkgs/desktops/gnome-3/apps/gnome-todo/default.nix
··· 1 + { stdenv, fetchurl, meson, ninja, pkgconfig, wrapGAppsHook 2 + , gettext, gnome3, glib, gtk, libpeas 3 + , gnome-online-accounts, gsettings-desktop-schemas 4 + , evolution-data-server, libxml2, libsoup, libical, rest, json-glib }: 5 + 6 + let 7 + pname = "gnome-todo"; 8 + version = "3.28.1"; 9 + in stdenv.mkDerivation rec { 10 + name = "${pname}-${version}"; 11 + 12 + src = fetchurl { 13 + url = "mirror://gnome/sources/${pname}/${gnome3.versionBranch version}/${name}.tar.xz"; 14 + sha256 = "08ygqbib72jlf9y0a16k54zz51sncpq2wa18wp81v46q8301ymy7"; 15 + }; 16 + 17 + nativeBuildInputs = [ 18 + meson ninja pkgconfig gettext wrapGAppsHook 19 + ]; 20 + buildInputs = [ 21 + glib gtk libpeas gnome-online-accounts 22 + gsettings-desktop-schemas gnome3.defaultIconTheme 23 + # Plug-ins 24 + evolution-data-server libxml2 libsoup libical 25 + rest json-glib 26 + ]; 27 + 28 + postPatch = '' 29 + chmod +x meson_post_install.py 30 + patchShebangs meson_post_install.py 31 + ''; 32 + 33 + passthru = { 34 + updateScript = gnome3.updateScript { 35 + packageName = pname; 36 + attrPath = "gnome3.${pname}"; 37 + }; 38 + }; 39 + 40 + meta = with stdenv.lib; { 41 + description = "Personal task manager for GNOME"; 42 + homepage = https://wiki.gnome.org/Apps/Todo; 43 + license = licenses.gpl3Plus; 44 + maintainers = gnome3.maintainers; 45 + platforms = platforms.linux; 46 + }; 47 + }
+1
pkgs/desktops/gnome-3/core/gdm/default.nix
··· 21 21 "--sysconfdir=/etc" 22 22 "--localstatedir=/var" 23 23 "--with-plymouth=yes" 24 + "--enable-gdm-xsession" 24 25 "--with-initial-vt=7" 25 26 "--with-systemdsystemunitdir=$(out)/etc/systemd/system" 26 27 ];
+11 -4
pkgs/desktops/gnome-3/core/gnome-session/default.nix
··· 1 - { fetchurl, stdenv, meson, ninja, pkgconfig, gnome3, glib, gtk, gsettings-desktop-schemas 1 + { fetchurl, stdenv, substituteAll, meson, ninja, pkgconfig, gnome3, glib, gtk, gsettings-desktop-schemas 2 2 , gnome-desktop, dbus, json-glib, libICE, xmlto, docbook_xsl, docbook_xml_dtd_412 3 3 , libxslt, gettext, makeWrapper, systemd, xorg, epoxy }: 4 4 ··· 11 11 sha256 = "14nmbirgrp2nm16khbz109saqdlinlbrlhjnbjydpnrlimfgg4xq"; 12 12 }; 13 13 14 + patches = [ 15 + (substituteAll { 16 + src = ./fix-paths.patch; 17 + # FIXME: glib binaries shouldn't be in .dev! 18 + gsettings = "${glib.dev}/bin/gsettings"; 19 + dbusLaunch = "${dbus.lib}/bin/dbus-launch"; 20 + }) 21 + ]; 22 + 14 23 mesonFlags = [ "-Dsystemd=true" ]; 15 24 16 25 nativeBuildInputs = [ ··· 29 38 patchShebangs meson_post_install.py 30 39 ''; 31 40 32 - # FIXME: glib binaries shouldn't be in .dev! 33 41 preFixup = '' 34 42 for desktopFile in $(grep -rl "Exec=gnome-session" $out/share) 35 43 do 36 44 echo "Patching gnome-session path in: $desktopFile" 37 - sed -i "s,^Exec=gnome-session,Exec=$out/bin/gnome-session," $desktopFile 45 + sed -i "s,Exec=gnome-session,Exec=$out/bin/gnome-session," $desktopFile 38 46 done 39 47 wrapProgram "$out/bin/gnome-session" \ 40 - --prefix PATH : "${glib.dev}/bin" \ 41 48 --prefix GI_TYPELIB_PATH : "$GI_TYPELIB_PATH" \ 42 49 --suffix XDG_DATA_DIRS : "$out/share:$GSETTINGS_SCHEMAS_PATH" \ 43 50 --suffix XDG_DATA_DIRS : "${gnome3.gnome-shell}/share"\
+22
pkgs/desktops/gnome-3/core/gnome-session/fix-paths.patch
··· 1 + --- a/gnome-session/gnome-session.in 2 + +++ b/gnome-session/gnome-session.in 3 + @@ -13,7 +13,7 @@ 4 + fi 5 + fi 6 + 7 + -SETTING=$(gsettings get org.gnome.system.locale region) 8 + +SETTING=$(@gsettings@ get org.gnome.system.locale region) 9 + REGION=${SETTING#\'} 10 + REGION=${REGION%\'} 11 + 12 + --- a/gnome-session/main.c 13 + +++ b/gnome-session/main.c 14 + @@ -203,7 +203,7 @@ 15 + } 16 + new_argv[i + 2] = NULL; 17 + 18 + - if (!execvp ("dbus-launch", new_argv)) { 19 + + if (!execvp ("@dbusLaunch@", new_argv)) { 20 + g_set_error (error, 21 + G_SPAWN_ERROR, 22 + G_SPAWN_ERROR_FAILED,
+3 -1
pkgs/desktops/gnome-3/default.nix
··· 30 30 nautilus-sendto dconf-editor vinagre gnome-weather gnome-logs 31 31 gnome-maps gnome-characters gnome-calendar accerciser gnome-nettool 32 32 gnome-getting-started-docs gnome-packagekit gnome-software 33 - gnome-power-manager gnome-usage 33 + gnome-power-manager gnome-todo gnome-usage 34 34 ]; 35 35 36 36 gamesPackages = with gnome3; [ swell-foop lightsoff iagno ··· 290 290 gnome-power-manager = callPackage ./apps/gnome-power-manager { }; 291 291 292 292 gnome-sound-recorder = callPackage ./apps/gnome-sound-recorder { }; 293 + 294 + gnome-todo = callPackage ./apps/gnome-todo {}; 293 295 294 296 gnome-weather = callPackage ./apps/gnome-weather { }; 295 297
+16
pkgs/desktops/gnome-3/misc/gpaste/default.nix
··· 10 10 sha256 = "1zfx73qpw976hyzp5k569lywsq2b6dbnnzf2cvhjvn3mvkw8pin2"; 11 11 }; 12 12 13 + patches = [ 14 + ./fix-paths.patch 15 + ]; 16 + 17 + # TODO: switch to substituteAll with placeholder 18 + # https://github.com/NixOS/nix/issues/1846 19 + # https://github.com/NixOS/nixpkgs/pull/37693 20 + postPatch = '' 21 + substituteInPlace src/gnome-shell/extension.js \ 22 + --subst-var-by typelibPath "$out/lib/girepository-1.0" 23 + substituteInPlace src/gnome-shell/prefs.js \ 24 + --subst-var-by typelibPath "$out/lib/girepository-1.0" 25 + substituteInPlace src/libgpaste/settings/gpaste-settings.c \ 26 + --subst-var-by gschemasCompiled "$out/share/gsettings-schemas/${name}/glib-2.0/schemas" 27 + ''; 28 + 13 29 nativeBuildInputs = [ autoreconfHook pkgconfig vala wrapGAppsHook ]; 14 30 buildInputs = [ glib gjs mutter gnome3.adwaita-icon-theme 15 31 gtk3 gnome3.gnome-control-center dbus
+55
pkgs/desktops/gnome-3/misc/gpaste/fix-paths.patch
··· 1 + --- a/src/gnome-shell/extension.js 2 + +++ b/src/gnome-shell/extension.js 3 + @@ -7,6 +7,8 @@ 4 + 5 + const Config = imports.misc.config; 6 + 7 + +imports.gi.GIRepository.Repository.prepend_search_path('@typelibPath@'); 8 + + 9 + imports.gi.versions.Clutter = Config.LIBMUTTER_API_VERSION; 10 + imports.gi.versions.GLib = '2.0'; 11 + imports.gi.versions.GPaste = '1.0'; 12 + --- a/src/gnome-shell/prefs.js 13 + +++ b/src/gnome-shell/prefs.js 14 + @@ -7,6 +7,8 @@ 15 + 16 + const Gettext = imports.gettext; 17 + 18 + +imports.gi.GIRepository.Repository.prepend_search_path('@typelibPath@'); 19 + + 20 + const GPaste = imports.gi.GPaste; 21 + 22 + const ExtensionUtils = imports.misc.extensionUtils; 23 + --- a/src/libgpaste/settings/gpaste-settings.c 24 + +++ b/src/libgpaste/settings/gpaste-settings.c 25 + @@ -22,6 +22,8 @@ 26 + 27 + typedef struct 28 + { 29 + + GSettingsSchemaSource *schema_source; 30 + + GSettingsSchema *schema; 31 + GSettings *settings; 32 + GSettings *shell_settings; 33 + 34 + @@ -919,6 +921,8 @@ 35 + { 36 + g_signal_handler_disconnect (settings, priv->c_signals[C_CHANGED]); 37 + g_clear_object (&priv->settings); 38 + + g_settings_schema_unref (priv->schema); 39 + + g_settings_schema_source_unref (priv->schema_source); 40 + } 41 + 42 + if (shell_settings) 43 + @@ -1000,7 +1004,11 @@ 44 + g_paste_settings_init (GPasteSettings *self) 45 + { 46 + GPasteSettingsPrivate *priv = g_paste_settings_get_instance_private (self); 47 + - GSettings *settings = priv->settings = g_settings_new (G_PASTE_SETTINGS_NAME); 48 + + 49 + + // library used by introspection requires schemas but we cannot set XDG_DATA_DIRS for the library 50 + + GSettingsSchemaSource *schema_source = priv->schema_source = g_settings_schema_source_new_from_directory ("@gschemasCompiled@", NULL, FALSE, NULL); 51 + + priv->schema = g_settings_schema_source_lookup (schema_source, G_PASTE_SETTINGS_NAME, FALSE); 52 + + GSettings *settings = priv->settings = g_settings_new_full (priv->schema, NULL, NULL); 53 + 54 + priv->history_name = NULL; 55 + priv->launch_ui = NULL;
+2 -2
pkgs/desktops/xfce/art/xfce4-icon-theme.nix
··· 1 - { stdenv, fetchurl, pkgconfig, intltool, gtk }: 1 + { stdenv, fetchurl, pkgconfig, intltool, gtk2 }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 p_name = "xfce4-icon-theme"; ··· 12 12 name = "${p_name}-${ver_maj}.${ver_min}"; 13 13 14 14 nativeBuildInputs = [ pkgconfig ]; 15 - buildInputs = [ intltool gtk ]; 15 + buildInputs = [ intltool gtk2 ]; 16 16 17 17 meta = { 18 18 homepage = http://www.xfce.org/;
+2 -2
pkgs/desktops/xfce/panel-plugins/xfce4-embed-plugin.nix
··· 1 - { stdenv, fetchurl, pkgconfig, intltool, libxfce4util, xfce4-panel, libxfce4ui, libxfcegui4, xfconf, gtk}: 1 + { stdenv, fetchurl, pkgconfig, intltool, libxfce4util, xfce4-panel, libxfce4ui, xfconf, gtk2 }: 2 2 3 3 with stdenv.lib; 4 4 stdenv.mkDerivation rec { ··· 13 13 name = "${p_name}-${ver_maj}.${ver_min}"; 14 14 15 15 nativeBuildInputs = [ pkgconfig ]; 16 - buildInputs = [ intltool libxfce4util libxfce4ui xfce4-panel libxfcegui4 xfconf gtk ]; 16 + buildInputs = [ intltool libxfce4util libxfce4ui xfce4-panel xfconf gtk2 ]; 17 17 18 18 meta = { 19 19 homepage = "http://goodies.xfce.org/projects/panel-plugins/${p_name}";
+20
pkgs/desktops/xfce4-13/default.nix
··· 92 92 xfce4-xkb-plugin = callPackage ./xfce4-xkb-plugin { }; 93 93 94 94 xfwm4 = callPackage ./xfwm4 { }; 95 + 96 + ## COMMON PARTS WITH XFCE 4.12 97 + 98 + gtk-xfce-engine = callPackage ../xfce/core/gtk-xfce-engine.nix { withGtk3 = false; }; 99 + 100 + xfce4-icon-theme = callPackage ../xfce/art/xfce4-icon-theme.nix { }; 101 + 102 + xfwm4-themes = callPackage ../xfce/art/xfwm4-themes.nix { }; 103 + 104 + xfce4-embed-plugin = callPackage ../xfce/panel-plugins/xfce4-embed-plugin.nix { }; 105 + 106 + xfce4-hardware-monitor-plugin = callPackage ../xfce/panel-plugins/xfce4-hardware-monitor-plugin.nix { }; 107 + 108 + ## THIRD PARTY PLIGINS 109 + 110 + xfce4-dockbarx-plugin = callPackage ../xfce/panel-plugins/xfce4-dockbarx-plugin.nix { }; 111 + 112 + xfce4-namebar-plugin = callPackage ../xfce/panel-plugins/xfce4-namebar-plugin.nix { }; 113 + 114 + xfce4-windowck-plugin = callPackage ../xfce/panel-plugins/xfce4-windowck-plugin.nix { }; 95 115 })
+2 -2
pkgs/desktops/xfce4-13/xfburn/default.nix
··· 1 - { mkXfceDerivation, docbook_xsl, exo, gtk2, libburn, libICE, libisofs, libSM, libxfce4ui, libxslt }: 1 + { mkXfceDerivation, docbook_xsl, exo, gtk2, libburn, libisofs, libxfce4ui, libxslt }: 2 2 3 3 mkXfceDerivation rec { 4 4 category = "apps"; ··· 14 14 sha256 = "1lmv48vqrlap1a2ha72g16vqly18zvcwj8y3f3f00l10pmn52bkp"; 15 15 16 16 nativeBuildInputs = [ libxslt ]; 17 - buildInputs = [ exo gtk2 libburn libICE libisofs libSM libxfce4ui ]; 17 + buildInputs = [ exo gtk2 libburn libisofs libxfce4ui ]; 18 18 }
+1 -6
pkgs/desktops/xfce4-13/xfce4-mixer/default.nix
··· 1 - { mkXfceDerivation, automakeAddFlags, dbus-glib, gst-plugins-base, gtk2 2 - , libICE, libSM, libunique, libxfce4ui, libxfce4util, xfce4-panel, xfconf }: 1 + { mkXfceDerivation, automakeAddFlags, dbus-glib, gtk2, libxfce4ui, libxfce4util, xfce4-panel, xfconf }: 3 2 4 3 mkXfceDerivation rec { 5 4 category = "apps"; ··· 17 16 18 17 buildInputs = [ 19 18 dbus-glib 20 - gst-plugins-base 21 19 gtk2 22 - libICE 23 - libSM 24 - libunique 25 20 libxfce4ui 26 21 libxfce4util 27 22 xfce4-panel
+7 -6
pkgs/development/compilers/compcert/default.nix
··· 1 - { stdenv, lib, fetchurl 1 + { stdenv, lib, fetchurl, fetchpatch 2 2 , coq, ocamlPackages 3 3 , tools ? stdenv.cc 4 4 }: ··· 7 7 8 8 stdenv.mkDerivation rec { 9 9 name = "compcert-${version}"; 10 - version = "3.2"; 10 + version = "3.3"; 11 11 12 12 src = fetchurl { 13 13 url = "http://compcert.inria.fr/release/${name}.tgz"; 14 - sha256 = "11q4121s0rxva63njjwya7syfx9w0p4hzr6avh8s57vfbrcakc93"; 14 + sha256 = "16xrqcwak1v1fk5ndx6jf1yvxv3adsr7p7z34gfm2mpggxnq0xwn"; 15 15 }; 16 16 17 17 buildInputs = [ coq ] ··· 19 19 20 20 enableParallelBuilding = true; 21 21 22 - postPatch = '' 23 - sed -i -e 's/8\.6\.1|8\.7\.0|8\.7\.1)/8.6.1|8.7.0|8.7.1|8.7.2)/' configure 24 - ''; 22 + patches = [ (fetchpatch { 23 + url = "https://github.com/AbsInt/CompCert/commit/679ecfeaa24c0615fa1999e9582bf2af6a9f35e7.patch"; 24 + sha256 = "04yrn6dp57aw6lmlr4yssjlx9cxix0mlmaw7gfhwyz5bzqc2za1a"; 25 + })]; 25 26 26 27 configurePhase = '' 27 28 substituteInPlace ./configure --replace '{toolprefix}gcc' '{toolprefix}cc'
+3 -4
pkgs/development/compilers/llvm/5/llvm.nix
··· 79 79 "-DLLVM_ENABLE_RTTI=ON" 80 80 81 81 "-DLLVM_HOST_TRIPLE=${stdenv.hostPlatform.config}" 82 - "-DLLVM_DEFAULT_TARGET_TRIPLE=${stdenv.targetPlatform.config}" 83 - "-DTARGET_TRIPLE=${stdenv.targetPlatform.config}" 82 + "-DLLVM_DEFAULT_TARGET_TRIPLE=${stdenv.hostPlatform.config}" 83 + "-DTARGET_TRIPLE=${stdenv.hostPlatform.config}" 84 84 ] 85 85 ++ stdenv.lib.optional enableSharedLibraries 86 86 "-DLLVM_LINK_LLVM_DYLIB=ON" ··· 129 129 ln -s $lib/lib/libLLVM.dylib $lib/lib/libLLVM-${release_version}.dylib 130 130 ''; 131 131 132 - doCheck = stdenv.isLinux && (!stdenv.isi686) 133 - && (stdenv.hostPlatform == stdenv.targetPlatform); 132 + doCheck = stdenv.isLinux && (!stdenv.isi686); 134 133 135 134 checkTarget = "check-all"; 136 135
+3 -4
pkgs/development/compilers/llvm/6/llvm.nix
··· 75 75 "-DLLVM_ENABLE_RTTI=ON" 76 76 77 77 "-DLLVM_HOST_TRIPLE=${stdenv.hostPlatform.config}" 78 - "-DLLVM_DEFAULT_TARGET_TRIPLE=${stdenv.targetPlatform.config}" 79 - "-DTARGET_TRIPLE=${stdenv.targetPlatform.config}" 78 + "-DLLVM_DEFAULT_TARGET_TRIPLE=${stdenv.hostPlatform.config}" 79 + "-DTARGET_TRIPLE=${stdenv.hostPlatform.config}" 80 80 81 81 "-DLLVM_ENABLE_DUMP=ON" 82 82 ] ··· 130 130 ln -s $lib/lib/libLLVM.dylib $lib/lib/libLLVM-${release_version}.dylib 131 131 ''; 132 132 133 - doCheck = stdenv.isLinux && (!stdenv.isi686) 134 - && (stdenv.hostPlatform == stdenv.targetPlatform); 133 + doCheck = stdenv.isLinux && (!stdenv.isi686); 135 134 136 135 checkTarget = "check-all"; 137 136
-21
pkgs/development/compilers/pakcs/adjust-buildsystem.patch
··· 1 - diff -Naur pakcs-1.11.4-upstream/scripts/pakcs.sh pakcs-1.11.4/scripts/pakcs.sh 2 - --- pakcs-1.11.4-upstream/scripts/pakcs.sh 2014-10-24 05:06:07.000000000 -0430 3 - +++ pakcs-1.11.4/scripts/pakcs.sh 2015-01-05 16:26:15.697982791 -0430 4 - @@ -16,7 +16,7 @@ 5 - # use readline wrapper rlwrap if it is installed and we have tty as stdin: 6 - USERLWRAP=no 7 - if tty -s ; then 8 - - RLWRAP=`which rlwrap` 9 - + RLWRAP=`type -P rlwrap` 10 - if [ -x "$RLWRAP" ] ; then 11 - USERLWRAP=yes 12 - fi 13 - @@ -29,7 +29,7 @@ 14 - done 15 - 16 - if [ $USERLWRAP = yes ] ; then 17 - - exec rlwrap -c -f "$PAKCSHOME/tools/rlwrap" "$REPL" ${1+"$@"} 18 - + exec rlwrap -a -c -f "$PAKCSHOME/tools/rlwrap" "$REPL" ${1+"$@"} 19 - else 20 - exec "$REPL" ${1+"$@"} 21 - fi
-19
pkgs/development/compilers/pakcs/case-insensitive.patch
··· 1 - --- www/Makefile.orig 2016-10-10 21:04:36.000000000 +0300 2 - +++ pakcs-1.14.0/www/Makefile 2016-10-10 21:07:56.000000000 +0300 3 - @@ -6,7 +6,7 @@ all: submitform Registry 4 - submitform: SubmitForm.curry $(LIBDIR)/HtmlCgi.curry \ 5 - $(LIBDIR)/NamedSocket.curry $(LIBDIR)/CPNS.curry 6 - $(REPL) $(REPL_OPTS) :load SubmitForm :save :q 7 - - mv SubmitForm submitform 8 - + mv SubmitForm submitform.orig && mv submitform.orig submitform 9 - 10 - Registry: Registry.curry $(LIBDIR)/HtmlCgi.curry 11 - $(REPL) $(REPL_OPTS) :load Registry :save :q 12 - --- currytools/erd2curry/Makefile.orig 2016-10-10 21:13:49.000000000 +0300 13 - +++ pakcs-1.14.0/currytools/erd2curry/Makefile 2016-10-10 21:21:14.000000000 +0300 14 - @@ -32,4 +32,4 @@ uninstall: clean 15 - erd2curry: $(DEPS) 16 - # create saved state for top-level function "main": 17 - $(REPL) $(REPL_OPTS) :load ERD2Curry :save "main \"$(CURDIR)\"" :q 18 - - mv ERD2Curry $@ 19 - + mv ERD2Curry $@.orig && mv $@.orig $@
+16
pkgs/development/compilers/pakcs/curry-base.nix
··· 1 + { mkDerivation, base, Cabal, containers, directory, extra, filepath 2 + , mtl, parsec, pretty, stdenv, time, transformers 3 + }: 4 + mkDerivation { 5 + pname = "curry-base"; 6 + version = "1.0.0"; 7 + src = ./.; 8 + libraryHaskellDepends = [ 9 + base containers directory extra filepath mtl parsec pretty time 10 + transformers 11 + ]; 12 + testHaskellDepends = [ base Cabal filepath mtl ]; 13 + homepage = "http://curry-language.org"; 14 + description = "Functions for manipulating Curry programs"; 15 + license = stdenv.lib.licenses.bsd3; 16 + }
+24
pkgs/development/compilers/pakcs/curry-frontend.nix
··· 1 + { mkDerivation, base, Cabal, containers, curry-base, directory 2 + , extra, filepath, mtl, network-uri, pretty, process, set-extra 3 + , stdenv, transformers 4 + }: 5 + mkDerivation { 6 + pname = "curry-frontend"; 7 + version = "1.0.2"; 8 + src = ./.; 9 + isLibrary = true; 10 + isExecutable = true; 11 + enableSeparateDataOutput = true; 12 + libraryHaskellDepends = [ 13 + base containers curry-base directory extra filepath mtl network-uri 14 + pretty process set-extra transformers 15 + ]; 16 + executableHaskellDepends = [ 17 + base containers curry-base directory extra filepath mtl network-uri 18 + pretty process set-extra transformers 19 + ]; 20 + testHaskellDepends = [ base Cabal curry-base filepath ]; 21 + homepage = "http://curry-language.org"; 22 + description = "Compile the functional logic language Curry to several intermediate formats"; 23 + license = stdenv.lib.licenses.bsd3; 24 + }
+48 -115
pkgs/development/compilers/pakcs/default.nix
··· 1 - { stdenv, fetchurl, swiProlog, haskellPackages 2 - , glibcLocales, makeWrapper, rlwrap, tk, which }: 1 + { stdenv, fetchurl, makeWrapper 2 + , haskellPackages, haskell 3 + , which, swiProlog, rlwrap, tk 4 + , curl, git, unzip, gnutar, coreutils, sqlite }: 3 5 4 6 let 5 - fname = "pakcs-1.14.0"; 7 + name = "pakcs-2.0.2"; 6 8 7 - fsrc = fetchurl { 8 - url = "https://www.informatik.uni-kiel.de/~pakcs/download/${fname}-src.tar.gz"; 9 - sha256 = "1651ssh4ql79x8asd7kp4yis2n5rhn3lml4s26y03b0cgbfhs78s"; 9 + src = fetchurl { 10 + url = "https://www.informatik.uni-kiel.de/~pakcs/download/${name}-src.tar.gz"; 11 + sha256 = "0fdzw2zz5vs6z20jn6a8jfvpr6dp7fs1rr01cy0xjnzg2mgmn42a"; 10 12 }; 11 13 12 - swiPrologLocked = stdenv.lib.overrideDerivation swiProlog (oldAttrs: rec { 13 - version = "6.6.6"; 14 - name = "swi-prolog-${version}"; 15 - src = fetchurl { 16 - url = "http://www.swi-prolog.org/download/stable/src/pl-${version}.tar.gz"; 17 - sha256 = "0vcrfskm2hyhv30lxr6v261myb815jc3bgmcn1lgsc9g9qkvp04z"; 14 + curry-frontend = (haskellPackages.override { 15 + overrides = self: super: { 16 + curry-base = haskell.lib.overrideCabal (super.callPackage ./curry-base.nix {}) (drv: { 17 + inherit src; 18 + postUnpack = "sourceRoot+=/frontend/curry-base"; 19 + }); 20 + curry-frontend = haskell.lib.overrideCabal (super.callPackage ./curry-frontend.nix {}) (drv: { 21 + inherit src; 22 + postUnpack = "sourceRoot+=/frontend/curry-frontend"; 23 + }); 18 24 }; 19 - }); 20 - 21 - in 22 - stdenv.mkDerivation rec { 23 - 24 - name = fname; 25 - 26 - curryBase = haskellPackages.callPackage ( 27 - { mkDerivation, base, Cabal, containers, directory, either 28 - , filepath, mtl, pretty, syb, time 29 - }: 30 - mkDerivation { 31 - pname = "curry-base"; 32 - version = "0.4.1"; 33 - src = fsrc; 34 - libraryHaskellDepends = [ 35 - base containers directory either filepath mtl pretty syb time 36 - ]; 37 - testHaskellDepends = [ base Cabal filepath mtl ]; 38 - homepage = http://curry-language.org; 39 - description = "Functions for manipulating Curry programs"; 40 - license = "unknown"; 25 + }).curry-frontend; 26 + in stdenv.mkDerivation { 27 + inherit name src; 41 28 42 - postUnpack = '' 43 - mv ${name} ${name}.orig 44 - ln -s ${name}.orig/frontend/curry-base ${name} 45 - ''; 46 - doCheck = false; 47 - } 48 - ) {}; 29 + buildInputs = [ swiProlog ]; 30 + nativeBuildInputs = [ which makeWrapper ]; 49 31 50 - curryFront = haskellPackages.callPackage ( 51 - { mkDerivation, base, Cabal, containers, directory 52 - , filepath, mtl, network-uri, process, syb, transformers 53 - }: 54 - mkDerivation { 55 - pname = "curry-frontend"; 56 - version = "0.4.1"; 57 - src = fsrc; 58 - isLibrary = true; 59 - isExecutable = true; 60 - libraryHaskellDepends = [ 61 - base containers curryBase directory filepath mtl network-uri 62 - process syb transformers 63 - ]; 64 - executableHaskellDepends = [ 65 - base containers curryBase directory filepath mtl network-uri 66 - process syb transformers 67 - ]; 68 - testHaskellDepends = [ base Cabal curryBase filepath ]; 69 - homepage = http://curry-language.org; 70 - description = "Compile the functional logic language Curry to several intermediate formats"; 71 - license = "unknown"; 72 - 73 - postUnpack = '' 74 - mv ${name} ${name}.orig 75 - ln -s ${name}.orig/frontend/curry-frontend ${name} 76 - ''; 77 - doCheck = false; 78 - } 79 - ) {}; 80 - 81 - src = fsrc; 82 - 83 - buildInputs = [ swiPrologLocked makeWrapper glibcLocales rlwrap tk which ]; 84 - 85 - patches = [ 86 - ./adjust-buildsystem.patch 87 - ./case-insensitive.patch 32 + makeFlags = [ 33 + "CURRYFRONTEND=${curry-frontend}/bin/curry-frontend" 34 + "DISTPKGINSTALL=yes" 35 + # Not needed, just to make script pass 36 + "CURRYTOOLSDIR=0" 37 + "CURRYLIBSDIR=0" 88 38 ]; 89 39 90 - configurePhase = '' 91 - # Phony HOME. 92 - mkdir phony-home 93 - export HOME=$(pwd)/phony-home 40 + preConfigure = '' 41 + # Since we can't expand $out in `makeFlags` 42 + #makeFlags="$makeFlags PAKCSINSTALLDIR=$out/pakcs" 94 43 95 - # SWI Prolog 96 - sed -i 's@SWIPROLOG=@SWIPROLOG='${swiPrologLocked}/bin/swipl'@' scripts/pakcsinitrc.sh 44 + substituteInPlace currytools/cpm/src/CPM/Repository.curry \ 45 + --replace "/bin/rm" "rm" 97 46 ''; 98 47 48 + # cypm new: EXISTENCE ERROR: source_sink 49 + # "/tmp/nix-build-pakcs-2.0.2.drv-0/pakcs-2.0.2/currytools/cpm/templates/LICENSE" 50 + # does not exist 99 51 buildPhase = '' 100 - # Some comments in files are in UTF-8, so include the locale needed by GHC runtime. 101 - export LC_ALL=en_US.UTF-8 102 - 103 - # PAKCS must be build in place due to embedded filesystem references placed by swi. 104 - 105 - # Prepare PAKCSHOME directory. 106 - mkdir -p $out/pakcs/bin 107 - 108 - # Set up link to cymake, which has been built already. 109 - ln -s ${curryFront}/bin/cymake $out/pakcs/bin/ 110 - rm -r frontend 111 - 112 - # Prevent embedding the derivation build directory as temp. 113 - export TEMP=/tmp 114 - 115 - # Copy to in place build location and run the build. 52 + mkdir -p $out/pakcs 116 53 cp -r * $out/pakcs 117 - (cd $out/pakcs ; make) 54 + (cd $out/pakcs ; make -j$NIX_BUILD_CORES $makeFlags) 118 55 ''; 119 56 120 57 installPhase = '' 121 - # Install bin. 122 - mkdir -p $out/bin 123 - for b in $(ls $out/pakcs/bin) ; do 124 - ln -s $out/pakcs/bin/$b $out/bin/ ; 125 - done 58 + ln -s $out/pakcs/bin $out 126 59 127 - # Place emacs lisp files in expected locations. 128 - mkdir -p $out/share/emacs/site-lisp/curry-pakcs 129 - for e in "$out/pakcs/tools/emacs/"*.el ; do 130 - cp $e $out/share/emacs/site-lisp/curry-pakcs/ ; 131 - done 60 + mkdir -p $out/share/emacs/site-lisp 61 + ln -s $out/pakcs/tools/emacs $out/share/emacs/site-lisp/curry-pakcs 132 62 133 - # Wrap for rlwrap and tk support. 134 63 wrapProgram $out/pakcs/bin/pakcs \ 135 64 --prefix PATH ":" "${rlwrap}/bin" \ 136 - --prefix PATH ":" "${tk}/bin" \ 65 + --prefix PATH ":" "${tk}/bin" 66 + 67 + # List of dependencies from currytools/cpm/src/CPM/Main.curry 68 + wrapProgram $out/pakcs/bin/cypm \ 69 + --prefix PATH ":" "${stdenv.lib.makeBinPath [ curl git unzip gnutar coreutils sqlite ]}" 137 70 ''; 138 71 139 72 meta = with stdenv.lib; { ··· 154 87 ''; 155 88 156 89 maintainers = with maintainers; [ kkallio gnidorah ]; 157 - platforms = platforms.unix; 90 + platforms = platforms.linux; 158 91 }; 159 92 }
+5 -4
pkgs/development/compilers/swi-prolog/default.nix
··· 1 1 { stdenv, fetchurl, jdk, gmp, readline, openssl, libjpeg, unixODBC, zlib 2 - , libXinerama, libXft, libXpm, libSM, libXt, freetype, pkgconfig 3 - , fontconfig, makeWrapper ? stdenv.isDarwin 2 + , libXinerama, libarchive, db, pcre, libedit, libossp_uuid, libXft, libXpm 3 + , libSM, libXt, freetype, pkgconfig, fontconfig, makeWrapper ? stdenv.isDarwin 4 4 }: 5 5 6 6 let ··· 15 15 }; 16 16 17 17 buildInputs = [ jdk gmp readline openssl libjpeg unixODBC libXinerama 18 - libXft libXpm libSM libXt zlib freetype pkgconfig fontconfig ] 18 + libarchive db pcre libedit libossp_uuid libXft libXpm libSM libXt 19 + zlib freetype pkgconfig fontconfig ] 19 20 ++ stdenv.lib.optional stdenv.isDarwin makeWrapper; 20 21 21 22 hardeningDisable = [ "format" ]; ··· 42 43 license = "LGPL"; 43 44 44 45 platforms = stdenv.lib.platforms.unix; 45 - maintainers = [ stdenv.lib.maintainers.peti ]; 46 + maintainers = [ stdenv.lib.maintainers.peti stdenv.lib.maintainers.meditans ]; 46 47 }; 47 48 }
+7
pkgs/development/haskell-modules/configuration-common.nix
··· 1128 1128 1129 1129 # needed because of testing-feat >=0.4.0.2 && <1.1 1130 1130 language-ecmascript = doJailbreak super.language-ecmascript; 1131 + 1132 + # sexpr is old, broken and has no issue-tracker. Let's fix it the best we can. 1133 + sexpr = 1134 + appendPatch (overrideCabal super.sexpr (drv: { 1135 + isExecutable = false; 1136 + libraryHaskellDepends = drv.libraryHaskellDepends ++ [self.QuickCheck]; 1137 + })) ./patches/sexpr-0.2.1.patch; 1131 1138 }
+7 -5
pkgs/development/haskell-modules/configuration-nix.nix
··· 264 264 } 265 265 ); 266 266 267 - llvm-hs = super.llvm-hs.override { llvm-config = pkgs.llvm; }; 268 - llvm-hs_6_3_0 = super.llvm-hs_6_3_0.override { 269 - llvm-config = pkgs.llvm_6; 270 - llvm-hs-pure = super.llvm-hs-pure_6_2_1; 271 - }; 267 + llvm-hs = 268 + let dontCheckDarwin = if pkgs.stdenv.isDarwin 269 + then dontCheck 270 + else pkgs.lib.id; 271 + in dontCheckDarwin (super.llvm-hs.override { 272 + llvm-config = pkgs.llvm_6; 273 + }); 272 274 273 275 # Needs help finding LLVM. 274 276 spaceprobe = addBuildTool super.spaceprobe self.llvmPackages.llvm;
+86
pkgs/development/haskell-modules/patches/sexpr-0.2.1.patch
··· 1 + diff -Naurw sexpr-0.2.1/Codec/Sexpr/Internal.hs sexpr-0.2.1-patched/Codec/Sexpr/Internal.hs 2 + --- sexpr-0.2.1/Codec/Sexpr/Internal.hs 2009-04-30 00:51:06.000000000 +0200 3 + +++ sexpr-0.2.1-patched/Codec/Sexpr/Internal.hs 2018-08-03 01:38:08.000000000 +0200 4 + @@ -62,11 +62,6 @@ 5 + return $ List []] 6 + arbSexpr n = oneof [Atom <$> arbitrary, 7 + List <$> (resize (n `div` 2) arbitrary)] 8 + - coarbitrary (Atom s) = variant 0 . coarbitrary s 9 + - coarbitrary (HintedAtom h s) = variant 1 . coarbitrary_h . coarbitrary s 10 + - where coarbitrary_h = 11 + - foldr (\a b -> variant (ord a) . variant 1 . b) (variant 0) h 12 + - coarbitrary (List ss) = variant 2 . coarbitrary ss 13 + 14 + -- |@fold f s@ applies f to each sub-S-expression of s, from each leaf 15 + -- to the root. @f@ need not preserve the shape of @s@, in contrast 16 + diff -Naurw sexpr-0.2.1/Codec/Sexpr/Printer.hs sexpr-0.2.1-patched/Codec/Sexpr/Printer.hs 17 + --- sexpr-0.2.1/Codec/Sexpr/Printer.hs 2009-04-30 00:51:06.000000000 +0200 18 + +++ sexpr-0.2.1-patched/Codec/Sexpr/Printer.hs 2018-08-03 01:41:56.000000000 +0200 19 + @@ -1,4 +1,4 @@ 20 + -{-# LANGUAGE FlexibleInstances, OverlappingInstances #-} 21 + +{-# LANGUAGE FlexibleInstances #-} 22 + 23 + -- | Export S-expressions in any of the three ordinary forms: 24 + -- 25 + @@ -17,6 +17,8 @@ 26 + 27 + module Codec.Sexpr.Printer where 28 + 29 + +import Prelude hiding ((<>)) 30 + + 31 + import Codec.Sexpr.Internal 32 + 33 + import Data.Binary.Put 34 + @@ -30,7 +32,7 @@ 35 + instance Show (Sexpr String) where 36 + show s = advancedString s 37 + 38 + -instance Show s => Show (Sexpr s) where 39 + +instance {-# OVERLAPPABLE #-} Show s => Show (Sexpr s) where 40 + show s = advancedString $ fmap show s 41 + 42 + raw :: String -> String -> String 43 + diff -Naurw sexpr-0.2.1/Codec/Sexpr/Tests.hs sexpr-0.2.1-patched/Codec/Sexpr/Tests.hs 44 + --- sexpr-0.2.1/Codec/Sexpr/Tests.hs 2009-04-30 00:51:06.000000000 +0200 45 + +++ sexpr-0.2.1-patched/Codec/Sexpr/Tests.hs 2018-08-03 01:46:32.000000000 +0200 46 + @@ -67,11 +67,9 @@ 47 + 48 + instance Arbitrary B.ByteString where 49 + arbitrary = B.pack `fmap` arbitrary 50 + - coarbitrary = undefined 51 + 52 + instance Arbitrary Char where 53 + arbitrary = choose (32,255) >>= \n -> return (chr n) 54 + - coarbitrary n = variant (ord n) 55 + 56 + 57 + main :: IO () 58 + diff -Naurw sexpr-0.2.1/sexpr.cabal sexpr-0.2.1-patched/sexpr.cabal 59 + --- sexpr-0.2.1/sexpr.cabal 2018-08-03 01:36:11.000000000 +0200 60 + +++ sexpr-0.2.1-patched/sexpr.cabal 2018-08-03 01:49:13.000000000 +0200 61 + @@ -13,23 +13,9 @@ 62 + maintainer: bts@evenmere.org 63 + build-type: Simple 64 + 65 + -flag testing 66 + - description: build test executable 67 + - default: False 68 + - 69 + library 70 + - if flag(testing) 71 + - ghc-options: -Wall 72 + - Build-Depends: base, base64-string, pretty, bytestring, binary 73 + + Build-Depends: base, base64-string, pretty, bytestring, binary, QuickCheck 74 + Exposed-modules: Codec.Sexpr 75 + - 76 + -executable sexpr-test 77 + - if !flag(testing) 78 + - buildable: False 79 + - ghc-options: -Wall 80 + - main-is: Codec/Sexpr/Tests.hs 81 + - other-modules: Codec.Sexpr 82 + - Codec.Sexpr.Parser 83 + + other-modules: Codec.Sexpr.Parser 84 + Codec.Sexpr.Printer 85 + Codec.Sexpr.Internal 86 + - build-depends: QuickCheck, random
+2
pkgs/development/idris-modules/default.nix
··· 153 153 154 154 protobuf = callPackage ./protobuf.nix {}; 155 155 156 + quantities = callPackage ./quantities.nix {}; 157 + 156 158 rationals = callPackage ./rationals.nix {}; 157 159 158 160 recursion_schemes = callPackage ./recursion_schemes.nix {};
+1 -1
pkgs/development/idris-modules/graphviz.nix
··· 22 22 23 23 meta = { 24 24 description = "Parser and library for graphviz dot files"; 25 - homepage = https://github.com/mgttlinger/idris-graphviz; 25 + homepage = https://gitlab.com/mgttlinger/idris-graphviz; 26 26 license = lib.licenses.gpl3; 27 27 maintainers = [ lib.maintainers.brainrape ]; 28 28 };
+22
pkgs/development/idris-modules/quantities.nix
··· 1 + { build-idris-package 2 + , fetchFromGitHub 3 + , lib 4 + }: 5 + build-idris-package { 6 + name = "quantities"; 7 + version = "2018-04-17"; 8 + 9 + src = fetchFromGitHub { 10 + owner = "timjb"; 11 + repo = "quantities"; 12 + rev = "76bb872bd89122043083351993140ae26eb91ead"; 13 + sha256 = "0fv12kdi9089b4kkr6inhqvs2s8x62nv5vqj76wzk8hy0lrzylzj"; 14 + }; 15 + 16 + meta = { 17 + description = "Type-safe physical computations and unit conversions in Idris"; 18 + homepage = https://github.com/timjb/quantities; 19 + license = lib.licenses.mit; 20 + maintainers = with lib.maintainers; [ imuli ]; 21 + }; 22 + }
+2
pkgs/development/interpreters/elixir/generic-builder.nix
··· 40 40 rm -vf rebar 41 41 ln -s ${rebar}/bin/rebar rebar 42 42 43 + patchShebangs lib/elixir/generate_app.escript || true 44 + 43 45 substituteInPlace Makefile \ 44 46 --replace "/usr/local" $out 45 47 '';
+2 -2
pkgs/development/interpreters/python/cpython/3.4/default.nix
··· 27 27 28 28 let 29 29 majorVersion = "3.4"; 30 - minorVersion = "8"; 30 + minorVersion = "9"; 31 31 minorVersionSuffix = ""; 32 32 version = "${majorVersion}.${minorVersion}${minorVersionSuffix}"; 33 33 libPrefix = "python${majorVersion}"; ··· 49 49 50 50 src = fetchurl { 51 51 url = "http://www.python.org/ftp/python/${version}/Python-${version}.tar.xz"; 52 - sha256 = "1sn3i9z9m56inlfrqs250qv8snl8w211wpig2pfjlyrcj3x75919"; 52 + sha256 = "1n9b1kavmw8b7rc3gkrka4fjzrbfq9iqy791yncaf09bp9v9cqjr"; 53 53 }; 54 54 55 55 NIX_LDFLAGS = optionalString stdenv.isLinux "-lgcc_s";
+2 -2
pkgs/development/interpreters/python/cpython/3.5/default.nix
··· 27 27 28 28 let 29 29 majorVersion = "3.5"; 30 - minorVersion = "5"; 30 + minorVersion = "6"; 31 31 minorVersionSuffix = ""; 32 32 version = "${majorVersion}.${minorVersion}${minorVersionSuffix}"; 33 33 libPrefix = "python${majorVersion}"; ··· 49 49 50 50 src = fetchurl { 51 51 url = "https://www.python.org/ftp/python/${majorVersion}.${minorVersion}/Python-${version}.tar.xz"; 52 - sha256 = "02ahsijk3a42sdzfp2il49shx0v4birhy7kkj0dikmh20hxjqg86"; 52 + sha256 = "0pqmf51zy2lzhbaj4yya2py2qr653j9152d0rg3p7wi1yl2dwp7m"; 53 53 }; 54 54 55 55 NIX_LDFLAGS = optionalString stdenv.isLinux "-lgcc_s";
+2 -2
pkgs/development/libraries/afflib/default.nix
··· 1 1 { stdenv, fetchFromGitHub, zlib, curl, expat, fuse, openssl 2 - , autoreconfHook, python 2 + , autoreconfHook, python3 3 3 }: 4 4 5 5 stdenv.mkDerivation rec { ··· 14 14 }; 15 15 16 16 nativeBuildInputs = [ autoreconfHook ]; 17 - buildInputs = [ zlib curl expat fuse openssl python ]; 17 + buildInputs = [ zlib curl expat fuse openssl python3 ]; 18 18 19 19 meta = { 20 20 homepage = http://afflib.sourceforge.net/;
+6 -15
pkgs/development/libraries/appstream/default.nix
··· 1 1 { stdenv, fetchpatch, fetchFromGitHub, meson, ninja, pkgconfig, gettext 2 2 , xmlto, docbook_xsl, docbook_xml_dtd_45, libxslt 3 3 , libstemmer, glib, xapian, libxml2, libyaml, gobjectIntrospection 4 - , pcre, itstool 4 + , pcre, itstool, gperf, vala 5 5 }: 6 6 7 7 stdenv.mkDerivation rec { 8 8 name = "appstream-${version}"; 9 - version = "0.11.8"; 9 + version = "0.12.2"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "ximion"; 13 13 repo = "appstream"; 14 14 rev = "APPSTREAM_${stdenv.lib.replaceStrings ["."] ["_"] version}"; 15 - sha256 = "07vzz57g1p5byj2jfg17y5n3il0g07d9wkiynzwra71mcxar1p08"; 15 + sha256 = "1g15c4bhyl730rgaiqia3jppraixh05c3yx098lyilidbddxp5xb"; 16 16 }; 17 17 18 - patches = [ 19 - # drop this in version 0.11.9 and above 20 - (fetchpatch { 21 - name = "define-location-and-soname.patch"; 22 - url = "https://github.com/ximion/appstream/commit/3e58f9c9.patch"; 23 - sha256 = "1ffgbdfg80yq5vahjrvdd4f8xsp32ksm9vyasfmc7hzhx294s78w"; 24 - }) 25 - ]; 26 - 27 18 nativeBuildInputs = [ 28 19 meson ninja pkgconfig gettext 29 20 libxslt xmlto docbook_xsl docbook_xml_dtd_45 30 - gobjectIntrospection itstool 21 + gobjectIntrospection itstool vala 31 22 ]; 32 23 33 - buildInputs = [ libstemmer pcre glib xapian libxml2 libyaml ]; 24 + buildInputs = [ libstemmer pcre glib xapian libxml2 libyaml gperf ]; 34 25 35 26 prePatch = '' 36 27 substituteInPlace meson.build \ ··· 43 34 mesonFlags = [ 44 35 "-Dapidocs=false" 45 36 "-Ddocs=false" 46 - "-Dgir=false" 37 + "-Dvapi=true" 47 38 ]; 48 39 49 40 meta = with stdenv.lib; {
+1 -1
pkgs/development/libraries/appstream/qt.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "appstream-qt-${version}"; 5 - inherit (appstream) version src patches prePatch; 5 + inherit (appstream) version src prePatch; 6 6 7 7 buildInputs = appstream.buildInputs ++ [ appstream qtbase ]; 8 8
+16 -38
pkgs/development/libraries/cddlib/default.nix
··· 1 1 { stdenv 2 - , fetchurl 3 - , fetchpatch 2 + , fetchFromGitHub 4 3 , gmp 5 4 , autoreconfHook 5 + , texlive 6 6 }: 7 7 8 8 stdenv.mkDerivation rec { 9 9 name = "cddlib-${version}"; 10 - version = "0.94i"; 11 - src = let 12 - fileVersion = stdenv.lib.replaceStrings ["."] [""] version; 13 - in fetchurl { 14 - # Might switch to github in the future, see 15 - # https://trac.sagemath.org/ticket/21952#comment:20 16 - urls = [ 17 - "http://archive.ubuntu.com/ubuntu/pool/universe/c/cddlib/cddlib_${fileVersion}.orig.tar.gz" 18 - "ftp://ftp.math.ethz.ch/users/fukudak/cdd/cddlib-${fileVersion}.tar.gz" 19 - ]; 20 - sha256 = "00zdgiqb91vx6gd2103h3ijij0llspsxc6zz3iw2bll39fvkl4xq"; 10 + version = "0.94j"; 11 + src = fetchFromGitHub { 12 + owner = "cddlib"; 13 + repo = "cddlib"; 14 + rev = "${version}"; 15 + sha256 = "1z03ljy3rrr0qq5gq54vynnif6fn0xhn05g90nnv0dpyc3ps8lzp"; 21 16 }; 22 17 buildInputs = [gmp]; 23 18 nativeBuildInputs = [ 24 19 autoreconfHook 25 - ]; 26 - # compute reduced H and V representation of polytope 27 - # this patch is included by most distributions (Debian, Conda, ArchLinux, SageMath) 28 - # proposed upstream (no answer yet): https://github.com/cddlib/cddlib/pull/3 29 - both_reps_c = (fetchurl { 30 - name = "cdd_both_reps.c"; 31 - url = "https://gitweb.gentoo.org/repo/gentoo.git/plain/sci-libs/cddlib/files/cdd_both_reps.c?id=56bd759df1d0c750a065b8c845e93d5dfa6b549d"; 32 - sha256 = "0r9yc5bgiz8i72c6vsn2y2mjk5581iw94gji9v7lg16kzzgrk9x0"; 33 - }); 34 - preAutoreconf = '' 35 - # Required by sage.geometry.polyhedron 36 - cp ${both_reps_c} src/cdd_both_reps.c 37 - cp ${both_reps_c} src-gmp/cdd_both_reps.c 38 - ''; 39 - patches = [ 40 - # add the cdd_both_reps binary 41 - (fetchpatch { 42 - name = "add-cdd_both_reps-binary.patch"; 43 - url = "https://gitweb.gentoo.org/repo/gentoo.git/plain/sci-libs/cddlib/files/cddlib-094h-add-cdd_both_reps-binary.patch?id=78e3a61a68c916450aa4e5ceecd20041583af901"; 44 - sha256 = "162ni2fr7dpbdkz0b5nizxq7qr5k1i1d75g0smiylpzfb0hb761a"; 45 - }) 20 + texlive.combined.scheme-small # for building the documentation 46 21 ]; 47 - meta = { 22 + # No actual checks yet (2018-05-05), but maybe one day. 23 + # Requested here: https://github.com/cddlib/cddlib/issues/25 24 + doCheck = true; 25 + meta = with stdenv.lib; { 48 26 inherit version; 49 27 description = ''An implementation of the Double Description Method for generating all vertices of a convex polyhedron''; 50 - license = stdenv.lib.licenses.gpl2Plus ; 51 - maintainers = [stdenv.lib.maintainers.raskin]; 52 - platforms = stdenv.lib.platforms.linux; 28 + license = licenses.gpl2Plus; 29 + maintainers = with maintainers; [raskin timokau]; 30 + platforms = platforms.linux; 53 31 homepage = https://www.inf.ethz.ch/personal/fukudak/cdd_home/index.html; 54 32 }; 55 33 }
+30 -16
pkgs/development/libraries/exiv2/default.nix
··· 1 - { stdenv, fetchurl, fetchpatch, zlib, expat, gettext }: 1 + { stdenv, fetchurl, fetchFromGitHub, fetchpatch, zlib, expat, gettext 2 + , autoconf }: 2 3 3 4 stdenv.mkDerivation rec { 4 - name = "exiv2-0.26"; 5 + name = "exiv2-0.26.2018.06.09"; 5 6 6 - src = fetchurl { 7 - url = "http://www.exiv2.org/builds/${name}-trunk.tar.gz"; 8 - sha256 = "1yza317qxd8yshvqnay164imm0ks7cvij8y8j86p1gqi1153qpn7"; 7 + #url = "http://www.exiv2.org/builds/${name}-trunk.tar.gz"; 8 + src = fetchFromGitHub rec { 9 + owner = "exiv2"; 10 + repo = "exiv2"; 11 + rev = "4aa57ad"; 12 + sha256 = "1kblpxbi4wlb0l57xmr7g23zn9adjmfswhs6kcwmd7skwi2yivcd"; 9 13 }; 10 14 11 15 patches = [ ··· 16 20 + "/sha512/${sha512}/${patchname}"; 17 21 sha512 = "3f9242dbd4bfa9dcdf8c9820243b13dc14990373a800c4ebb6cf7eac5653cfef" 18 22 + "e6f2c47a94fbee4ed24f0d8c2842729d721f6100a2b215e0f663c89bfefe9e32"; 19 - }) 20 - (fetchpatch { 21 - # many CVEs - see https://github.com/Exiv2/exiv2/pull/120 22 - url = "https://patch-diff.githubusercontent.com/raw/Exiv2/exiv2/pull/120.patch"; 23 - sha256 = "1szl22xmh12hibzaqf2zi8zl377x841m52x4jm5lziw6j8g81sj8"; 24 - excludes = [ "test/bugfixes-test.sh" ]; 25 - }) 23 + }) 24 + # Two backports from master, submitted as https://github.com/Exiv2/exiv2/pull/398 25 + (fetchpatch { 26 + name = "CVE-2018-12264.diff"; 27 + url = "https://github.com/vcunat/exiv2/commit/fd18e853.diff"; 28 + sha256 = "0y7ahh45lpaiazjnfllndfaa5pyixh6z4kcn2ywp7qy4ra7qpwdr"; 29 + }) 30 + (fetchpatch { 31 + name = "CVE-2018-12265.diff"; 32 + url = "https://github.com/vcunat/exiv2/commit/9ed1671bd4.diff"; 33 + sha256 = "1cn446pfcgsh1bn9vxikkkcy1cqq7ghz2w291h1094ydqg6w7q6w"; 34 + }) 26 35 ]; 27 36 28 37 postPatch = "patchShebangs ./src/svn_version.sh"; 38 + 39 + preConfigure = "make config"; # needed because not using tarball 29 40 30 41 outputs = [ "out" "dev" ]; 31 42 32 - nativeBuildInputs = [ gettext ]; 43 + nativeBuildInputs = [ 44 + gettext 45 + autoconf # needed because not using tarball 46 + ]; 33 47 propagatedBuildInputs = [ zlib expat ]; 34 48 35 - meta = { 49 + meta = with stdenv.lib; { 36 50 homepage = http://www.exiv2.org/; 37 51 description = "A library and command-line utility to manage image metadata"; 38 - platforms = stdenv.lib.platforms.all; 39 - license = stdenv.lib.licenses.gpl2Plus; 52 + platforms = platforms.all; 53 + license = licenses.gpl2Plus; 40 54 }; 41 55 }
+1
pkgs/development/libraries/flatpak/default.nix
··· 24 24 }) 25 25 # patch taken from gtk_doc 26 26 ./respect-xml-catalog-files-var.patch 27 + ./use-flatpak-from-path.patch 27 28 ]; 28 29 29 30 nativeBuildInputs = [
+48
pkgs/development/libraries/flatpak/use-flatpak-from-path.patch
··· 1 + --- a/common/flatpak-dir.c 2 + +++ b/common/flatpak-dir.c 3 + @@ -5467,7 +5467,7 @@ export_desktop_file (const char *app, 4 + 5 + new_exec = g_string_new (""); 6 + g_string_append_printf (new_exec, 7 + - FLATPAK_BINDIR "/flatpak run --branch=%s --arch=%s", 8 + + "flatpak run --branch=%s --arch=%s", 9 + escaped_branch, 10 + escaped_arch); 11 + 12 + @@ -6644,8 +6644,8 @@ flatpak_dir_deploy (FlatpakDir *self, 13 + error)) 14 + return FALSE; 15 + 16 + - bin_data = g_strdup_printf ("#!/bin/sh\nexec %s/flatpak run --branch=%s --arch=%s %s \"$@\"\n", 17 + - FLATPAK_BINDIR, escaped_branch, escaped_arch, escaped_app); 18 + + bin_data = g_strdup_printf ("#!/bin/sh\nexec flatpak run --branch=%s --arch=%s %s \"$@\"\n", 19 + + escaped_branch, escaped_arch, escaped_app); 20 + if (!g_file_replace_contents (wrapper, bin_data, strlen (bin_data), NULL, FALSE, 21 + G_FILE_CREATE_REPLACE_DESTINATION, NULL, cancellable, error)) 22 + return FALSE; 23 + diff --git a/tests/test-bundle.sh b/tests/test-bundle.sh 24 + index 6937b041..01f8add7 100755 25 + --- a/tests/test-bundle.sh 26 + +++ b/tests/test-bundle.sh 27 + @@ -59,7 +59,7 @@ assert_has_dir $FL_DIR/app/org.test.Hello/$ARCH/master/active/files 28 + assert_has_dir $FL_DIR/app/org.test.Hello/$ARCH/master/active/export 29 + assert_has_file $FL_DIR/exports/share/applications/org.test.Hello.desktop 30 + # Ensure Exec key is rewritten 31 + -assert_file_has_content $FL_DIR/exports/share/applications/org.test.Hello.desktop "^Exec=.*/flatpak run --branch=master --arch=$ARCH --command=hello.sh org.test.Hello$" 32 + +assert_file_has_content $FL_DIR/exports/share/applications/org.test.Hello.desktop "^Exec=flatpak run --branch=master --arch=$ARCH --command=hello.sh org.test.Hello$" 33 + assert_has_file $FL_DIR/exports/share/icons/hicolor/64x64/apps/org.test.Hello.png 34 + assert_has_file $FL_DIR/exports/share/icons/HighContrast/64x64/apps/org.test.Hello.png 35 + 36 + diff --git a/tests/test-run.sh b/tests/test-run.sh 37 + index 9d83d82e..234e4ec6 100755 38 + --- a/tests/test-run.sh 39 + +++ b/tests/test-run.sh 40 + @@ -42,7 +42,7 @@ assert_has_dir $FL_DIR/app/org.test.Hello/$ARCH/master/active/files 41 + assert_has_dir $FL_DIR/app/org.test.Hello/$ARCH/master/active/export 42 + assert_has_file $FL_DIR/exports/share/applications/org.test.Hello.desktop 43 + # Ensure Exec key is rewritten 44 + -assert_file_has_content $FL_DIR/exports/share/applications/org.test.Hello.desktop "^Exec=.*/flatpak run --branch=master --arch=$ARCH --command=hello.sh org.test.Hello$" 45 + +assert_file_has_content $FL_DIR/exports/share/applications/org.test.Hello.desktop "^Exec=flatpak run --branch=master --arch=$ARCH --command=hello.sh org.test.Hello$" 46 + assert_has_file $FL_DIR/exports/share/icons/hicolor/64x64/apps/org.test.Hello.png 47 + assert_not_has_file $FL_DIR/exports/share/icons/hicolor/64x64/apps/dont-export.png 48 + assert_has_file $FL_DIR/exports/share/icons/HighContrast/64x64/apps/org.test.Hello.png
+2
pkgs/development/libraries/libgpg-error/default.nix
··· 34 34 35 35 postPatch = '' 36 36 sed '/BUILD_TIMESTAMP=/s/=.*/=1970-01-01T00:01+0000/' -i ./configure 37 + '' + lib.optionalString (stdenv.hostPlatform.isArm && stdenv.buildPlatform != stdenv.hostPlatform ) '' 38 + ln -s lock-obj-pub.arm-unknown-linux-gnueabi.h src/syscfg/lock-obj-pub.linux-gnueabihf.h 37 39 '' + lib.optionalString stdenv.hostPlatform.isMusl '' 38 40 ln -s lock-obj-pub.x86_64-pc-linux-musl.h src/syscfg/lock-obj-pub.linux-musl.h 39 41 '';
+5 -1
pkgs/development/libraries/libossp-uuid/default.nix
··· 10 10 sha256= "11a615225baa5f8bb686824423f50e4427acd3f70d394765bdff32801f0fd5b0"; 11 11 }; 12 12 13 - configureFlags = stdenv.lib.optional stdenv.isFreeBSD "--with-pic"; 13 + configureFlags = [ 14 + "ac_cv_va_copy=yes" 15 + ] ++ stdenv.lib.optional stdenv.isFreeBSD "--with-pic"; 16 + 17 + patches = [ ./shtool.patch ]; 14 18 15 19 meta = with stdenv.lib; { 16 20 homepage = http://www.ossp.org/pkg/lib/uuid/;
+11
pkgs/development/libraries/libossp-uuid/shtool.patch
··· 1 + --- a/shtool 2008-07-05 05:43:08.000000000 +0800 2 + +++ b/shtool 2018-07-25 15:45:40.559587471 +0800 3 + @@ -1400,7 +1400,7 @@ 4 + if [ ".$opt_t" = .yes ]; then 5 + echo "strip $dsttmp" 1>&2 6 + fi 7 + - strip $dsttmp || shtool_exit $? 8 + + $STRIP $dsttmp || shtool_exit $? 9 + fi 10 + if [ ".$opt_o" != . ]; then 11 + if [ ".$opt_t" = .yes ]; then
+53
pkgs/development/libraries/libunity/default.nix
··· 1 + { stdenv, fetchurl, pkgconfig, automake, autoconf, libtool 2 + , glib, vala, dee, gobjectIntrospection, libdbusmenu-glib 3 + , gtk3, intltool, gnome-common, python3, icu }: 4 + 5 + stdenv.mkDerivation rec { 6 + pname = "libunity"; 7 + version = "7.1.4"; 8 + 9 + name = "${pname}-${version}"; 10 + 11 + outputs = [ "out" "dev" ]; 12 + 13 + src = fetchurl { 14 + url = "https://launchpad.net/ubuntu/+archive/primary/+files/${pname}_${version}+15.10.20151002.orig.tar.gz"; 15 + sha256 = "1sf98qcjkxfibxk03firnc12dm6il8jzaq5763qam8ydg4li4gij"; 16 + }; 17 + 18 + nativeBuildInputs = [ 19 + autoconf 20 + automake 21 + gnome-common 22 + gobjectIntrospection 23 + intltool 24 + libtool 25 + pkgconfig 26 + python3 27 + vala 28 + ]; 29 + 30 + buildInputs = [ 31 + glib 32 + gtk3 33 + ]; 34 + 35 + propagatedBuildInputs = [ dee libdbusmenu-glib ]; 36 + 37 + preConfigure = "NOCONFIGURE=1 ./autogen.sh"; 38 + 39 + configureFlags = [ 40 + "--disable-static" 41 + "--with-pygi-overrides-dir=$(out)/${python3.sitePackages}/gi/overrides" 42 + ]; 43 + 44 + NIX_LDFLAGS = "-L${icu}/lib"; 45 + 46 + meta = with stdenv.lib; { 47 + description = "A library for instrumenting and integrating with all aspects of the Unity shell"; 48 + homepage = https://launchpad.net/libunity; 49 + license = licenses.lgpl3; 50 + platforms = platforms.linux; 51 + maintainers = with maintainers; [ worldofpeace ]; 52 + }; 53 + }
+3 -1
pkgs/development/libraries/opencollada/default.nix
··· 21 21 22 22 enableParallelBuilding = true; 23 23 24 - patchPhase = lib.optionalString stdenv.isDarwin '' 24 + patchPhase = '' 25 + patch -p1 < ${./pcre.patch} 26 + '' + lib.optionalString stdenv.isDarwin '' 25 27 substituteInPlace GeneratedSaxParser/src/GeneratedSaxParserUtils.cpp \ 26 28 --replace math.h cmath 27 29 '';
+14
pkgs/development/libraries/opencollada/pcre.patch
··· 1 + diff --git a/COLLADABaseUtils/include/COLLADABUPcreCompiledPattern.h b/COLLADABaseUtils/include/COLLADABUPcreCompiledPattern.h 2 + index 22f2598b..269c50ca 100644 3 + --- a/COLLADABaseUtils/include/COLLADABUPcreCompiledPattern.h 4 + +++ b/COLLADABaseUtils/include/COLLADABUPcreCompiledPattern.h 5 + @@ -13,8 +13,7 @@ 6 + 7 + #include "COLLADABUPrerequisites.h" 8 + 9 + -struct real_pcre; 10 + -typedef struct real_pcre pcre; 11 + +#include "pcre.h" 12 + 13 + 14 + namespace COLLADABU
+3
pkgs/development/libraries/oracle-instantclient/default.nix
··· 52 52 install -Dm644 *.jar $out/share/java 53 53 install -Dm644 sdk/include/* $out/include 54 54 install -Dm644 sdk/demo/* $out/share/${name}/demo 55 + 56 + # PECL::oci8 will not build without this 57 + ln -s $out/lib/libclntsh.so.12.1 $out/lib/libclntsh.so 55 58 ''; 56 59 57 60 meta = with stdenv.lib; {
+23
pkgs/development/libraries/prototypejs/default.nix
··· 1 + { stdenv, fetchurl, ... }: 2 + let 3 + version = "1.7.3.0"; 4 + in fetchurl { 5 + name = "prototype-${version}.js"; 6 + url = "https://ajax.googleapis.com/ajax/libs/prototype/${version}/prototype.js"; 7 + sha256 = "0q43vvrsb22h4jvavs1gk3v4ps61yx9k85b5n6q9mxivhmxprg26"; 8 + 9 + meta = with stdenv.lib; { 10 + description = "A foundation for ambitious web user interfaces"; 11 + longDescription = '' 12 + Prototype takes the complexity out of client-side web 13 + programming. Built to solve real-world problems, it adds 14 + useful extensions to the browser scripting environment 15 + and provides elegant APIs around the clumsy interfaces 16 + of Ajax and the Document Object Model. 17 + ''; 18 + homepage = http://prototypejs.org/; 19 + downloadPage = http://prototypejs.org/download/; 20 + license = licenses.mit; 21 + maintainers = with maintainers; [ das_j ]; 22 + }; 23 + }
+12
pkgs/development/libraries/science/math/lcalc/default.nix
··· 57 57 58 58 # based on gentoos makefile patch -- fix paths, adhere to flags 59 59 ./makefile.patch 60 + 61 + # (fetchpatch { 62 + # name = "default-double.patch"; 63 + # url = "https://github.com/dimpase/lcalc/pull/1/commits/0500c67b6aa1f492715591669f6647c8f7a3ea59.patch"; 64 + # sha256 = "0dqwmxpm9wb53qbypsyfkgsvk2f8nf67sydphd4dkc2vw4yz6vla"; 65 + # }) 66 + 67 + (fetchpatch { 68 + name = "c++11.patch"; 69 + url = "https://git.archlinux.org/svntogit/community.git/plain/trunk/lcalc-c++11.patch?h=packages/lcalc&id=3607b97df5a8c231191115b0cb5c62426b339e71"; 70 + sha256 = "1ccrl61lv2vvx8ggldq54m5d0n1iy6mym7qz0i8nj6yj0dshnpk3"; 71 + }) 60 72 ]; 61 73 62 74 installFlags = [
+34
pkgs/development/libraries/science/math/libbraiding/default.nix
··· 1 + { stdenv 2 + , fetchFromGitHub 3 + , autoreconfHook 4 + }: 5 + 6 + stdenv.mkDerivation rec { 7 + version = "1.0"; 8 + name = "libbraiding-${version}"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "miguelmarco"; 12 + repo = "libbraiding"; 13 + rev = version; 14 + sha256 = "0l68rikfr7k2l547gb3pp3g8cj5zzxwipm79xrb5r8ffj466ydxg"; 15 + }; 16 + 17 + nativeBuildInputs = [ 18 + autoreconfHook 19 + ]; 20 + 21 + # no tests included for now (2018-08-05), but can't hurt to activate 22 + doCheck = true; 23 + 24 + meta = with stdenv.lib; { 25 + homepage = https://github.com/miguelmarco/libbraiding/; 26 + description = "C++ library for computations on braid groups"; 27 + longDescription = '' 28 + A library to compute several properties of braids, including centralizer and conjugacy check. 29 + ''; 30 + license = licenses.gpl3; 31 + maintainers = with maintainers; [ timokau ]; 32 + platforms = platforms.all; 33 + }; 34 + }
+35
pkgs/development/libraries/science/math/libhomfly/default.nix
··· 1 + { stdenv 2 + , fetchFromGitHub 3 + , autoreconfHook 4 + , boehmgc 5 + }: 6 + 7 + stdenv.mkDerivation rec { 8 + version = "1.02r5"; 9 + name = "llibhomfly-${version}"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "miguelmarco"; 13 + repo = "libhomfly"; 14 + rev = version; 15 + sha256 = "1szv8iwlhvmy3saigi15xz8vgch92p2lbsm6440v5s8vxj455bvd"; 16 + }; 17 + 18 + buildInputs = [ 19 + boehmgc 20 + ]; 21 + 22 + nativeBuildInputs = [ 23 + autoreconfHook 24 + ]; 25 + 26 + doCheck = true; 27 + 28 + meta = with stdenv.lib; { 29 + homepage = https://github.com/miguelmarco/libhomfly/; 30 + description = "Library to compute the homfly polynomial of knots and links"; 31 + license = licenses.unlicense; 32 + maintainers = with maintainers; [ timokau ]; 33 + platforms = platforms.all; 34 + }; 35 + }
+30
pkgs/development/libraries/scriptaculous/default.nix
··· 1 + { stdenv, fetchurl, unzip, ... }: stdenv.mkDerivation rec { 2 + name = "scriptaculous-${version}"; 3 + version = "1.9.0"; 4 + 5 + src = fetchurl { 6 + url = "https://script.aculo.us/dist/scriptaculous-js-${version}.zip"; 7 + sha256 = "1xpnk3cq8n07lxd69k5jxh48s21zh41ihq10z4a6lcnk238rp8qz"; 8 + }; 9 + 10 + nativeBuildInputs = [ unzip ]; 11 + 12 + installPhase = '' 13 + mkdir $out 14 + cp src/*.js $out 15 + ''; 16 + 17 + meta = with stdenv.lib; { 18 + description = "A set of JavaScript libraries to enhance the user interface of web sites"; 19 + longDescription = '' 20 + script.aculo.us provides you with 21 + easy-to-use, cross-browser user 22 + interface JavaScript libraries to make 23 + your web sites and web applications fly. 24 + ''; 25 + homepage = https://script.aculo.us/; 26 + downloadPage = https://script.aculo.us/dist/; 27 + license = licenses.mit; 28 + maintainers = with maintainers; [ das_j ]; 29 + }; 30 + }
+29
pkgs/development/libraries/smarty3/default.nix
··· 1 + { stdenv, fetchFromGitHub, ... }: stdenv.mkDerivation rec { 2 + name = "smarty3-${version}"; 3 + version = "3.1.32"; 4 + 5 + src = fetchFromGitHub { 6 + owner = "smarty-php"; 7 + repo = "smarty"; 8 + rev = "v${version}"; 9 + sha256 = "1rfa5pzr23db1bivpivljgmgpn99m6ksgli64kmii5cmpvxi00y2"; 10 + }; 11 + 12 + installPhase = '' 13 + mkdir $out 14 + cp -r libs/* $out 15 + ''; 16 + 17 + meta = with stdenv.lib; { 18 + description = "Smarty 3 template engine"; 19 + longDescription = '' 20 + Smarty is a template engine for PHP, facilitating the 21 + separation of presentation (HTML/CSS) from application 22 + logic. This implies that PHP code is application 23 + logic, and is separated from the presentation. 24 + ''; 25 + homepage = https://www.smarty.net; 26 + license = licenses.lgpl21Plus; 27 + maintainers = with maintainers; [ das_j ]; 28 + }; 29 + }
+2 -2
pkgs/development/mobile/adb-sync/default.nix
··· 1 - { stdenv, fetchgit, python, androidsdk, makeWrapper }: 1 + { stdenv, fetchgit, python3, androidsdk, makeWrapper }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "adb-sync-${version}"; ··· 10 10 sha256 = "1y016bjky5sn58v91jyqfz7vw8qfqnfhb9s9jd32k8y29hy5vy4d"; 11 11 }; 12 12 13 - buildInputs = [ python androidsdk makeWrapper ]; 13 + buildInputs = [ python3 androidsdk makeWrapper ]; 14 14 15 15 phases = "installPhase"; 16 16
+2 -2
pkgs/development/node-packages/node-env.nix
··· 56 56 ) dependencies); 57 57 58 58 # Recursively composes the dependencies of a package 59 - composePackage = { name, packageName, src, dependencies ? [], ... }: 59 + composePackage = { name, packageName, src, dependencies ? [], ... }@args: 60 60 '' 61 61 DIR=$(pwd) 62 62 cd $TMPDIR ··· 176 176 # dependencies in the package.json file to the versions that are actually 177 177 # being used. 178 178 179 - pinpointDependenciesOfPackage = { packageName, dependencies ? [], production ? true, ... }: 179 + pinpointDependenciesOfPackage = { packageName, dependencies ? [], production ? true, ... }@args: 180 180 '' 181 181 if [ -d "${packageName}" ] 182 182 then
+3 -3
pkgs/development/node-packages/node-packages-v10.nix
··· 213 213 pnpm = nodeEnv.buildNodePackage { 214 214 name = "pnpm"; 215 215 packageName = "pnpm"; 216 - version = "2.11.2"; 216 + version = "2.12.2"; 217 217 src = fetchurl { 218 - url = "https://registry.npmjs.org/pnpm/-/pnpm-2.11.2.tgz"; 219 - sha1 = "fc7235c2ec82a6ede6caf47485a68a2c6fa2e1f5"; 218 + url = "https://registry.npmjs.org/pnpm/-/pnpm-2.12.2.tgz"; 219 + sha1 = "1b575512ae27d767f4aaec14e94b18e0c70bcc7b"; 220 220 }; 221 221 buildInputs = globalBuildInputs; 222 222 meta = {
+1
pkgs/development/node-packages/node-packages-v6.json
··· 30 30 , "forever" 31 31 , "git-run" 32 32 , "git-standup" 33 + , "graphql-cli" 33 34 , "grunt-cli" 34 35 , { "guifi-earth": "https://github.com/jmendeth/guifi-earth/tarball/f3ee96835fd4fb0e3e12fadbd2cb782770d64854 " } 35 36 , "gulp"
+3876 -1828
pkgs/development/node-packages/node-packages-v6.nix
··· 4 4 5 5 let 6 6 sources = { 7 + "@babel/generator-7.0.0-beta.38" = { 8 + name = "_at_babel_slash_generator"; 9 + packageName = "@babel/generator"; 10 + version = "7.0.0-beta.38"; 11 + src = fetchurl { 12 + url = "https://registry.npmjs.org/@babel/generator/-/generator-7.0.0-beta.38.tgz"; 13 + sha512 = "aOHQPhsEyaB6p2n+AK981+onHoc+Ork9rcAQVSUJR33wUkGiWRpu6/C685knRyIZVsKeSdG5Q4xMiYeFUhuLzA=="; 14 + }; 15 + }; 16 + "@babel/types-7.0.0-beta.38" = { 17 + name = "_at_babel_slash_types"; 18 + packageName = "@babel/types"; 19 + version = "7.0.0-beta.38"; 20 + src = fetchurl { 21 + url = "https://registry.npmjs.org/@babel/types/-/types-7.0.0-beta.38.tgz"; 22 + sha512 = "SAtyEjmA7KiEoL2eAOAUM6M9arQJGWxJKK0S9x0WyPOosHS420RXoxPhn57u/8orRnK8Kxm0nHQQNTX203cP1Q=="; 23 + }; 24 + }; 7 25 "@cliqz-oss/firefox-client-0.3.1" = { 8 26 name = "_at_cliqz-oss_slash_firefox-client"; 9 27 packageName = "@cliqz-oss/firefox-client"; ··· 40 58 sha1 = "890ae7c5d8c877f6d384860215ace9d7ec945bda"; 41 59 }; 42 60 }; 43 - "@ionic/cli-framework-0.1.3" = { 61 + "@ionic/cli-framework-1.0.2" = { 44 62 name = "_at_ionic_slash_cli-framework"; 45 63 packageName = "@ionic/cli-framework"; 46 - version = "0.1.3"; 64 + version = "1.0.2"; 47 65 src = fetchurl { 48 - url = "https://registry.npmjs.org/@ionic/cli-framework/-/cli-framework-0.1.3.tgz"; 49 - sha512 = "by5vosr5MXK5+yJMtRmBX9YjrcHTeelVLV5PsDv56zZR0aDMLP+1st5wvjKwAjlva660bIzx7yIax88hiV5KKA=="; 66 + url = "https://registry.npmjs.org/@ionic/cli-framework/-/cli-framework-1.0.2.tgz"; 67 + sha512 = "YQ05O1H537yilPxReua/ge7u0nHmlp8kMBbDlUrnxU50HDdqKeUThMPnavqzbVHaEbWI4xJZcxR1cjjKVXqg+Q=="; 50 68 }; 51 69 }; 52 - "@ionic/cli-utils-1.19.2" = { 70 + "@ionic/cli-utils-2.0.3" = { 53 71 name = "_at_ionic_slash_cli-utils"; 54 72 packageName = "@ionic/cli-utils"; 55 - version = "1.19.2"; 73 + version = "2.0.3"; 56 74 src = fetchurl { 57 - url = "https://registry.npmjs.org/@ionic/cli-utils/-/cli-utils-1.19.2.tgz"; 58 - sha512 = "nTbF273k1tcr6CPL5ARZ10VbXMNwRuW5svg42JFBEfxdbbVyvIUep+m4ibqBoDCRAFoDi28b4GeFkC5wyyDqQA=="; 75 + url = "https://registry.npmjs.org/@ionic/cli-utils/-/cli-utils-2.0.3.tgz"; 76 + sha512 = "E0YIkKusnQ0XuuGQ8aPBV3NN3e4suG+7U/gMlpoiGGVMAd1zb9rwbxsQU4/S0kfLOrdTbMzB7wTd/ko0l6hHyA=="; 59 77 }; 60 78 }; 61 - "@ionic/discover-0.4.0" = { 79 + "@ionic/discover-1.0.2" = { 62 80 name = "_at_ionic_slash_discover"; 63 81 packageName = "@ionic/discover"; 64 - version = "0.4.0"; 82 + version = "1.0.2"; 83 + src = fetchurl { 84 + url = "https://registry.npmjs.org/@ionic/discover/-/discover-1.0.2.tgz"; 85 + sha512 = "U2oQPgsZlVuYXvlWO0uSuxs2g0YZ3gmYqkHwbThJaX6AO6UgASQrnLDQ0KXw+If7la2MYWVolFWq+fZFyMvT5Q=="; 86 + }; 87 + }; 88 + "@kbrandwijk/swagger-to-graphql-2.4.3" = { 89 + name = "_at_kbrandwijk_slash_swagger-to-graphql"; 90 + packageName = "@kbrandwijk/swagger-to-graphql"; 91 + version = "2.4.3"; 92 + src = fetchurl { 93 + url = "https://registry.npmjs.org/@kbrandwijk/swagger-to-graphql/-/swagger-to-graphql-2.4.3.tgz"; 94 + sha512 = "CNVsCrMge/jq6DCT5buNZ8PACY9RTvPJbCNoIcndfkJOCsNxOx9dnc5qw4pHZdHi8GS6l3qlgkuFKp33iD8J2Q=="; 95 + }; 96 + }; 97 + "@lerna/add-3.0.0-rc.0" = { 98 + name = "_at_lerna_slash_add"; 99 + packageName = "@lerna/add"; 100 + version = "3.0.0-rc.0"; 101 + src = fetchurl { 102 + url = "https://registry.npmjs.org/@lerna/add/-/add-3.0.0-rc.0.tgz"; 103 + sha512 = "PZ/dn4UlA/7sd848LHE2TLXIkOzLDk8Uw/Gz6OwXfxXpng/w6mXcyjaScniT3HzLbzw5fP150+im5mL6BQv9JQ=="; 104 + }; 105 + }; 106 + "@lerna/batch-packages-3.0.0-rc.0" = { 107 + name = "_at_lerna_slash_batch-packages"; 108 + packageName = "@lerna/batch-packages"; 109 + version = "3.0.0-rc.0"; 110 + src = fetchurl { 111 + url = "https://registry.npmjs.org/@lerna/batch-packages/-/batch-packages-3.0.0-rc.0.tgz"; 112 + sha512 = "2FZs545THLHSWZ96xKT5wWFOdIt1UIKnc+Z2IIXCgmhT//fcqEcHFSgq42VxgoELgE4rM7jE2s6wgMatiJwRGg=="; 113 + }; 114 + }; 115 + "@lerna/bootstrap-3.0.0-rc.0" = { 116 + name = "_at_lerna_slash_bootstrap"; 117 + packageName = "@lerna/bootstrap"; 118 + version = "3.0.0-rc.0"; 119 + src = fetchurl { 120 + url = "https://registry.npmjs.org/@lerna/bootstrap/-/bootstrap-3.0.0-rc.0.tgz"; 121 + sha512 = "69mXMWjXA8R6ldDmSntFIIZTNAgEu1lOUP7DilL4OY55z01ln5fOtG/c65PQBm4mjm5ejh1kJVWiDT8MbCRslQ=="; 122 + }; 123 + }; 124 + "@lerna/changed-3.0.0-rc.0" = { 125 + name = "_at_lerna_slash_changed"; 126 + packageName = "@lerna/changed"; 127 + version = "3.0.0-rc.0"; 128 + src = fetchurl { 129 + url = "https://registry.npmjs.org/@lerna/changed/-/changed-3.0.0-rc.0.tgz"; 130 + sha512 = "DY2Id3Y1jifIdZ8uNymUijUgkVRFg64IUHMTb1sm0g/Nd+n++kLo9oqxRTUfuBkW3e1HTUuMkd3ZygU5UBtz6g=="; 131 + }; 132 + }; 133 + "@lerna/child-process-3.0.0-rc.0" = { 134 + name = "_at_lerna_slash_child-process"; 135 + packageName = "@lerna/child-process"; 136 + version = "3.0.0-rc.0"; 137 + src = fetchurl { 138 + url = "https://registry.npmjs.org/@lerna/child-process/-/child-process-3.0.0-rc.0.tgz"; 139 + sha512 = "5LhCU8isfJFj+5V5cJ+wcRR+VkNIbb3rSjm4VVclnD05ZfaY1HmfhBu3VjYt0SulhZKWJEnNBvjG88wgTay1vQ=="; 140 + }; 141 + }; 142 + "@lerna/clean-3.0.0-rc.0" = { 143 + name = "_at_lerna_slash_clean"; 144 + packageName = "@lerna/clean"; 145 + version = "3.0.0-rc.0"; 146 + src = fetchurl { 147 + url = "https://registry.npmjs.org/@lerna/clean/-/clean-3.0.0-rc.0.tgz"; 148 + sha512 = "rVlvO+bhfU/Q9D6bfg5GaLprKMD5rTRjJEqLONpESx/5Ed+NKgbYRiWafpQrB85m2r3c5dSGEPEc2q2rNG3EPg=="; 149 + }; 150 + }; 151 + "@lerna/cli-3.0.0-rc.0" = { 152 + name = "_at_lerna_slash_cli"; 153 + packageName = "@lerna/cli"; 154 + version = "3.0.0-rc.0"; 155 + src = fetchurl { 156 + url = "https://registry.npmjs.org/@lerna/cli/-/cli-3.0.0-rc.0.tgz"; 157 + sha512 = "MUOrP8BiwjayPZAS3Nww1nlB6j02N4FmJK/f2PhJPMDsXMqm3mn5jBTBvlKbLQZJ/VDro8JbRGUUxCuCQEE+cQ=="; 158 + }; 159 + }; 160 + "@lerna/collect-updates-3.0.0-rc.0" = { 161 + name = "_at_lerna_slash_collect-updates"; 162 + packageName = "@lerna/collect-updates"; 163 + version = "3.0.0-rc.0"; 164 + src = fetchurl { 165 + url = "https://registry.npmjs.org/@lerna/collect-updates/-/collect-updates-3.0.0-rc.0.tgz"; 166 + sha512 = "G1BgTIWc6rSsuMLsgpT+xvrQrSN/a0kC+KqMZ9CbCoImtj0AKvrAm3TeFOsYU9JHBUYfe1HWMIIhUSD4VhXmeg=="; 167 + }; 168 + }; 169 + "@lerna/command-3.0.0-rc.0" = { 170 + name = "_at_lerna_slash_command"; 171 + packageName = "@lerna/command"; 172 + version = "3.0.0-rc.0"; 173 + src = fetchurl { 174 + url = "https://registry.npmjs.org/@lerna/command/-/command-3.0.0-rc.0.tgz"; 175 + sha512 = "YzQKhQGSaqhnj/UbygmIneQDuhsTGu9rBqbX84Qs8RhKMMAPWurg+k6sCIihHgBz17tknxEvch/SefMNQxqzAA=="; 176 + }; 177 + }; 178 + "@lerna/conventional-commits-3.0.0-rc.0" = { 179 + name = "_at_lerna_slash_conventional-commits"; 180 + packageName = "@lerna/conventional-commits"; 181 + version = "3.0.0-rc.0"; 182 + src = fetchurl { 183 + url = "https://registry.npmjs.org/@lerna/conventional-commits/-/conventional-commits-3.0.0-rc.0.tgz"; 184 + sha512 = "J5RC+pd7kHP8EfqzvZqaXW253IoShdlzl1Jrw17KqPDAfL5CoZoUwxgZv4ur3kSSv+jHZGQeuAcg93OsBgkzPw=="; 185 + }; 186 + }; 187 + "@lerna/create-3.0.0-rc.0" = { 188 + name = "_at_lerna_slash_create"; 189 + packageName = "@lerna/create"; 190 + version = "3.0.0-rc.0"; 191 + src = fetchurl { 192 + url = "https://registry.npmjs.org/@lerna/create/-/create-3.0.0-rc.0.tgz"; 193 + sha512 = "6GLI+MEKANCAVnuA9pYQX1k+XyyPEBdoPAiSK4lnW2w4E2KSQZxdkI1+9QLv6S2oTrnlrFSxGmqgmmijaZfCGg=="; 194 + }; 195 + }; 196 + "@lerna/create-symlink-3.0.0-rc.0" = { 197 + name = "_at_lerna_slash_create-symlink"; 198 + packageName = "@lerna/create-symlink"; 199 + version = "3.0.0-rc.0"; 200 + src = fetchurl { 201 + url = "https://registry.npmjs.org/@lerna/create-symlink/-/create-symlink-3.0.0-rc.0.tgz"; 202 + sha512 = "wz/C7DB5chTidAOc9+edeg65nJLG1PNO9J/jlAUZOY4G3EPGihLroabIlvbjB5SJ8QKS88ftX+f1pzFZ+nYOdQ=="; 203 + }; 204 + }; 205 + "@lerna/diff-3.0.0-rc.0" = { 206 + name = "_at_lerna_slash_diff"; 207 + packageName = "@lerna/diff"; 208 + version = "3.0.0-rc.0"; 209 + src = fetchurl { 210 + url = "https://registry.npmjs.org/@lerna/diff/-/diff-3.0.0-rc.0.tgz"; 211 + sha512 = "fXeB10qaFeBMucorkV6Q/bJiWayZgGizVsPkuGN1izENd4DBsTxUyh2a6Y3lY5GzCZ33wmuVDe2HdRVHtfrzaQ=="; 212 + }; 213 + }; 214 + "@lerna/exec-3.0.0-rc.0" = { 215 + name = "_at_lerna_slash_exec"; 216 + packageName = "@lerna/exec"; 217 + version = "3.0.0-rc.0"; 218 + src = fetchurl { 219 + url = "https://registry.npmjs.org/@lerna/exec/-/exec-3.0.0-rc.0.tgz"; 220 + sha512 = "DYU00HAAoreqNQmLV0+gfH4mXIJKbd1rbrMvQbnfCTZ3nWYiORXQwvwCYbGgmsMarSaJ/T3eTPP6LvsVt7y1aw=="; 221 + }; 222 + }; 223 + "@lerna/filter-options-3.0.0-rc.0" = { 224 + name = "_at_lerna_slash_filter-options"; 225 + packageName = "@lerna/filter-options"; 226 + version = "3.0.0-rc.0"; 227 + src = fetchurl { 228 + url = "https://registry.npmjs.org/@lerna/filter-options/-/filter-options-3.0.0-rc.0.tgz"; 229 + sha512 = "aqyb0GWEnQgu7eXHpVSpZLedVd3PrI5WK/CfzDlHGqUT8PCJTo9q2562gmEdeCWWfeSvXbezGm0djTC6RwHV1A=="; 230 + }; 231 + }; 232 + "@lerna/filter-packages-3.0.0-rc.0" = { 233 + name = "_at_lerna_slash_filter-packages"; 234 + packageName = "@lerna/filter-packages"; 235 + version = "3.0.0-rc.0"; 236 + src = fetchurl { 237 + url = "https://registry.npmjs.org/@lerna/filter-packages/-/filter-packages-3.0.0-rc.0.tgz"; 238 + sha512 = "ZVObVh8Nk5d6XS/RAJEdu56KbpqvwJrKruoYnDPFeno/Q6/G1Oi8S/W2NmfEXMBSPaVpYecbGfM4Xu5dLzipNA=="; 239 + }; 240 + }; 241 + "@lerna/get-npm-exec-opts-3.0.0-rc.0" = { 242 + name = "_at_lerna_slash_get-npm-exec-opts"; 243 + packageName = "@lerna/get-npm-exec-opts"; 244 + version = "3.0.0-rc.0"; 245 + src = fetchurl { 246 + url = "https://registry.npmjs.org/@lerna/get-npm-exec-opts/-/get-npm-exec-opts-3.0.0-rc.0.tgz"; 247 + sha512 = "n5Oe1LPzyMKGAdYVVDimpuVsWexTCaLlJq9RqXphoijRh5DAB/Mhaw9//5vGrv770m/QNMSceF99SZLI9gyh4g=="; 248 + }; 249 + }; 250 + "@lerna/global-options-3.0.0-rc.0" = { 251 + name = "_at_lerna_slash_global-options"; 252 + packageName = "@lerna/global-options"; 253 + version = "3.0.0-rc.0"; 254 + src = fetchurl { 255 + url = "https://registry.npmjs.org/@lerna/global-options/-/global-options-3.0.0-rc.0.tgz"; 256 + sha512 = "Sy8KE1cAcGwjxOxiJOHjTxJecLcJhAeQym4Ge3WP1Jnz5mq03o9mb37X0Hmjpv1W9OblbXVxHdmbyC3hxMEHIA=="; 257 + }; 258 + }; 259 + "@lerna/import-3.0.0-rc.0" = { 260 + name = "_at_lerna_slash_import"; 261 + packageName = "@lerna/import"; 262 + version = "3.0.0-rc.0"; 263 + src = fetchurl { 264 + url = "https://registry.npmjs.org/@lerna/import/-/import-3.0.0-rc.0.tgz"; 265 + sha512 = "ZRrusuAScKg29jRrurEi/qJbpol5RWY98nBhOmq08pibVz8cwS1QzyTwQhxaZECHYrKpL/qdLNigKsNi4+jyYw=="; 266 + }; 267 + }; 268 + "@lerna/init-3.0.0-rc.0" = { 269 + name = "_at_lerna_slash_init"; 270 + packageName = "@lerna/init"; 271 + version = "3.0.0-rc.0"; 272 + src = fetchurl { 273 + url = "https://registry.npmjs.org/@lerna/init/-/init-3.0.0-rc.0.tgz"; 274 + sha512 = "/G4gy5QDNsxVXTEo59YRilcW7hnob31GVPc3omy9AZq8HZYCpj/tAw39mEds7S1wPCx0aotRj+NDf178zj11Mw=="; 275 + }; 276 + }; 277 + "@lerna/link-3.0.0-rc.0" = { 278 + name = "_at_lerna_slash_link"; 279 + packageName = "@lerna/link"; 280 + version = "3.0.0-rc.0"; 281 + src = fetchurl { 282 + url = "https://registry.npmjs.org/@lerna/link/-/link-3.0.0-rc.0.tgz"; 283 + sha512 = "Al57Ib56/ojGQ3hcln+DhS5IGWqLv8EElrAmSp0c3t/Ie48VOv9AusQR9nDRIGEn73APu/EG0ILdbylfQBzaKg=="; 284 + }; 285 + }; 286 + "@lerna/list-3.0.0-rc.0" = { 287 + name = "_at_lerna_slash_list"; 288 + packageName = "@lerna/list"; 289 + version = "3.0.0-rc.0"; 290 + src = fetchurl { 291 + url = "https://registry.npmjs.org/@lerna/list/-/list-3.0.0-rc.0.tgz"; 292 + sha512 = "uQuFeRHhF6ALohRkVY6VxpCyeCHHTEqzt0SNvacTAA+gJX/hadtEYS883KOzmmcFibL4UtljQbdfj+DjrLKfUQ=="; 293 + }; 294 + }; 295 + "@lerna/npm-conf-3.0.0-rc.0" = { 296 + name = "_at_lerna_slash_npm-conf"; 297 + packageName = "@lerna/npm-conf"; 298 + version = "3.0.0-rc.0"; 299 + src = fetchurl { 300 + url = "https://registry.npmjs.org/@lerna/npm-conf/-/npm-conf-3.0.0-rc.0.tgz"; 301 + sha512 = "zdd/c83UTDGHci1MrW61olXh04cqRvwkA1SZgXYiLo7A87yHlBYwVOu1d7Rl0J6lHG7++8X2odWqzYZkFfeVFA=="; 302 + }; 303 + }; 304 + "@lerna/npm-dist-tag-3.0.0-rc.0" = { 305 + name = "_at_lerna_slash_npm-dist-tag"; 306 + packageName = "@lerna/npm-dist-tag"; 307 + version = "3.0.0-rc.0"; 308 + src = fetchurl { 309 + url = "https://registry.npmjs.org/@lerna/npm-dist-tag/-/npm-dist-tag-3.0.0-rc.0.tgz"; 310 + sha512 = "Xa5mPmSIsi0N4pNNSBpKeghQ7XskKCVK+pawEvgKAYHph/J9PIfrddVJUU8o3nk2qkqeqikypoS++bwMdVr8Ew=="; 311 + }; 312 + }; 313 + "@lerna/npm-install-3.0.0-rc.0" = { 314 + name = "_at_lerna_slash_npm-install"; 315 + packageName = "@lerna/npm-install"; 316 + version = "3.0.0-rc.0"; 317 + src = fetchurl { 318 + url = "https://registry.npmjs.org/@lerna/npm-install/-/npm-install-3.0.0-rc.0.tgz"; 319 + sha512 = "QWvgQ0osTf7e87hc1kKXDcbWPXVCqGUiVnTpjX22+CEiJjUMStWEp4MjLieObgFVLyTtanOZp8VpRqBsPE0HRQ=="; 320 + }; 321 + }; 322 + "@lerna/npm-publish-3.0.0-rc.0" = { 323 + name = "_at_lerna_slash_npm-publish"; 324 + packageName = "@lerna/npm-publish"; 325 + version = "3.0.0-rc.0"; 326 + src = fetchurl { 327 + url = "https://registry.npmjs.org/@lerna/npm-publish/-/npm-publish-3.0.0-rc.0.tgz"; 328 + sha512 = "rP8epG0SsHzqYw9xvwVX6YyAAwPYJAYZvMNxJvyi8fp5KdnD2sTeV/JOrWbQD/RxBxR2WGJxelVRL617KWZMOA=="; 329 + }; 330 + }; 331 + "@lerna/npm-run-script-3.0.0-rc.0" = { 332 + name = "_at_lerna_slash_npm-run-script"; 333 + packageName = "@lerna/npm-run-script"; 334 + version = "3.0.0-rc.0"; 335 + src = fetchurl { 336 + url = "https://registry.npmjs.org/@lerna/npm-run-script/-/npm-run-script-3.0.0-rc.0.tgz"; 337 + sha512 = "Hm6KLPpeIyRIdc9MntmaAhuboUyw75DJLJ1MTaLwq/RwZ2kKHYk1Hi/R7yjj8LOyD7A25BTYX0Pd1gHd1lsFVw=="; 338 + }; 339 + }; 340 + "@lerna/output-3.0.0-rc.0" = { 341 + name = "_at_lerna_slash_output"; 342 + packageName = "@lerna/output"; 343 + version = "3.0.0-rc.0"; 344 + src = fetchurl { 345 + url = "https://registry.npmjs.org/@lerna/output/-/output-3.0.0-rc.0.tgz"; 346 + sha512 = "zZmQ94nVUfe1CvexarDnrb/Mqt81OcZNuOCvcKFHJiNkr5VSIn2GJuUwtTaVUtoh5uXdJCJvm696Ptsep10BWw=="; 347 + }; 348 + }; 349 + "@lerna/package-3.0.0-rc.0" = { 350 + name = "_at_lerna_slash_package"; 351 + packageName = "@lerna/package"; 352 + version = "3.0.0-rc.0"; 353 + src = fetchurl { 354 + url = "https://registry.npmjs.org/@lerna/package/-/package-3.0.0-rc.0.tgz"; 355 + sha512 = "4EUnBc04IxganMamjnEfagajLya3nPKfqlorGc5VLoGh5akOZmrCF9qiqB90nYzrJoMt+5QB1lxYD8bxikX0qg=="; 356 + }; 357 + }; 358 + "@lerna/package-graph-3.0.0-rc.0" = { 359 + name = "_at_lerna_slash_package-graph"; 360 + packageName = "@lerna/package-graph"; 361 + version = "3.0.0-rc.0"; 362 + src = fetchurl { 363 + url = "https://registry.npmjs.org/@lerna/package-graph/-/package-graph-3.0.0-rc.0.tgz"; 364 + sha512 = "E2MlL0CwDzcDTLPpMhg9+TESRAD/wYLtEu+Mj1R4OZbF2jlSXSZok1g3LW/gzulVd5oq9q+qBdY3SX5b9PCsGQ=="; 365 + }; 366 + }; 367 + "@lerna/project-3.0.0-rc.0" = { 368 + name = "_at_lerna_slash_project"; 369 + packageName = "@lerna/project"; 370 + version = "3.0.0-rc.0"; 371 + src = fetchurl { 372 + url = "https://registry.npmjs.org/@lerna/project/-/project-3.0.0-rc.0.tgz"; 373 + sha512 = "lNego7jYd24jIDGLTcy1mrESEopCblVaZztKhJJntSZdqWZ/tnExjIITfS55CnZyKAXwPVIus6YRfOc24tvuaA=="; 374 + }; 375 + }; 376 + "@lerna/prompt-3.0.0-rc.0" = { 377 + name = "_at_lerna_slash_prompt"; 378 + packageName = "@lerna/prompt"; 379 + version = "3.0.0-rc.0"; 380 + src = fetchurl { 381 + url = "https://registry.npmjs.org/@lerna/prompt/-/prompt-3.0.0-rc.0.tgz"; 382 + sha512 = "4ABsGTq7/IMh3nX7LfRirJnXt50Yp/Lg837hb/Hp1OXFz1FoXLcbzoIx0QQYyk3q+Gnv2TwSK2M86xoUFIUXnw=="; 383 + }; 384 + }; 385 + "@lerna/publish-3.0.0-rc.0" = { 386 + name = "_at_lerna_slash_publish"; 387 + packageName = "@lerna/publish"; 388 + version = "3.0.0-rc.0"; 389 + src = fetchurl { 390 + url = "https://registry.npmjs.org/@lerna/publish/-/publish-3.0.0-rc.0.tgz"; 391 + sha512 = "bfjRtCzHAGSS5z8QOUw3UeLn4u5CpJTGUkk9y1PPbzdbMWmJhJnEjSw+TN2LaZFVGzQbE8dsLqR5TL149Y7P/Q=="; 392 + }; 393 + }; 394 + "@lerna/resolve-symlink-3.0.0-rc.0" = { 395 + name = "_at_lerna_slash_resolve-symlink"; 396 + packageName = "@lerna/resolve-symlink"; 397 + version = "3.0.0-rc.0"; 398 + src = fetchurl { 399 + url = "https://registry.npmjs.org/@lerna/resolve-symlink/-/resolve-symlink-3.0.0-rc.0.tgz"; 400 + sha512 = "EBRD/65aTCyZMqWzAM7Ac1zqtZBkTE5AHzzIViQaB5el3j7ThBzzWwYuiBNWibNGTMObLQMrp+65yCbew5H+aA=="; 401 + }; 402 + }; 403 + "@lerna/rimraf-dir-3.0.0-rc.0" = { 404 + name = "_at_lerna_slash_rimraf-dir"; 405 + packageName = "@lerna/rimraf-dir"; 406 + version = "3.0.0-rc.0"; 407 + src = fetchurl { 408 + url = "https://registry.npmjs.org/@lerna/rimraf-dir/-/rimraf-dir-3.0.0-rc.0.tgz"; 409 + sha512 = "aFPX1hMOBL+5AU5xI9SZ2xKTAlnk93+tIw1ZJGWMMc4dzxNs/sT3WeUUH4v1TOYzMqWM3AnLQza3O4OY/xb2hg=="; 410 + }; 411 + }; 412 + "@lerna/run-3.0.0-rc.0" = { 413 + name = "_at_lerna_slash_run"; 414 + packageName = "@lerna/run"; 415 + version = "3.0.0-rc.0"; 416 + src = fetchurl { 417 + url = "https://registry.npmjs.org/@lerna/run/-/run-3.0.0-rc.0.tgz"; 418 + sha512 = "biLKshDBwQ7n3XLihV5QvrlOBJ1isnRJC8xC8FeUbH3x1FRX15Ogg+8/GiGG7vaM6kdE4j0ebrW8HPUEh5L4cw=="; 419 + }; 420 + }; 421 + "@lerna/run-lifecycle-3.0.0-rc.0" = { 422 + name = "_at_lerna_slash_run-lifecycle"; 423 + packageName = "@lerna/run-lifecycle"; 424 + version = "3.0.0-rc.0"; 425 + src = fetchurl { 426 + url = "https://registry.npmjs.org/@lerna/run-lifecycle/-/run-lifecycle-3.0.0-rc.0.tgz"; 427 + sha512 = "/cofDJ5qzAgC99+VYxO602k1wBetv79NYOXUoju3R8xPrCXGJYoBN+/NhrPdj/CciZd9lSsx016M6FcScsaO1Q=="; 428 + }; 429 + }; 430 + "@lerna/run-parallel-batches-3.0.0-rc.0" = { 431 + name = "_at_lerna_slash_run-parallel-batches"; 432 + packageName = "@lerna/run-parallel-batches"; 433 + version = "3.0.0-rc.0"; 434 + src = fetchurl { 435 + url = "https://registry.npmjs.org/@lerna/run-parallel-batches/-/run-parallel-batches-3.0.0-rc.0.tgz"; 436 + sha512 = "MpXiDRo02ZHazis3sDqzhmFuMxEEPKv+mmPpzLElkCDO4LHVZYvwa3ib3ezhWwt+FUFPP4u/8w2A4cFO2PbmVQ=="; 437 + }; 438 + }; 439 + "@lerna/symlink-binary-3.0.0-rc.0" = { 440 + name = "_at_lerna_slash_symlink-binary"; 441 + packageName = "@lerna/symlink-binary"; 442 + version = "3.0.0-rc.0"; 443 + src = fetchurl { 444 + url = "https://registry.npmjs.org/@lerna/symlink-binary/-/symlink-binary-3.0.0-rc.0.tgz"; 445 + sha512 = "aFmZmvjNApa7i4SCrq//j7kg7E6mO3U7dzE4J28biFen2Ey1fmxObf1jiv6b24T92D/WztiBGSSTXbFR41yAsw=="; 446 + }; 447 + }; 448 + "@lerna/symlink-dependencies-3.0.0-rc.0" = { 449 + name = "_at_lerna_slash_symlink-dependencies"; 450 + packageName = "@lerna/symlink-dependencies"; 451 + version = "3.0.0-rc.0"; 452 + src = fetchurl { 453 + url = "https://registry.npmjs.org/@lerna/symlink-dependencies/-/symlink-dependencies-3.0.0-rc.0.tgz"; 454 + sha512 = "dk7V95ToYw1nfn7ydkGQAn0RWyye9n05vPSCQzME+OP0nL7PcsSY+0umatsRP104VMX0yTmML129Zg5xpYDSAw=="; 455 + }; 456 + }; 457 + "@lerna/validation-error-3.0.0-rc.0" = { 458 + name = "_at_lerna_slash_validation-error"; 459 + packageName = "@lerna/validation-error"; 460 + version = "3.0.0-rc.0"; 461 + src = fetchurl { 462 + url = "https://registry.npmjs.org/@lerna/validation-error/-/validation-error-3.0.0-rc.0.tgz"; 463 + sha512 = "VuYvUC2DUjVq/DG7r52wWKmq1G0doGPB5eq7Uozi4QIIRWj2op1l6yCSogb3H2UKPn/5NrMOV4jztwQBnSJu0w=="; 464 + }; 465 + }; 466 + "@lerna/write-log-file-3.0.0-rc.0" = { 467 + name = "_at_lerna_slash_write-log-file"; 468 + packageName = "@lerna/write-log-file"; 469 + version = "3.0.0-rc.0"; 65 470 src = fetchurl { 66 - url = "https://registry.npmjs.org/@ionic/discover/-/discover-0.4.0.tgz"; 67 - sha512 = "TYls2aGguED/lFLRYP09Q275yQuVJ4PnN1K1lxq3bG3gFP99Txn4UZRaVuYGeezH1A3y2rbdBHjRZBMiUnVvOg=="; 471 + url = "https://registry.npmjs.org/@lerna/write-log-file/-/write-log-file-3.0.0-rc.0.tgz"; 472 + sha512 = "LHQPRY/1eWyq7ly+4A412FT9uzGKHDSGHkLYVro8r6mToPB/6eHdntJFRGOYNzKM5eax6RgrzBImEhs3F9FWSQ=="; 68 473 }; 69 474 }; 70 475 "@mrmlnc/readdir-enhanced-2.2.1" = { ··· 112 517 sha512 = "lyJ8sW1PbY3uwuvpOBZ9zMYKshMnQpXmeDHh8dj9j2nJm/xrW0FgB5gLSYOArj5X0IfaXnmhFoJnhS4KbqIMug=="; 113 518 }; 114 519 }; 115 - "@types/node-10.5.2" = { 520 + "@types/cross-spawn-6.0.0" = { 521 + name = "_at_types_slash_cross-spawn"; 522 + packageName = "@types/cross-spawn"; 523 + version = "6.0.0"; 524 + src = fetchurl { 525 + url = "https://registry.npmjs.org/@types/cross-spawn/-/cross-spawn-6.0.0.tgz"; 526 + sha512 = "evp2ZGsFw9YKprDbg8ySgC9NA15g3YgiI8ANkGmKKvvi0P2aDGYLPxQIC5qfeKNUOe3TjABVGuah6omPRpIYhg=="; 527 + }; 528 + }; 529 + "@types/debug-0.0.30" = { 530 + name = "_at_types_slash_debug"; 531 + packageName = "@types/debug"; 532 + version = "0.0.30"; 533 + src = fetchurl { 534 + url = "https://registry.npmjs.org/@types/debug/-/debug-0.0.30.tgz"; 535 + sha512 = "orGL5LXERPYsLov6CWs3Fh6203+dXzJkR7OnddIr2514Hsecwc8xRpzCapshBbKFImCsvS/mk6+FWiN5LyZJAQ=="; 536 + }; 537 + }; 538 + "@types/events-1.2.0" = { 539 + name = "_at_types_slash_events"; 540 + packageName = "@types/events"; 541 + version = "1.2.0"; 542 + src = fetchurl { 543 + url = "https://registry.npmjs.org/@types/events/-/events-1.2.0.tgz"; 544 + sha512 = "KEIlhXnIutzKwRbQkGWb/I4HFqBuUykAdHgDED6xqwXJfONCjF5VoE0cXEiurh3XauygxzeDzgtXUqvLkxFzzA=="; 545 + }; 546 + }; 547 + "@types/glob-5.0.35" = { 548 + name = "_at_types_slash_glob"; 549 + packageName = "@types/glob"; 550 + version = "5.0.35"; 551 + src = fetchurl { 552 + url = "https://registry.npmjs.org/@types/glob/-/glob-5.0.35.tgz"; 553 + sha512 = "wc+VveszMLyMWFvXLkloixT4n0harUIVZjnpzztaZ0nKLuul7Z32iMt2fUFGAaZ4y1XWjFRMtCI5ewvyh4aIeg=="; 554 + }; 555 + }; 556 + "@types/inquirer-0.0.42" = { 557 + name = "_at_types_slash_inquirer"; 558 + packageName = "@types/inquirer"; 559 + version = "0.0.42"; 560 + src = fetchurl { 561 + url = "https://registry.npmjs.org/@types/inquirer/-/inquirer-0.0.42.tgz"; 562 + sha512 = "flMaNWU2g9NrtZ4bIV+7SEY2W7OdWNNhmJ0rE1lWVxGrkp3TfFGMcFCxRIBmGWigI8e6n+2HqLjizTTfgcpHLg=="; 563 + }; 564 + }; 565 + "@types/klaw-2.1.1" = { 566 + name = "_at_types_slash_klaw"; 567 + packageName = "@types/klaw"; 568 + version = "2.1.1"; 569 + src = fetchurl { 570 + url = "https://registry.npmjs.org/@types/klaw/-/klaw-2.1.1.tgz"; 571 + sha512 = "awiTDstwQfX6026T7oC01AoP7knJoM5IT1tgx9STIM4hQzNQlkW8keTxNC+/xxpMgP657ebHMTqrsQ4qtfSJKg=="; 572 + }; 573 + }; 574 + "@types/lodash-4.14.116" = { 575 + name = "_at_types_slash_lodash"; 576 + packageName = "@types/lodash"; 577 + version = "4.14.116"; 578 + src = fetchurl { 579 + url = "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.116.tgz"; 580 + sha512 = "lRnAtKnxMXcYYXqOiotTmJd74uawNWuPnsnPrrO7HiFuE3npE2iQhfABatbYDyxTNqZNuXzcKGhw37R7RjBFLg=="; 581 + }; 582 + }; 583 + "@types/make-dir-1.0.3" = { 584 + name = "_at_types_slash_make-dir"; 585 + packageName = "@types/make-dir"; 586 + version = "1.0.3"; 587 + src = fetchurl { 588 + url = "https://registry.npmjs.org/@types/make-dir/-/make-dir-1.0.3.tgz"; 589 + sha512 = "bFRvlvUdPwxj47K2yVh7OBL8Mu8h//5k/hQJkz0iAZAlxhnIDydFezGA96zehtnRfrZDuIyPd+RC2kmBGtcs0w=="; 590 + }; 591 + }; 592 + "@types/minimatch-3.0.3" = { 593 + name = "_at_types_slash_minimatch"; 594 + packageName = "@types/minimatch"; 595 + version = "3.0.3"; 596 + src = fetchurl { 597 + url = "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.3.tgz"; 598 + sha512 = "tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA=="; 599 + }; 600 + }; 601 + "@types/minimist-1.2.0" = { 602 + name = "_at_types_slash_minimist"; 603 + packageName = "@types/minimist"; 604 + version = "1.2.0"; 605 + src = fetchurl { 606 + url = "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.0.tgz"; 607 + sha1 = "69a23a3ad29caf0097f06eda59b361ee2f0639f6"; 608 + }; 609 + }; 610 + "@types/ncp-2.0.1" = { 611 + name = "_at_types_slash_ncp"; 612 + packageName = "@types/ncp"; 613 + version = "2.0.1"; 614 + src = fetchurl { 615 + url = "https://registry.npmjs.org/@types/ncp/-/ncp-2.0.1.tgz"; 616 + sha512 = "TeiJ7uvv/92ugSqZ0v9l0eNXzutlki0aK+R1K5bfA5SYUil46ITlxLW4iNTCf55P4L5weCmaOdtxGeGWvudwPg=="; 617 + }; 618 + }; 619 + "@types/node-10.5.5" = { 116 620 name = "_at_types_slash_node"; 117 621 packageName = "@types/node"; 118 - version = "10.5.2"; 622 + version = "10.5.5"; 119 623 src = fetchurl { 120 - url = "https://registry.npmjs.org/@types/node/-/node-10.5.2.tgz"; 121 - sha512 = "m9zXmifkZsMHZBOyxZWilMwmTlpC8x5Ty360JKTiXvlXZfBWYpsg9ZZvP/Ye+iZUh+Q+MxDLjItVTWIsfwz+8Q=="; 624 + url = "https://registry.npmjs.org/@types/node/-/node-10.5.5.tgz"; 625 + sha512 = "6Qnb1gXbp3g1JX9QVJj3A6ORzc9XCyhokxUKaoonHgNXcQhmk8adhotxfkeK8El9TnFeUuH72yI6jQ5nDJKS6w=="; 122 626 }; 123 627 }; 124 - "@types/node-8.10.21" = { 628 + "@types/node-6.0.115" = { 629 + name = "_at_types_slash_node"; 630 + packageName = "@types/node"; 631 + version = "6.0.115"; 632 + src = fetchurl { 633 + url = "https://registry.npmjs.org/@types/node/-/node-6.0.115.tgz"; 634 + sha512 = "PWA07jqflLli+PAk7VaJn0MVdTw96egk5B1FxwocV/tcc3RamNGbza1ZgS0OGUsTuAYCFCboL+IlG2bPazV2Nw=="; 635 + }; 636 + }; 637 + "@types/node-8.10.23" = { 125 638 name = "_at_types_slash_node"; 126 639 packageName = "@types/node"; 127 - version = "8.10.21"; 640 + version = "8.10.23"; 641 + src = fetchurl { 642 + url = "https://registry.npmjs.org/@types/node/-/node-8.10.23.tgz"; 643 + sha512 = "aEp5ZTLr4mYhR9S85cJ+sEYkcsgFY10N1Si5m49iTAVzanZXOwp/pgw6ibFLKXxpflqm71aSWZCRtnTXXO56gA=="; 644 + }; 645 + }; 646 + "@types/rimraf-2.0.2" = { 647 + name = "_at_types_slash_rimraf"; 648 + packageName = "@types/rimraf"; 649 + version = "2.0.2"; 650 + src = fetchurl { 651 + url = "https://registry.npmjs.org/@types/rimraf/-/rimraf-2.0.2.tgz"; 652 + sha512 = "Hm/bnWq0TCy7jmjeN5bKYij9vw5GrDFWME4IuxV08278NtU/VdGbzsBohcCUJ7+QMqmUq5hpRKB39HeQWJjztQ=="; 653 + }; 654 + }; 655 + "@types/rx-4.1.1" = { 656 + name = "_at_types_slash_rx"; 657 + packageName = "@types/rx"; 658 + version = "4.1.1"; 659 + src = fetchurl { 660 + url = "https://registry.npmjs.org/@types/rx/-/rx-4.1.1.tgz"; 661 + sha1 = "598fc94a56baed975f194574e0f572fd8e627a48"; 662 + }; 663 + }; 664 + "@types/rx-core-4.0.3" = { 665 + name = "_at_types_slash_rx-core"; 666 + packageName = "@types/rx-core"; 667 + version = "4.0.3"; 668 + src = fetchurl { 669 + url = "https://registry.npmjs.org/@types/rx-core/-/rx-core-4.0.3.tgz"; 670 + sha1 = "0b3354b1238cedbe2b74f6326f139dbc7a591d60"; 671 + }; 672 + }; 673 + "@types/rx-core-binding-4.0.4" = { 674 + name = "_at_types_slash_rx-core-binding"; 675 + packageName = "@types/rx-core-binding"; 676 + version = "4.0.4"; 128 677 src = fetchurl { 129 - url = "https://registry.npmjs.org/@types/node/-/node-8.10.21.tgz"; 130 - sha512 = "87XkD9qDXm8fIax+5y7drx84cXsu34ZZqfB7Cial3Q/2lxSoJ/+DRaWckkCbxP41wFSIrrb939VhzaNxj4eY1w=="; 678 + url = "https://registry.npmjs.org/@types/rx-core-binding/-/rx-core-binding-4.0.4.tgz"; 679 + sha512 = "5pkfxnC4w810LqBPUwP5bg7SFR/USwhMSaAeZQQbEHeBp57pjKXRlXmqpMrLJB4y1oglR/c2502853uN0I+DAQ=="; 680 + }; 681 + }; 682 + "@types/rx-lite-4.0.5" = { 683 + name = "_at_types_slash_rx-lite"; 684 + packageName = "@types/rx-lite"; 685 + version = "4.0.5"; 686 + src = fetchurl { 687 + url = "https://registry.npmjs.org/@types/rx-lite/-/rx-lite-4.0.5.tgz"; 688 + sha512 = "KZk5XTR1dm/kNgBx8iVpjno6fRYtAUQWBOmj+O8j724+nk097sz4fOoHJNpCkOJUtHUurZlJC7QvSFCZHbkC+w=="; 689 + }; 690 + }; 691 + "@types/rx-lite-aggregates-4.0.3" = { 692 + name = "_at_types_slash_rx-lite-aggregates"; 693 + packageName = "@types/rx-lite-aggregates"; 694 + version = "4.0.3"; 695 + src = fetchurl { 696 + url = "https://registry.npmjs.org/@types/rx-lite-aggregates/-/rx-lite-aggregates-4.0.3.tgz"; 697 + sha512 = "MAGDAHy8cRatm94FDduhJF+iNS5//jrZ/PIfm+QYw9OCeDgbymFHChM8YVIvN2zArwsRftKgE33QfRWvQk4DPg=="; 698 + }; 699 + }; 700 + "@types/rx-lite-async-4.0.2" = { 701 + name = "_at_types_slash_rx-lite-async"; 702 + packageName = "@types/rx-lite-async"; 703 + version = "4.0.2"; 704 + src = fetchurl { 705 + url = "https://registry.npmjs.org/@types/rx-lite-async/-/rx-lite-async-4.0.2.tgz"; 706 + sha512 = "vTEv5o8l6702ZwfAM5aOeVDfUwBSDOs+ARoGmWAKQ6LOInQ8J4/zjM7ov12fuTpktUKdMQjkeCp07Vd73mPkxw=="; 707 + }; 708 + }; 709 + "@types/rx-lite-backpressure-4.0.3" = { 710 + name = "_at_types_slash_rx-lite-backpressure"; 711 + packageName = "@types/rx-lite-backpressure"; 712 + version = "4.0.3"; 713 + src = fetchurl { 714 + url = "https://registry.npmjs.org/@types/rx-lite-backpressure/-/rx-lite-backpressure-4.0.3.tgz"; 715 + sha512 = "Y6aIeQCtNban5XSAF4B8dffhIKu6aAy/TXFlScHzSxh6ivfQBQw6UjxyEJxIOt3IT49YkS+siuayM2H/Q0cmgA=="; 716 + }; 717 + }; 718 + "@types/rx-lite-coincidence-4.0.3" = { 719 + name = "_at_types_slash_rx-lite-coincidence"; 720 + packageName = "@types/rx-lite-coincidence"; 721 + version = "4.0.3"; 722 + src = fetchurl { 723 + url = "https://registry.npmjs.org/@types/rx-lite-coincidence/-/rx-lite-coincidence-4.0.3.tgz"; 724 + sha512 = "1VNJqzE9gALUyMGypDXZZXzR0Tt7LC9DdAZQ3Ou/Q0MubNU35agVUNXKGHKpNTba+fr8GdIdkC26bRDqtCQBeQ=="; 725 + }; 726 + }; 727 + "@types/rx-lite-experimental-4.0.1" = { 728 + name = "_at_types_slash_rx-lite-experimental"; 729 + packageName = "@types/rx-lite-experimental"; 730 + version = "4.0.1"; 731 + src = fetchurl { 732 + url = "https://registry.npmjs.org/@types/rx-lite-experimental/-/rx-lite-experimental-4.0.1.tgz"; 733 + sha1 = "c532f5cbdf3f2c15da16ded8930d1b2984023cbd"; 734 + }; 735 + }; 736 + "@types/rx-lite-joinpatterns-4.0.1" = { 737 + name = "_at_types_slash_rx-lite-joinpatterns"; 738 + packageName = "@types/rx-lite-joinpatterns"; 739 + version = "4.0.1"; 740 + src = fetchurl { 741 + url = "https://registry.npmjs.org/@types/rx-lite-joinpatterns/-/rx-lite-joinpatterns-4.0.1.tgz"; 742 + sha1 = "f70fe370518a8432f29158cc92ffb56b4e4afc3e"; 743 + }; 744 + }; 745 + "@types/rx-lite-testing-4.0.1" = { 746 + name = "_at_types_slash_rx-lite-testing"; 747 + packageName = "@types/rx-lite-testing"; 748 + version = "4.0.1"; 749 + src = fetchurl { 750 + url = "https://registry.npmjs.org/@types/rx-lite-testing/-/rx-lite-testing-4.0.1.tgz"; 751 + sha1 = "21b19d11f4dfd6ffef5a9d1648e9c8879bfe21e9"; 752 + }; 753 + }; 754 + "@types/rx-lite-time-4.0.3" = { 755 + name = "_at_types_slash_rx-lite-time"; 756 + packageName = "@types/rx-lite-time"; 757 + version = "4.0.3"; 758 + src = fetchurl { 759 + url = "https://registry.npmjs.org/@types/rx-lite-time/-/rx-lite-time-4.0.3.tgz"; 760 + sha512 = "ukO5sPKDRwCGWRZRqPlaAU0SKVxmWwSjiOrLhoQDoWxZWg6vyB9XLEZViKOzIO6LnTIQBlk4UylYV0rnhJLxQw=="; 761 + }; 762 + }; 763 + "@types/rx-lite-virtualtime-4.0.3" = { 764 + name = "_at_types_slash_rx-lite-virtualtime"; 765 + packageName = "@types/rx-lite-virtualtime"; 766 + version = "4.0.3"; 767 + src = fetchurl { 768 + url = "https://registry.npmjs.org/@types/rx-lite-virtualtime/-/rx-lite-virtualtime-4.0.3.tgz"; 769 + sha512 = "3uC6sGmjpOKatZSVHI2xB1+dedgml669ZRvqxy+WqmGJDVusOdyxcKfyzjW0P3/GrCiN4nmRkLVMhPwHCc5QLg=="; 770 + }; 771 + }; 772 + "@types/string-width-2.0.0" = { 773 + name = "_at_types_slash_string-width"; 774 + packageName = "@types/string-width"; 775 + version = "2.0.0"; 776 + src = fetchurl { 777 + url = "https://registry.npmjs.org/@types/string-width/-/string-width-2.0.0.tgz"; 778 + sha512 = "dA5z2WlP7uurAiveIWTDRgfr1U58Qdmo6doDeAyJlYFQ3vnUOW7BqJ+tl+M8FaLcflhrVvwIfzxJJvlz6anx4A=="; 779 + }; 780 + }; 781 + "@types/strip-ansi-3.0.0" = { 782 + name = "_at_types_slash_strip-ansi"; 783 + packageName = "@types/strip-ansi"; 784 + version = "3.0.0"; 785 + src = fetchurl { 786 + url = "https://registry.npmjs.org/@types/strip-ansi/-/strip-ansi-3.0.0.tgz"; 787 + sha1 = "9b63d453a6b54aa849182207711a08be8eea48ae"; 788 + }; 789 + }; 790 + "@types/through-0.0.29" = { 791 + name = "_at_types_slash_through"; 792 + packageName = "@types/through"; 793 + version = "0.0.29"; 794 + src = fetchurl { 795 + url = "https://registry.npmjs.org/@types/through/-/through-0.0.29.tgz"; 796 + sha512 = "9a7C5VHh+1BKblaYiq+7Tfc+EOmjMdZaD1MYtkQjSoxgB69tBjW98ry6SKsi4zEIWztLOMRuL87A3bdT/Fc/4w=="; 797 + }; 798 + }; 799 + "@types/untildify-3.0.0" = { 800 + name = "_at_types_slash_untildify"; 801 + packageName = "@types/untildify"; 802 + version = "3.0.0"; 803 + src = fetchurl { 804 + url = "https://registry.npmjs.org/@types/untildify/-/untildify-3.0.0.tgz"; 805 + sha512 = "FTktI3Y1h+gP9GTjTvXBP5v8xpH4RU6uS9POoBcGy4XkS2Np6LNtnP1eiNNth4S7P+qw2c/rugkwBasSHFzJEg=="; 806 + }; 807 + }; 808 + "@types/wrap-ansi-3.0.0" = { 809 + name = "_at_types_slash_wrap-ansi"; 810 + packageName = "@types/wrap-ansi"; 811 + version = "3.0.0"; 812 + src = fetchurl { 813 + url = "https://registry.npmjs.org/@types/wrap-ansi/-/wrap-ansi-3.0.0.tgz"; 814 + sha512 = "ltIpx+kM7g/MLRZfkbL7EsCEjfzCcScLpkg37eXEtx5kmrAKBkTJwd1GIAjDSL8wTpM6Hzn5YO4pSb91BEwu1g=="; 815 + }; 816 + }; 817 + "@types/write-file-atomic-2.1.1" = { 818 + name = "_at_types_slash_write-file-atomic"; 819 + packageName = "@types/write-file-atomic"; 820 + version = "2.1.1"; 821 + src = fetchurl { 822 + url = "https://registry.npmjs.org/@types/write-file-atomic/-/write-file-atomic-2.1.1.tgz"; 823 + sha512 = "mROQhTxpJsOm/S0eOxDHUy5WJ0yS8fmqsq/s+u5OuAh1TxBFSqVBTkLjbyxDPcKh7DeJXk0OYrCkxXlkf8zu1g=="; 131 824 }; 132 825 }; 133 826 "@webassemblyjs/ast-1.5.13" = { ··· 292 985 sha512 = "QcwogrdqcBh8Z+eUF8SG+ag5iwQSXxQJELBEHmLkk790wgQgnIMmntT2sMAMw53GiFNckArf5X0bsCA44j3lWQ=="; 293 986 }; 294 987 }; 295 - "@zeit/schemas-1.6.0" = { 988 + "@zeit/schemas-1.7.0" = { 296 989 name = "_at_zeit_slash_schemas"; 297 990 packageName = "@zeit/schemas"; 298 - version = "1.6.0"; 991 + version = "1.7.0"; 299 992 src = fetchurl { 300 - url = "https://registry.npmjs.org/@zeit/schemas/-/schemas-1.6.0.tgz"; 301 - sha512 = "fUCDfGPOU2FPOpX8+9ctuHs5+HIvuP3w6Fx+Q0eQLQs8Ow/GFa9zMgkYtVWhHS5S+dtXmBDm4ZpYcXtZgLQq0A=="; 993 + url = "https://registry.npmjs.org/@zeit/schemas/-/schemas-1.7.0.tgz"; 994 + sha512 = "Ma2HHFqwZZ5WOEMcd/8RJj70O9jy2esTvu9oaYLJSkenELKrv6vgkGeM5jB8xLRTYocpcnd2rCfpyKyhBqVphQ=="; 302 995 }; 303 996 }; 304 997 "CSSselect-0.4.1" = { ··· 598 1291 sha1 = "f291be701a2efc567a63fc7aa6afcded31430be1"; 599 1292 }; 600 1293 }; 601 - "add-stream-1.0.0" = { 602 - name = "add-stream"; 603 - packageName = "add-stream"; 604 - version = "1.0.0"; 605 - src = fetchurl { 606 - url = "https://registry.npmjs.org/add-stream/-/add-stream-1.0.0.tgz"; 607 - sha1 = "6a7990437ca736d5e1288db92bd3266d5f5cb2aa"; 608 - }; 609 - }; 610 - "addons-linter-1.0.0" = { 1294 + "addons-linter-1.2.6" = { 611 1295 name = "addons-linter"; 612 1296 packageName = "addons-linter"; 613 - version = "1.0.0"; 1297 + version = "1.2.6"; 614 1298 src = fetchurl { 615 - url = "https://registry.npmjs.org/addons-linter/-/addons-linter-1.0.0.tgz"; 616 - sha512 = "6cC0Jcf0vMVgE86TV4A1lfjx78Fp0JltA1UH2icz/cALWMMfDZrD7YpB4dMrpobclsbKFPHexNOYhS4efAc5ng=="; 1299 + url = "https://registry.npmjs.org/addons-linter/-/addons-linter-1.2.6.tgz"; 1300 + sha512 = "8WjSUoleic9x3gS8SZF0kIvffrX7WkiRPF8Xs8CZi7Yu/Xq0qX9LOYG2Q66t9ThmTeMItt/24FxirqqdyFLGgw=="; 617 1301 }; 618 1302 }; 619 - "addr-to-ip-port-1.4.3" = { 1303 + "addr-to-ip-port-1.5.1" = { 620 1304 name = "addr-to-ip-port"; 621 1305 packageName = "addr-to-ip-port"; 622 - version = "1.4.3"; 1306 + version = "1.5.1"; 623 1307 src = fetchurl { 624 - url = "https://registry.npmjs.org/addr-to-ip-port/-/addr-to-ip-port-1.4.3.tgz"; 625 - sha512 = "+KHTG8KSAFdKYmLNZp3VnKj94AZ94gDdu2ipAwxNuMmN9vpf5hdsQgk1hNXFqQOXfd+BMHokyDa1GwDAlGAtGQ=="; 1308 + url = "https://registry.npmjs.org/addr-to-ip-port/-/addr-to-ip-port-1.5.1.tgz"; 1309 + sha512 = "bA+dyydTNuQtrEDJ0g9eR7XabNhvrM5yZY0hvTbNK3yvoeC73ZqMES6E1cEqH9WPxs4uMtMsOjfwS4FmluhsAA=="; 626 1310 }; 627 1311 }; 628 1312 "addressparser-0.3.2" = { ··· 760 1444 sha1 = "73b5eeca3fab653e3d3f9422b341ad42205dc965"; 761 1445 }; 762 1446 }; 763 - "ajv-6.5.0" = { 764 - name = "ajv"; 765 - packageName = "ajv"; 766 - version = "6.5.0"; 767 - src = fetchurl { 768 - url = "https://registry.npmjs.org/ajv/-/ajv-6.5.0.tgz"; 769 - sha512 = "VDUX1oSajablmiyFyED9L1DFndg0P9h7p1F+NO8FkIzei6EPrR6Zu1n18rd5P8PqaSRd/FrWv3G1TVBqpM83gA=="; 770 - }; 771 - }; 772 1447 "ajv-6.5.2" = { 773 1448 name = "ajv"; 774 1449 packageName = "ajv"; ··· 785 1460 src = fetchurl { 786 1461 url = "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-1.5.1.tgz"; 787 1462 sha1 = "314dd0a4b3368fad3dfcdc54ede6171b886daf3c"; 788 - }; 789 - }; 790 - "ajv-keywords-2.1.1" = { 791 - name = "ajv-keywords"; 792 - packageName = "ajv-keywords"; 793 - version = "2.1.1"; 794 - src = fetchurl { 795 - url = "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-2.1.1.tgz"; 796 - sha1 = "617997fc5f60576894c435f940d819e135b80762"; 797 1463 }; 798 1464 }; 799 1465 "ajv-keywords-3.2.0" = { ··· 805 1471 sha1 = "e86b819c602cf8821ad637413698f1dec021847a"; 806 1472 }; 807 1473 }; 808 - "ajv-merge-patch-3.0.0" = { 1474 + "ajv-merge-patch-4.1.0" = { 809 1475 name = "ajv-merge-patch"; 810 1476 packageName = "ajv-merge-patch"; 811 - version = "3.0.0"; 1477 + version = "4.1.0"; 812 1478 src = fetchurl { 813 - url = "https://registry.npmjs.org/ajv-merge-patch/-/ajv-merge-patch-3.0.0.tgz"; 814 - sha1 = "76f071e391f419fe9fe3fea7e920a1ad824b2b61"; 1479 + url = "https://registry.npmjs.org/ajv-merge-patch/-/ajv-merge-patch-4.1.0.tgz"; 1480 + sha512 = "0mAYXMSauA8RZ7r+B4+EAOYcZEcO9OK5EiQCR7W7Cv4E44pJj56ZnkKLJ9/PAcOc0dT+LlV9fdDcq2TxVJfOYw=="; 815 1481 }; 816 1482 }; 817 1483 "aliasify-2.1.0" = { ··· 857 1523 src = fetchurl { 858 1524 url = "https://registry.npmjs.org/amqplib/-/amqplib-0.5.2.tgz"; 859 1525 sha512 = "l9mCs6LbydtHqRniRwYkKdqxVa6XMz3Vw1fh+2gJaaVgTM6Jk3o8RccAKWKtlhT1US5sWrFh+KKxsVUALURSIA=="; 860 - }; 861 - }; 862 - "anchor-markdown-header-0.5.7" = { 863 - name = "anchor-markdown-header"; 864 - packageName = "anchor-markdown-header"; 865 - version = "0.5.7"; 866 - src = fetchurl { 867 - url = "https://registry.npmjs.org/anchor-markdown-header/-/anchor-markdown-header-0.5.7.tgz"; 868 - sha1 = "045063d76e6a1f9cd327a57a0126aa0fdec371a7"; 869 1526 }; 870 1527 }; 871 1528 "ansi-0.3.1" = { ··· 1120 1777 sha1 = "ee49736b639b4f108b6e9e626c6da99306b41692"; 1121 1778 }; 1122 1779 }; 1780 + "apollo-codegen-0.19.1" = { 1781 + name = "apollo-codegen"; 1782 + packageName = "apollo-codegen"; 1783 + version = "0.19.1"; 1784 + src = fetchurl { 1785 + url = "https://registry.npmjs.org/apollo-codegen/-/apollo-codegen-0.19.1.tgz"; 1786 + sha512 = "jlxz/b5iinRWfh48hXdmMtrjTPn/rDok0Z3b7icvkiaD6I30w4sq9B+JDkFbLnkldzsFLV2BZtBDa/dkZhx8Ng=="; 1787 + }; 1788 + }; 1123 1789 "append-0.1.1" = { 1124 1790 name = "append"; 1125 1791 packageName = "append"; ··· 1579 2245 sha1 = "559be18376d08a4ec4dbe80877d27818639b2df7"; 1580 2246 }; 1581 2247 }; 1582 - "asn1-0.2.3" = { 2248 + "asn1-0.2.4" = { 1583 2249 name = "asn1"; 1584 2250 packageName = "asn1"; 1585 - version = "0.2.3"; 2251 + version = "0.2.4"; 1586 2252 src = fetchurl { 1587 - url = "https://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz"; 1588 - sha1 = "dac8787713c9966849fc8180777ebe9c1ddf3b86"; 2253 + url = "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz"; 2254 + sha512 = "jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg=="; 1589 2255 }; 1590 2256 }; 1591 2257 "asn1.js-4.10.1" = { ··· 1876 2542 sha1 = "00f35b2d27ac91b1f0d3ef2084c98cf1d1f0adc3"; 1877 2543 }; 1878 2544 }; 1879 - "aws-sdk-2.275.1" = { 2545 + "aws-sdk-2.286.2" = { 1880 2546 name = "aws-sdk"; 1881 2547 packageName = "aws-sdk"; 1882 - version = "2.275.1"; 2548 + version = "2.286.2"; 1883 2549 src = fetchurl { 1884 - url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.275.1.tgz"; 1885 - sha512 = "lcpgoiHLhdcolUT7aJdg/CmlYO5ecf+3A+4dIceO72mFovCWZde1Rvr07QNbQ8gT0paqr5j2rs2b6c23Y/K0RQ=="; 2550 + url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.286.2.tgz"; 2551 + sha512 = "46a/2+rGEgIlmUz08vZOkYFmZIgj+An/cc+Ngz9XBLkAZbx+3sBzOrxexrlVV69MPkMbckbeZjIq8NEJWV5gPw=="; 1886 2552 }; 1887 2553 }; 1888 - "aws-sign-0.2.0" = { 2554 + "aws-sign-0.2.1" = { 1889 2555 name = "aws-sign"; 1890 2556 packageName = "aws-sign"; 1891 - version = "0.2.0"; 2557 + version = "0.2.1"; 1892 2558 src = fetchurl { 1893 - url = "https://registry.npmjs.org/aws-sign/-/aws-sign-0.2.0.tgz"; 1894 - sha1 = "c55013856c8194ec854a0cbec90aab5a04ce3ac5"; 2559 + url = "https://registry.npmjs.org/aws-sign/-/aws-sign-0.2.1.tgz"; 2560 + sha512 = "cQFl6jK/Lq416OqpT+lb1RIay1wShuQjHF3/kAJbyMvruV8vSpDahaGNkbeupdGRgXR8Ii0O/ZIbTQPdp+l3pA=="; 1895 2561 }; 1896 2562 }; 1897 2563 "aws-sign2-0.6.0" = { ··· 2281 2947 sha1 = "bdc4b378292490ce77e788ee189f291ce5ae25a6"; 2282 2948 }; 2283 2949 }; 2284 - "azure-storage-2.10.0" = { 2950 + "azure-storage-2.10.1" = { 2285 2951 name = "azure-storage"; 2286 2952 packageName = "azure-storage"; 2287 - version = "2.10.0"; 2953 + version = "2.10.1"; 2288 2954 src = fetchurl { 2289 - url = "https://registry.npmjs.org/azure-storage/-/azure-storage-2.10.0.tgz"; 2290 - sha1 = "020ac343262c5552ef86516cbb7679241e95e4de"; 2955 + url = "https://registry.npmjs.org/azure-storage/-/azure-storage-2.10.1.tgz"; 2956 + sha512 = "rnFo1uMIPtilusRCpK91tfY3P4Q7qRsDNwriXdp+OeTIGkGt0cTxL4mhqYfNPYPK+WBQmBdGWhOk+iROM05dcw=="; 2291 2957 }; 2292 2958 }; 2293 2959 "babel-code-frame-6.26.0" = { ··· 2497 3163 sha1 = "f616eda9d3e4b66b8ca7fca79f695722c5f8e26f"; 2498 3164 }; 2499 3165 }; 2500 - "bail-1.0.3" = { 2501 - name = "bail"; 2502 - packageName = "bail"; 2503 - version = "1.0.3"; 2504 - src = fetchurl { 2505 - url = "https://registry.npmjs.org/bail/-/bail-1.0.3.tgz"; 2506 - sha512 = "1X8CnjFVQ+a+KW36uBNMTU5s8+v5FzeqrP7hTG5aTb4aPreSbZJlhwPon9VKMuEVgV++JM+SQrALY3kr7eswdg=="; 2507 - }; 2508 - }; 2509 3166 "balanced-match-1.0.0" = { 2510 3167 name = "balanced-match"; 2511 3168 packageName = "balanced-match"; ··· 2794 3451 sha1 = "159a49b9a9714c1fb102f2e0ed1906fab6a450f4"; 2795 3452 }; 2796 3453 }; 2797 - "big-integer-1.6.32" = { 3454 + "big-integer-1.6.34" = { 2798 3455 name = "big-integer"; 2799 3456 packageName = "big-integer"; 2800 - version = "1.6.32"; 3457 + version = "1.6.34"; 2801 3458 src = fetchurl { 2802 - url = "https://registry.npmjs.org/big-integer/-/big-integer-1.6.32.tgz"; 2803 - sha512 = "ljKJdR3wk9thHfLj4DtrNiOSTxvGFaMjWrG4pW75juXC4j7+XuKJVFdg4kgFMYp85PVkO05dFMj2dk2xVsH4xw=="; 3459 + url = "https://registry.npmjs.org/big-integer/-/big-integer-1.6.34.tgz"; 3460 + sha512 = "+w6B0Uo0ZvTSzDkXjoBCTNK0oe+aVL+yPi7kwGZm8hd8+Nj1AFPoxoq1Bl/mEu/G/ivOkUc1LRqVR0XeWFUzuA=="; 2804 3461 }; 2805 3462 }; 2806 3463 "big.js-3.2.0" = { ··· 2956 3613 sha512 = "FRe/+MYBePev7Yb+BXSclkVuDxb/w+gUbao6nVHYQRaKO7aXE+ARRlL3phqm6Rdhw5CRVoLMbLd49nxmCuUhUQ=="; 2957 3614 }; 2958 3615 }; 2959 - "bittorrent-peerid-1.2.0" = { 3616 + "bittorrent-peerid-1.3.0" = { 2960 3617 name = "bittorrent-peerid"; 2961 3618 packageName = "bittorrent-peerid"; 2962 - version = "1.2.0"; 3619 + version = "1.3.0"; 2963 3620 src = fetchurl { 2964 - url = "https://registry.npmjs.org/bittorrent-peerid/-/bittorrent-peerid-1.2.0.tgz"; 2965 - sha1 = "9f675612f0e6afc6ef3450dfba51ff7238abf371"; 3621 + url = "https://registry.npmjs.org/bittorrent-peerid/-/bittorrent-peerid-1.3.0.tgz"; 3622 + sha512 = "SYd5H3RbN1ex+TrWAKXkEkASFWxAR7Tk6iLt9tfAT9ehBvZb/Y3AQDVRVJynlrixcWpnmsLYKI7tkRWgp7ORoQ=="; 2966 3623 }; 2967 3624 }; 2968 - "bittorrent-protocol-2.4.2" = { 3625 + "bittorrent-protocol-3.0.1" = { 2969 3626 name = "bittorrent-protocol"; 2970 3627 packageName = "bittorrent-protocol"; 2971 - version = "2.4.2"; 3628 + version = "3.0.1"; 2972 3629 src = fetchurl { 2973 - url = "https://registry.npmjs.org/bittorrent-protocol/-/bittorrent-protocol-2.4.2.tgz"; 2974 - sha512 = "ZphU6H9B0Tf99P2noVmyKkT7Bf8FZG6T3VSurJva8ozvvCqSfLMnI7X4Khxn5qXXvw71/R9Vfq+aJvMgV9lquQ=="; 3630 + url = "https://registry.npmjs.org/bittorrent-protocol/-/bittorrent-protocol-3.0.1.tgz"; 3631 + sha512 = "hnvOzAu9u+2H0OLLL5byoFdz6oz5f3bx5f7R+ItUohTHMq9TgUhEJfcjo7xWtQHSKOVciYWwYTJ4EjczF5RX2A=="; 2975 3632 }; 2976 3633 }; 2977 3634 "bittorrent-tracker-7.7.0" = { ··· 2983 3640 sha1 = "ffd2eabc141d36ed5c1817df7e992f91fd7fc65c"; 2984 3641 }; 2985 3642 }; 2986 - "bittorrent-tracker-9.9.1" = { 3643 + "bittorrent-tracker-9.10.0" = { 2987 3644 name = "bittorrent-tracker"; 2988 3645 packageName = "bittorrent-tracker"; 2989 - version = "9.9.1"; 3646 + version = "9.10.0"; 2990 3647 src = fetchurl { 2991 - url = "https://registry.npmjs.org/bittorrent-tracker/-/bittorrent-tracker-9.9.1.tgz"; 2992 - sha512 = "PdCrhMP0ajbutZEcw5FLd/pTvcxr7m5NTXEck3t1qS+UMcC9+pie2Zd59TSFefia2ipDlstOhVAUTOlaoZLlDQ=="; 3648 + url = "https://registry.npmjs.org/bittorrent-tracker/-/bittorrent-tracker-9.10.0.tgz"; 3649 + sha512 = "mL/hLX5aT9D0ywIcleksJ3vaggxguwzyBTWEYU/8s7f3x8rvtB2SDNaQ548/CezqfVVxGNAHlBxctw4EeXSp8Q=="; 2993 3650 }; 2994 3651 }; 2995 3652 "bl-0.8.2" = { ··· 3161 3818 src = fetchurl { 3162 3819 url = "https://registry.npmjs.org/body/-/body-0.1.0.tgz"; 3163 3820 sha1 = "e714fe28cd8848aa34cdf2c9f242bbe2e15d1cd8"; 3164 - }; 3165 - }; 3166 - "body-5.1.0" = { 3167 - name = "body"; 3168 - packageName = "body"; 3169 - version = "5.1.0"; 3170 - src = fetchurl { 3171 - url = "https://registry.npmjs.org/body/-/body-5.1.0.tgz"; 3172 - sha1 = "e4ba0ce410a46936323367609ecb4e6553125069"; 3173 3821 }; 3174 3822 }; 3175 3823 "body-parser-1.13.3" = { ··· 3271 3919 sha1 = "55fa64920d9670087d44150404525d59f9511c20"; 3272 3920 }; 3273 3921 }; 3274 - "boundary-1.0.1" = { 3275 - name = "boundary"; 3276 - packageName = "boundary"; 3277 - version = "1.0.1"; 3278 - src = fetchurl { 3279 - url = "https://registry.npmjs.org/boundary/-/boundary-1.0.1.tgz"; 3280 - sha1 = "4d67dc2602c0cc16dd9bce7ebf87e948290f5812"; 3281 - }; 3282 - }; 3283 3922 "bower-1.8.4" = { 3284 3923 name = "bower"; 3285 3924 packageName = "bower"; ··· 3595 4234 sha1 = "6d1bb601b07a4efced97094132093027c95bc298"; 3596 4235 }; 3597 4236 }; 3598 - "buffer-5.1.0" = { 4237 + "buffer-5.2.0" = { 3599 4238 name = "buffer"; 3600 4239 packageName = "buffer"; 3601 - version = "5.1.0"; 4240 + version = "5.2.0"; 3602 4241 src = fetchurl { 3603 - url = "https://registry.npmjs.org/buffer/-/buffer-5.1.0.tgz"; 3604 - sha512 = "YkIRgwsZwJWTnyQrsBTWefizHh+8GYj3kbL1BTiAQ/9pwpino0G7B2gp5tx/FUBqUlvtxV85KNR3mwfAtv15Yw=="; 4242 + url = "https://registry.npmjs.org/buffer/-/buffer-5.2.0.tgz"; 4243 + sha512 = "nUJyfChH7PMJy75eRDCCKtszSEFokUNXC1hNVSe+o+VdcgvDPLs20k3v8UXI8ruRYAJiYtyRea8mYyqPxoHWDw=="; 3605 4244 }; 3606 4245 }; 3607 4246 "buffer-alloc-1.2.0" = { ··· 3703 4342 sha512 = "RiWIenusJsmI2KcvqQABB83tLxCByE3upSP8QU3rJDMVFGPWLvPQJt/O1Su9moRWeH7d+Q2HYb68f6+v+tw2vg=="; 3704 4343 }; 3705 4344 }; 3706 - "buffer-from-1.1.0" = { 4345 + "buffer-from-1.1.1" = { 3707 4346 name = "buffer-from"; 3708 4347 packageName = "buffer-from"; 3709 - version = "1.1.0"; 4348 + version = "1.1.1"; 3710 4349 src = fetchurl { 3711 - url = "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.0.tgz"; 3712 - sha512 = "c5mRlguI/Pe2dSZmpER62rSCu0ryKmWddzRYsuXc50U2/g8jMOulc31VZMa4mYx31U5xsmSOpDCgH88Vl9cDGQ=="; 4350 + url = "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz"; 4351 + sha512 = "MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A=="; 3713 4352 }; 3714 4353 }; 3715 4354 "buffer-indexof-1.1.1" = { ··· 3766 4405 sha1 = "8de37f5a300730c305fc3edd9f93348ee8a46288"; 3767 4406 }; 3768 4407 }; 3769 - "bufferutil-3.0.5" = { 4408 + "bufferutil-4.0.0" = { 3770 4409 name = "bufferutil"; 3771 4410 packageName = "bufferutil"; 3772 - version = "3.0.5"; 4411 + version = "4.0.0"; 3773 4412 src = fetchurl { 3774 - url = "https://registry.npmjs.org/bufferutil/-/bufferutil-3.0.5.tgz"; 3775 - sha512 = "0fUEthLqfCkYspEuP0vmiAe+PsXslE+AlILb2rmS9I4tAdm3SmpCI69M66zQL20GQEszdbXyVN6q+cpG/yhYlg=="; 4413 + url = "https://registry.npmjs.org/bufferutil/-/bufferutil-4.0.0.tgz"; 4414 + sha512 = "jpnqMVLo7sqfUY2W92RC4jjj9TuiOSkjB0k43TxPcrBSntZwXUOl8Krfd3eVEdApuScpSTwYKntm/dXU2T8gnw=="; 3776 4415 }; 3777 4416 }; 3778 4417 "bufferview-1.0.1" = { ··· 4234 4873 sha512 = "Cg8/ZSBEa8ZVY9HspcGUYaK63d/bN7rqS3CYCzEGUxuYv6UlmcjzDUz2fCFFHyTvUW5Pk0I+3hkA3iXlIj6guA=="; 4235 4874 }; 4236 4875 }; 4237 - "ccount-1.0.3" = { 4238 - name = "ccount"; 4239 - packageName = "ccount"; 4240 - version = "1.0.3"; 4241 - src = fetchurl { 4242 - url = "https://registry.npmjs.org/ccount/-/ccount-1.0.3.tgz"; 4243 - sha512 = "Jt9tIBkRc9POUof7QA/VwWd+58fKkEEfI+/t1/eOlxKM7ZhrczNzMFefge7Ai+39y1pR/pP6cI19guHy3FSLmw=="; 4244 - }; 4245 - }; 4246 4876 "center-align-0.1.3" = { 4247 4877 name = "center-align"; 4248 4878 packageName = "center-align"; ··· 4324 4954 sha512 = "LUHGS/dge4ujbXMJrnihYMcL4AoOweGnw9Tp3kQuqy1Kx5c1qKjqvMJZ6nVJPMWJtKCTN72ZogH3oeSO9g9rXQ=="; 4325 4955 }; 4326 4956 }; 4957 + "chalk-2.3.1" = { 4958 + name = "chalk"; 4959 + packageName = "chalk"; 4960 + version = "2.3.1"; 4961 + src = fetchurl { 4962 + url = "https://registry.npmjs.org/chalk/-/chalk-2.3.1.tgz"; 4963 + sha512 = "QUU4ofkDoMIVO7hcx1iPTISs88wsO8jA92RQIm4JAwZvFGGAV2hSAA1NX7oVj2Ej2Q6NDTcRDjPTFrMCRZoJ6g=="; 4964 + }; 4965 + }; 4327 4966 "chalk-2.4.0" = { 4328 4967 name = "chalk"; 4329 4968 packageName = "chalk"; ··· 4342 4981 sha512 = "ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ=="; 4343 4982 }; 4344 4983 }; 4345 - "character-entities-1.2.2" = { 4346 - name = "character-entities"; 4347 - packageName = "character-entities"; 4348 - version = "1.2.2"; 4349 - src = fetchurl { 4350 - url = "https://registry.npmjs.org/character-entities/-/character-entities-1.2.2.tgz"; 4351 - sha512 = "sMoHX6/nBiy3KKfC78dnEalnpn0Az0oSNvqUWYTtYrhRI5iUIYsROU48G+E+kMFQzqXaJ8kHJZ85n7y6/PHgwQ=="; 4352 - }; 4353 - }; 4354 - "character-entities-html4-1.1.2" = { 4355 - name = "character-entities-html4"; 4356 - packageName = "character-entities-html4"; 4357 - version = "1.1.2"; 4358 - src = fetchurl { 4359 - url = "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-1.1.2.tgz"; 4360 - sha512 = "sIrXwyna2+5b0eB9W149izTPJk/KkJTg6mEzDGibwBUkyH1SbDa+nf515Ppdi3MaH35lW0JFJDWeq9Luzes1Iw=="; 4361 - }; 4362 - }; 4363 - "character-entities-legacy-1.1.2" = { 4364 - name = "character-entities-legacy"; 4365 - packageName = "character-entities-legacy"; 4366 - version = "1.1.2"; 4984 + "change-case-3.0.2" = { 4985 + name = "change-case"; 4986 + packageName = "change-case"; 4987 + version = "3.0.2"; 4367 4988 src = fetchurl { 4368 - url = "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-1.1.2.tgz"; 4369 - sha512 = "9NB2VbXtXYWdXzqrvAHykE/f0QJxzaKIpZ5QzNZrrgQ7Iyxr2vnfS8fCBNVW9nUEZE0lo57nxKRqnzY/dKrwlA=="; 4989 + url = "https://registry.npmjs.org/change-case/-/change-case-3.0.2.tgz"; 4990 + sha512 = "Mww+SLF6MZ0U6kdg11algyKd5BARbyM4TbFBepwowYSR5ClfQGCGtxNXgykpN0uF/bstWeaGDT4JWaDh8zWAHA=="; 4370 4991 }; 4371 4992 }; 4372 4993 "character-parser-1.2.1" = { ··· 4387 5008 sha1 = "c7ce28f36d4bcd9744e5ffc2c5fcde1c73261fc0"; 4388 5009 }; 4389 5010 }; 4390 - "character-reference-invalid-1.1.2" = { 4391 - name = "character-reference-invalid"; 4392 - packageName = "character-reference-invalid"; 4393 - version = "1.1.2"; 4394 - src = fetchurl { 4395 - url = "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-1.1.2.tgz"; 4396 - sha512 = "7I/xceXfKyUJmSAn/jw8ve/9DyOP7XxufNYLI9Px7CmsKgEUaZLUTax6nZxGQtaoiZCjpu6cHPj20xC/vqRReQ=="; 4397 - }; 4398 - }; 4399 5011 "chardet-0.4.2" = { 4400 5012 name = "chardet"; 4401 5013 packageName = "chardet"; ··· 4655 5267 src = fetchurl { 4656 5268 url = "https://registry.npmjs.org/clean-css/-/clean-css-4.1.11.tgz"; 4657 5269 sha1 = "2ecdf145aba38f54740f26cefd0ff3e03e125d6a"; 5270 + }; 5271 + }; 5272 + "clean-css-4.2.0" = { 5273 + name = "clean-css"; 5274 + packageName = "clean-css"; 5275 + version = "4.2.0"; 5276 + src = fetchurl { 5277 + url = "https://registry.npmjs.org/clean-css/-/clean-css-4.2.0.tgz"; 5278 + sha1 = "0a9d62040cddc7904c5edaee9bdeca642d9b9c1c"; 4658 5279 }; 4659 5280 }; 4660 5281 "clean-stack-1.3.0" = { ··· 5107 5728 sha1 = "6355d32cf1b04cdff6b484e5e711782b2f0c39be"; 5108 5729 }; 5109 5730 }; 5110 - "collapse-white-space-1.0.4" = { 5111 - name = "collapse-white-space"; 5112 - packageName = "collapse-white-space"; 5113 - version = "1.0.4"; 5114 - src = fetchurl { 5115 - url = "https://registry.npmjs.org/collapse-white-space/-/collapse-white-space-1.0.4.tgz"; 5116 - sha512 = "YfQ1tAUZm561vpYD+5eyWN8+UsceQbSrqqlc/6zDY2gtAE+uZLSdkkovhnGpmCThsvKBFakq4EdY/FF93E8XIw=="; 5117 - }; 5118 - }; 5119 5731 "collection-visit-1.0.0" = { 5120 5732 name = "collection-visit"; 5121 5733 packageName = "collection-visit"; ··· 5152 5764 sha1 = "4b1415304cf50028ea81643643bd82ea05803689"; 5153 5765 }; 5154 5766 }; 5155 - "color-string-1.5.2" = { 5767 + "color-string-1.5.3" = { 5156 5768 name = "color-string"; 5157 5769 packageName = "color-string"; 5158 - version = "1.5.2"; 5770 + version = "1.5.3"; 5159 5771 src = fetchurl { 5160 - url = "https://registry.npmjs.org/color-string/-/color-string-1.5.2.tgz"; 5161 - sha1 = "26e45814bc3c9a7cbd6751648a41434514a773a9"; 5772 + url = "https://registry.npmjs.org/color-string/-/color-string-1.5.3.tgz"; 5773 + sha512 = "dC2C5qeWoYkxki5UAXapdjqO672AM4vZuPGRQfO8b5HKuKGBbKWpITyDYN7TOFKvRW7kOgAn3746clDBMDJyQw=="; 5162 5774 }; 5163 5775 }; 5164 5776 "color-support-1.1.3" = { ··· 5206 5818 sha1 = "168a4701756b6a7f51a12ce0c97bfa28c084ed63"; 5207 5819 }; 5208 5820 }; 5209 - "colors-1.3.0" = { 5821 + "colors-1.3.1" = { 5210 5822 name = "colors"; 5211 5823 packageName = "colors"; 5212 - version = "1.3.0"; 5824 + version = "1.3.1"; 5213 5825 src = fetchurl { 5214 - url = "https://registry.npmjs.org/colors/-/colors-1.3.0.tgz"; 5215 - sha512 = "EDpX3a7wHMWFA7PUHWPHNWqOxIIRSJetuwl0AS5Oi/5FMV8kWm69RTlgm00GKjBO1xFHMtBbL49yRtMMdticBw=="; 5826 + url = "https://registry.npmjs.org/colors/-/colors-1.3.1.tgz"; 5827 + sha512 = "jg/vxRmv430jixZrC+La5kMbUWqIg32/JsYNZb94+JEmzceYbWKTsv1OuTp+7EaqiaWRR2tPcykibwCRgclIsw=="; 5216 5828 }; 5217 5829 }; 5218 5830 "colour-0.7.1" = { ··· 5269 5881 sha1 = "723e7df6e801ac5613113a7e445a9b69cb632818"; 5270 5882 }; 5271 5883 }; 5272 - "command-join-2.0.0" = { 5273 - name = "command-join"; 5274 - packageName = "command-join"; 5275 - version = "2.0.0"; 5884 + "command-exists-1.2.7" = { 5885 + name = "command-exists"; 5886 + packageName = "command-exists"; 5887 + version = "1.2.7"; 5276 5888 src = fetchurl { 5277 - url = "https://registry.npmjs.org/command-join/-/command-join-2.0.0.tgz"; 5278 - sha1 = "52e8b984f4872d952ff1bdc8b98397d27c7144cf"; 5889 + url = "https://registry.npmjs.org/command-exists/-/command-exists-1.2.7.tgz"; 5890 + sha512 = "doWDvhXCcW5LK0cIUWrOQ8oMFXJv3lEQCkJpGVjM8v9SV0uhqYXB943538tEA2CiaWqSyuYUGAm5ezDwEx9xlw=="; 5279 5891 }; 5280 5892 }; 5281 5893 "commander-0.6.1" = { ··· 5422 6034 sha1 = "c0c352501cf6f52e9124e3ef89c9806e2022ebef"; 5423 6035 }; 5424 6036 }; 5425 - "common-tags-1.7.2" = { 6037 + "common-tags-1.8.0" = { 5426 6038 name = "common-tags"; 5427 6039 packageName = "common-tags"; 5428 - version = "1.7.2"; 6040 + version = "1.8.0"; 5429 6041 src = fetchurl { 5430 - url = "https://registry.npmjs.org/common-tags/-/common-tags-1.7.2.tgz"; 5431 - sha512 = "joj9ZlUOjCrwdbmiLqafeUSgkUM74NqhLsZtSqDmhKudaIY197zTrb8JMl31fMnCUuxwFT23eC/oWvrZzDLRJQ=="; 6042 + url = "https://registry.npmjs.org/common-tags/-/common-tags-1.8.0.tgz"; 6043 + sha512 = "6P6g0uetGpW/sdyUy/iQQCbFF0kWVMSIVSyYz7Zgjcgh8mgw8PQzDNZeyZ5DQ2gM7LBoZPHmnjz8rUthkBG5tw=="; 5432 6044 }; 5433 6045 }; 5434 6046 "commondir-1.0.1" = { ··· 5526 6138 packageName = "compression"; 5527 6139 version = "1.5.2"; 5528 6140 src = fetchurl { 5529 - url = "http://registry.npmjs.org/compression/-/compression-1.5.2.tgz"; 6141 + url = "https://registry.npmjs.org/compression/-/compression-1.5.2.tgz"; 5530 6142 sha1 = "b03b8d86e6f8ad29683cba8df91ddc6ffc77b395"; 5531 6143 }; 5532 6144 }; 5533 - "compression-1.7.2" = { 6145 + "compression-1.7.3" = { 5534 6146 name = "compression"; 5535 6147 packageName = "compression"; 5536 - version = "1.7.2"; 6148 + version = "1.7.3"; 5537 6149 src = fetchurl { 5538 - url = "http://registry.npmjs.org/compression/-/compression-1.7.2.tgz"; 5539 - sha1 = "aaffbcd6aaf854b44ebb280353d5ad1651f59a69"; 6150 + url = "https://registry.npmjs.org/compression/-/compression-1.7.3.tgz"; 6151 + sha512 = "HSjyBG5N1Nnz7tF2+O7A9XUhyjru71/fwgNb7oIsEVHR0WShfs2tIS/EySLgiTe98aOK18YDlMXpzjCXY/n9mg=="; 5540 6152 }; 5541 6153 }; 5542 6154 "concat-map-0.0.1" = { ··· 5791 6403 sha1 = "5a25047bc76f73072667c8cb52c989888f494c63"; 5792 6404 }; 5793 6405 }; 6406 + "constant-case-2.0.0" = { 6407 + name = "constant-case"; 6408 + packageName = "constant-case"; 6409 + version = "2.0.0"; 6410 + src = fetchurl { 6411 + url = "https://registry.npmjs.org/constant-case/-/constant-case-2.0.0.tgz"; 6412 + sha1 = "4175764d389d3fa9c8ecd29186ed6005243b6a46"; 6413 + }; 6414 + }; 5794 6415 "constantinople-3.0.2" = { 5795 6416 name = "constantinople"; 5796 6417 packageName = "constantinople"; ··· 5882 6503 sha1 = "0e790b3abfef90f6ecb77ae8585db9099caf7578"; 5883 6504 }; 5884 6505 }; 5885 - "continuable-cache-0.3.1" = { 5886 - name = "continuable-cache"; 5887 - packageName = "continuable-cache"; 5888 - version = "0.3.1"; 5889 - src = fetchurl { 5890 - url = "https://registry.npmjs.org/continuable-cache/-/continuable-cache-0.3.1.tgz"; 5891 - sha1 = "bd727a7faed77e71ff3985ac93351a912733ad0f"; 5892 - }; 5893 - }; 5894 - "conventional-changelog-1.1.24" = { 5895 - name = "conventional-changelog"; 5896 - packageName = "conventional-changelog"; 5897 - version = "1.1.24"; 5898 - src = fetchurl { 5899 - url = "https://registry.npmjs.org/conventional-changelog/-/conventional-changelog-1.1.24.tgz"; 5900 - sha512 = "2WcSUst4Y3Z4hHvoMTWXMJr/DmgVdLiMOVY1Kak2LfFz+GIz2KDp5naqbFesYbfXPmaZ5p491dO0FWZIJoJw1Q=="; 5901 - }; 5902 - }; 5903 6506 "conventional-changelog-angular-1.6.6" = { 5904 6507 name = "conventional-changelog-angular"; 5905 6508 packageName = "conventional-changelog-angular"; ··· 5909 6512 sha512 = "suQnFSqCxRwyBxY68pYTsFkG0taIdinHLNEAX5ivtw8bCRnIgnpvcHmlR/yjUyZIrNPYAoXlY1WiEKWgSE4BNg=="; 5910 6513 }; 5911 6514 }; 5912 - "conventional-changelog-atom-0.2.8" = { 5913 - name = "conventional-changelog-atom"; 5914 - packageName = "conventional-changelog-atom"; 5915 - version = "0.2.8"; 5916 - src = fetchurl { 5917 - url = "https://registry.npmjs.org/conventional-changelog-atom/-/conventional-changelog-atom-0.2.8.tgz"; 5918 - sha512 = "8pPZqhMbrnltNBizjoDCb/Sz85KyUXNDQxuAEYAU5V/eHn0okMBVjqc8aHWYpHrytyZWvMGbayOlDv7i8kEf6g=="; 5919 - }; 5920 - }; 5921 - "conventional-changelog-cli-1.3.22" = { 5922 - name = "conventional-changelog-cli"; 5923 - packageName = "conventional-changelog-cli"; 5924 - version = "1.3.22"; 5925 - src = fetchurl { 5926 - url = "https://registry.npmjs.org/conventional-changelog-cli/-/conventional-changelog-cli-1.3.22.tgz"; 5927 - sha512 = "pnjdIJbxjkZ5VdAX/H1wndr1G10CY8MuZgnXuJhIHglOXfIrXygb7KZC836GW9uo1u8PjEIvIw/bKX0lOmOzZg=="; 5928 - }; 5929 - }; 5930 - "conventional-changelog-codemirror-0.3.8" = { 5931 - name = "conventional-changelog-codemirror"; 5932 - packageName = "conventional-changelog-codemirror"; 5933 - version = "0.3.8"; 5934 - src = fetchurl { 5935 - url = "https://registry.npmjs.org/conventional-changelog-codemirror/-/conventional-changelog-codemirror-0.3.8.tgz"; 5936 - sha512 = "3HFZKtBXTaUCHvz7ai6nk2+psRIkldDoNzCsom0egDtVmPsvvHZkzjynhdQyULfacRSsBTaiQ0ol6nBOL4dDiQ=="; 5937 - }; 5938 - }; 5939 6515 "conventional-changelog-core-2.0.11" = { 5940 6516 name = "conventional-changelog-core"; 5941 6517 packageName = "conventional-changelog-core"; ··· 5945 6521 sha512 = "HvTE6RlqeEZ/NFPtQeFLsIDOLrGP3bXYr7lFLMhCVsbduF1MXIe8OODkwMFyo1i9ku9NWBwVnVn0jDmIFXjDRg=="; 5946 6522 }; 5947 6523 }; 5948 - "conventional-changelog-ember-0.3.12" = { 5949 - name = "conventional-changelog-ember"; 5950 - packageName = "conventional-changelog-ember"; 5951 - version = "0.3.12"; 5952 - src = fetchurl { 5953 - url = "https://registry.npmjs.org/conventional-changelog-ember/-/conventional-changelog-ember-0.3.12.tgz"; 5954 - sha512 = "mmJzA7uzbrOqeF89dMMi6z17O07ORTXlTMArnLG9ZTX4oLaKNolUlxFUFlFm9JUoVWajVpaHQWjxH1EOQ+ARoQ=="; 5955 - }; 5956 - }; 5957 - "conventional-changelog-eslint-1.0.9" = { 5958 - name = "conventional-changelog-eslint"; 5959 - packageName = "conventional-changelog-eslint"; 5960 - version = "1.0.9"; 5961 - src = fetchurl { 5962 - url = "https://registry.npmjs.org/conventional-changelog-eslint/-/conventional-changelog-eslint-1.0.9.tgz"; 5963 - sha512 = "h87nfVh2fdk9fJIvz26wCBsbDC/KxqCc5wSlNMZbXcARtbgNbNDIF7Y7ctokFdnxkzVdaHsbINkh548T9eBA7Q=="; 5964 - }; 5965 - }; 5966 - "conventional-changelog-express-0.3.6" = { 5967 - name = "conventional-changelog-express"; 5968 - packageName = "conventional-changelog-express"; 5969 - version = "0.3.6"; 5970 - src = fetchurl { 5971 - url = "https://registry.npmjs.org/conventional-changelog-express/-/conventional-changelog-express-0.3.6.tgz"; 5972 - sha512 = "3iWVtBJZ9RnRnZveNDzOD8QRn6g6vUif0qVTWWyi5nUIAbuN1FfPVyKdAlJJfp5Im+dE8Kiy/d2SpaX/0X678Q=="; 5973 - }; 5974 - }; 5975 - "conventional-changelog-jquery-0.1.0" = { 5976 - name = "conventional-changelog-jquery"; 5977 - packageName = "conventional-changelog-jquery"; 5978 - version = "0.1.0"; 5979 - src = fetchurl { 5980 - url = "https://registry.npmjs.org/conventional-changelog-jquery/-/conventional-changelog-jquery-0.1.0.tgz"; 5981 - sha1 = "0208397162e3846986e71273b6c79c5b5f80f510"; 5982 - }; 5983 - }; 5984 - "conventional-changelog-jscs-0.1.0" = { 5985 - name = "conventional-changelog-jscs"; 5986 - packageName = "conventional-changelog-jscs"; 5987 - version = "0.1.0"; 5988 - src = fetchurl { 5989 - url = "https://registry.npmjs.org/conventional-changelog-jscs/-/conventional-changelog-jscs-0.1.0.tgz"; 5990 - sha1 = "0479eb443cc7d72c58bf0bcf0ef1d444a92f0e5c"; 5991 - }; 5992 - }; 5993 - "conventional-changelog-jshint-0.3.8" = { 5994 - name = "conventional-changelog-jshint"; 5995 - packageName = "conventional-changelog-jshint"; 5996 - version = "0.3.8"; 5997 - src = fetchurl { 5998 - url = "https://registry.npmjs.org/conventional-changelog-jshint/-/conventional-changelog-jshint-0.3.8.tgz"; 5999 - sha512 = "hn9QU4ZI/5V50wKPJNPGT4gEWgiBFpV6adieILW4MaUFynuDYOvQ71EMSj3EznJyKi/KzuXpc9dGmX8njZMjig=="; 6000 - }; 6001 - }; 6002 6524 "conventional-changelog-preset-loader-1.1.8" = { 6003 6525 name = "conventional-changelog-preset-loader"; 6004 6526 packageName = "conventional-changelog-preset-loader"; ··· 6035 6557 sha512 = "BoMaddIEJ6B4QVMSDu9IkVImlGOSGA1I2BQyOZHeLQ6qVOJLcLKn97+fL6dGbzWEiqDzfH4OkcveULmeq2MHFQ=="; 6036 6558 }; 6037 6559 }; 6038 - "conventional-recommended-bump-1.2.1" = { 6560 + "conventional-recommended-bump-2.0.9" = { 6039 6561 name = "conventional-recommended-bump"; 6040 6562 packageName = "conventional-recommended-bump"; 6041 - version = "1.2.1"; 6563 + version = "2.0.9"; 6042 6564 src = fetchurl { 6043 - url = "https://registry.npmjs.org/conventional-recommended-bump/-/conventional-recommended-bump-1.2.1.tgz"; 6044 - sha512 = "oJjG6DkRgtnr/t/VrPdzmf4XZv8c4xKVJrVT4zrSHd92KEL+EYxSbYoKq8lQ7U5yLMw7130wrcQTLRjM/T+d4w=="; 6565 + url = "https://registry.npmjs.org/conventional-recommended-bump/-/conventional-recommended-bump-2.0.9.tgz"; 6566 + sha512 = "YE6/o+648qkX3fTNvfBsvPW3tSnbZ6ec3gF0aBahCPgyoVHU2Mw0nUAZ1h1UN65GazpORngrgRC8QCltNYHPpQ=="; 6045 6567 }; 6046 6568 }; 6047 6569 "convert-source-map-1.1.3" = { ··· 6332 6854 sha1 = "11a45bc47ab30c54d00bb869ea1802fbcd9a09d0"; 6333 6855 }; 6334 6856 }; 6857 + "cosmiconfig-3.1.0" = { 6858 + name = "cosmiconfig"; 6859 + packageName = "cosmiconfig"; 6860 + version = "3.1.0"; 6861 + src = fetchurl { 6862 + url = "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-3.1.0.tgz"; 6863 + sha512 = "zedsBhLSbPBms+kE7AH4vHg6JsKDz6epSv2/+5XHs8ILHlgDciSJfSWf8sX9aQ52Jb7KI7VswUTsLpR/G0cr2Q=="; 6864 + }; 6865 + }; 6866 + "cosmiconfig-5.0.5" = { 6867 + name = "cosmiconfig"; 6868 + packageName = "cosmiconfig"; 6869 + version = "5.0.5"; 6870 + src = fetchurl { 6871 + url = "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.0.5.tgz"; 6872 + sha512 = "94j37OtvxS5w7qr7Ta6dt67tWdnOxigBVN4VnSxNXFez9o18PGQ0D33SchKP17r9LAcWVTYV72G6vDayAUBFIg=="; 6873 + }; 6874 + }; 6335 6875 "couch-login-0.1.20" = { 6336 6876 name = "couch-login"; 6337 6877 packageName = "couch-login"; ··· 6377 6917 sha1 = "9da1e980e3bd44fc5c93bf5ab3da3378d85e466b"; 6378 6918 }; 6379 6919 }; 6380 - "crc-3.7.0" = { 6920 + "crc-3.8.0" = { 6381 6921 name = "crc"; 6382 6922 packageName = "crc"; 6383 - version = "3.7.0"; 6923 + version = "3.8.0"; 6384 6924 src = fetchurl { 6385 - url = "https://registry.npmjs.org/crc/-/crc-3.7.0.tgz"; 6386 - sha512 = "ZwmUex488OBjSVOMxnR/dIa1yxisBMJNEi+UxzXpKhax8MPsQtoRQtl5Qgo+W7pcSVkRXa3BEVjaniaWKtvKvw=="; 6925 + url = "https://registry.npmjs.org/crc/-/crc-3.8.0.tgz"; 6926 + sha512 = "iX3mfgcTMIq3ZKLIsVFAbv7+Mc10kxabAGQb8HvjA1o3T1PIYprbakQ65d3I+2HGHt6nSKkM9PYjgoJO2KcFBQ=="; 6387 6927 }; 6388 6928 }; 6389 6929 "crc32-stream-2.0.0" = { ··· 6431 6971 sha512 = "MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg=="; 6432 6972 }; 6433 6973 }; 6434 - "create-torrent-3.32.0" = { 6974 + "create-torrent-3.32.1" = { 6435 6975 name = "create-torrent"; 6436 6976 packageName = "create-torrent"; 6437 - version = "3.32.0"; 6977 + version = "3.32.1"; 6438 6978 src = fetchurl { 6439 - url = "https://registry.npmjs.org/create-torrent/-/create-torrent-3.32.0.tgz"; 6440 - sha512 = "l9chXj5LLyVFfPF6nFCWlm5/Wt+04d+mXUpG5LJAogeyRruWfjnUozfmQspAi6iW91ibp7qKBuFMPJViz5lp1Q=="; 6979 + url = "https://registry.npmjs.org/create-torrent/-/create-torrent-3.32.1.tgz"; 6980 + sha512 = "8spZUeFyVc+2mGnWBRTuLOhuHmHrmUomFWf7QvxztCEvTpn5SIrvF8F+HKdkzBPM9B7v/2w+f/65jqLWBXSndg=="; 6441 6981 }; 6442 6982 }; 6443 6983 "cron-1.3.0" = { ··· 6449 6989 sha512 = "K/SF7JlgMmNjcThWxkKvsHhey2EDB4CeOEWJ9aXWj3fbQJppsvTPIeyLdHfNq5IbbsMUUjRW1nr5dSO95f2E4w=="; 6450 6990 }; 6451 6991 }; 6992 + "cross-fetch-2.0.0" = { 6993 + name = "cross-fetch"; 6994 + packageName = "cross-fetch"; 6995 + version = "2.0.0"; 6996 + src = fetchurl { 6997 + url = "https://registry.npmjs.org/cross-fetch/-/cross-fetch-2.0.0.tgz"; 6998 + sha512 = "gnx0GnDyW73iDq6DpqceL8i4GGn55PPKDzNwZkopJ3mKPcfJ0BUIXBsnYfJBVw+jFDB+hzIp2ELNRdqoxN6M3w=="; 6999 + }; 7000 + }; 6452 7001 "cross-spawn-4.0.0" = { 6453 7002 name = "cross-spawn"; 6454 7003 packageName = "cross-spawn"; ··· 6791 7340 sha1 = "82c18c2461f74114ef16c135224ad0b9144ca12f"; 6792 7341 }; 6793 7342 }; 7343 + "cucumber-html-reporter-3.0.4" = { 7344 + name = "cucumber-html-reporter"; 7345 + packageName = "cucumber-html-reporter"; 7346 + version = "3.0.4"; 7347 + src = fetchurl { 7348 + url = "https://registry.npmjs.org/cucumber-html-reporter/-/cucumber-html-reporter-3.0.4.tgz"; 7349 + sha512 = "uit68jymdI8Z6m+kJ5YnJPeHf5IdYXt2j52l5xLwgpcLBQRhCvr1peV9UODaCN5nLnRN9nqh1qaw4iNp1rTpvQ=="; 7350 + }; 7351 + }; 6794 7352 "cuint-0.2.2" = { 6795 7353 name = "cuint"; 6796 7354 packageName = "cuint"; ··· 6872 7430 sha1 = "03a9dbb4b5c2f139bf14ae53f0b8a2a6a86f4e17"; 6873 7431 }; 6874 7432 }; 6875 - "dargs-5.1.0" = { 6876 - name = "dargs"; 6877 - packageName = "dargs"; 6878 - version = "5.1.0"; 6879 - src = fetchurl { 6880 - url = "https://registry.npmjs.org/dargs/-/dargs-5.1.0.tgz"; 6881 - sha1 = "ec7ea50c78564cd36c9d5ec18f66329fade27829"; 6882 - }; 6883 - }; 6884 7433 "dashdash-1.10.1" = { 6885 7434 name = "dashdash"; 6886 7435 packageName = "dashdash"; ··· 7196 7745 sha512 = "GZqvGIgKNlUnHUPQhepnUZFIMoi3dgZKQBzKDeL2g7oJF9SNAji/AAu36dusFUas0O+pae74lNeoIPHqXWDkLg=="; 7197 7746 }; 7198 7747 }; 7748 + "debuglog-1.0.1" = { 7749 + name = "debuglog"; 7750 + packageName = "debuglog"; 7751 + version = "1.0.1"; 7752 + src = fetchurl { 7753 + url = "https://registry.npmjs.org/debuglog/-/debuglog-1.0.1.tgz"; 7754 + sha1 = "aa24ffb9ac3df9a2351837cfb2d279360cd78492"; 7755 + }; 7756 + }; 7199 7757 "decamelize-1.2.0" = { 7200 7758 name = "decamelize"; 7201 7759 packageName = "decamelize"; ··· 7401 7959 src = fetchurl { 7402 7960 url = "https://registry.npmjs.org/deepmerge/-/deepmerge-2.1.0.tgz"; 7403 7961 sha512 = "Q89Z26KAfA3lpPGhbF6XMfYAm3jIV3avViy6KOJ2JLzFbeWHOvPQUu5aSJIWXap3gDZC2y1eF5HXEPI2wGqgvw=="; 7962 + }; 7963 + }; 7964 + "deepmerge-2.1.1" = { 7965 + name = "deepmerge"; 7966 + packageName = "deepmerge"; 7967 + version = "2.1.1"; 7968 + src = fetchurl { 7969 + url = "https://registry.npmjs.org/deepmerge/-/deepmerge-2.1.1.tgz"; 7970 + sha512 = "urQxA1smbLZ2cBbXbaYObM1dJ82aJ2H57A1C/Kklfh/ZN1bgH4G/n5KWhdNfOK11W98gqZfyYj7W4frJJRwA2w=="; 7404 7971 }; 7405 7972 }; 7406 7973 "default-browser-id-1.0.4" = { ··· 7691 8258 sha512 = "TFHMqfOvxlgrfVzTEkNBSh9SvSNX/HfF4OFI2QFGCyPm02EsyILqnUeb5P6q7JZ3SFNTBL5t2sePRgrN4epUWQ=="; 7692 8259 }; 7693 8260 }; 8261 + "dezalgo-1.0.3" = { 8262 + name = "dezalgo"; 8263 + packageName = "dezalgo"; 8264 + version = "1.0.3"; 8265 + src = fetchurl { 8266 + url = "https://registry.npmjs.org/dezalgo/-/dezalgo-1.0.3.tgz"; 8267 + sha1 = "7f742de066fc748bc8db820569dddce49bf0d456"; 8268 + }; 8269 + }; 7694 8270 "di-0.0.1" = { 7695 8271 name = "di"; 7696 8272 packageName = "di"; ··· 7826 8402 sha512 = "aqNdl4l76PFb301I1hXkHZSakQTOXR0yRbfDtF7XrZKk+9V5gMQBbQ2xPgnQPfDVG0IeErxkQkoWqp4f9EJe5w=="; 7827 8403 }; 7828 8404 }; 7829 - "dispensary-0.18.0" = { 8405 + "disparity-2.0.0" = { 8406 + name = "disparity"; 8407 + packageName = "disparity"; 8408 + version = "2.0.0"; 8409 + src = fetchurl { 8410 + url = "https://registry.npmjs.org/disparity/-/disparity-2.0.0.tgz"; 8411 + sha1 = "57ddacb47324ae5f58d2cc0da886db4ce9eeb718"; 8412 + }; 8413 + }; 8414 + "dispensary-0.21.0" = { 7830 8415 name = "dispensary"; 7831 8416 packageName = "dispensary"; 7832 - version = "0.18.0"; 8417 + version = "0.21.0"; 7833 8418 src = fetchurl { 7834 - url = "https://registry.npmjs.org/dispensary/-/dispensary-0.18.0.tgz"; 7835 - sha512 = "ikVxjigcj4leoPgjqYcHV1YhmLEZ5eXMq30CIPTf1BniWrH1C0X35F5iVCa4U2/JXZYcQJyHWniSRSOpM+hiNw=="; 8419 + url = "https://registry.npmjs.org/dispensary/-/dispensary-0.21.0.tgz"; 8420 + sha512 = "p7qK1sLukrOGYVVcea63lN9CSiE8wO61cweOjtG6MnKoeC9uKHRIO1iJuE5izcX0BeimhkqrQwEMrFWC1yOyAw=="; 7836 8421 }; 7837 8422 }; 7838 8423 "diveSync-0.3.0" = { ··· 7943 8528 sha1 = "33dc69291eac3414f84871f2d59d77b6f6948be4"; 7944 8529 }; 7945 8530 }; 7946 - "doctoc-1.3.1" = { 7947 - name = "doctoc"; 7948 - packageName = "doctoc"; 7949 - version = "1.3.1"; 7950 - src = fetchurl { 7951 - url = "https://registry.npmjs.org/doctoc/-/doctoc-1.3.1.tgz"; 7952 - sha1 = "f012e3603e3156254c2ef22ac88c7190f55426ba"; 7953 - }; 7954 - }; 7955 8531 "doctrine-2.1.0" = { 7956 8532 name = "doctrine"; 7957 8533 packageName = "doctrine"; ··· 8123 8699 sha512 = "Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg=="; 8124 8700 }; 8125 8701 }; 8702 + "dot-case-2.1.1" = { 8703 + name = "dot-case"; 8704 + packageName = "dot-case"; 8705 + version = "2.1.1"; 8706 + src = fetchurl { 8707 + url = "https://registry.npmjs.org/dot-case/-/dot-case-2.1.1.tgz"; 8708 + sha1 = "34dcf37f50a8e93c2b3bca8bb7fb9155c7da3bee"; 8709 + }; 8710 + }; 8126 8711 "dot-prop-3.0.0" = { 8127 8712 name = "dot-prop"; 8128 8713 packageName = "dot-prop"; ··· 8141 8726 sha512 = "tUMXrxlExSW6U2EXiiKGSBVdYgtV8qlHL+C10TsW4PURY/ic+eaysnSkwB4kA/mBlCyy/IKDJ+Lc3wbWeaXtuQ=="; 8142 8727 }; 8143 8728 }; 8729 + "dotenv-4.0.0" = { 8730 + name = "dotenv"; 8731 + packageName = "dotenv"; 8732 + version = "4.0.0"; 8733 + src = fetchurl { 8734 + url = "https://registry.npmjs.org/dotenv/-/dotenv-4.0.0.tgz"; 8735 + sha1 = "864ef1379aced55ce6f95debecdce179f7a0cd1d"; 8736 + }; 8737 + }; 8738 + "dotenv-5.0.1" = { 8739 + name = "dotenv"; 8740 + packageName = "dotenv"; 8741 + version = "5.0.1"; 8742 + src = fetchurl { 8743 + url = "https://registry.npmjs.org/dotenv/-/dotenv-5.0.1.tgz"; 8744 + sha512 = "4As8uPrjfwb7VXC+WnLCbXK7y+Ueb2B3zgNCePYfhxS1PYeaO1YTeplffTEcbfLhvFNGLAz90VvJs9yomG7bow=="; 8745 + }; 8746 + }; 8144 8747 "double-ended-queue-2.1.0-0" = { 8145 8748 name = "double-ended-queue"; 8146 8749 packageName = "double-ended-queue"; ··· 8276 8879 sha1 = "86f9ab4c102f0371b7297b92a651d5824bc8cb73"; 8277 8880 }; 8278 8881 }; 8279 - "ecc-jsbn-0.1.1" = { 8882 + "ecc-jsbn-0.1.2" = { 8280 8883 name = "ecc-jsbn"; 8281 8884 packageName = "ecc-jsbn"; 8282 - version = "0.1.1"; 8885 + version = "0.1.2"; 8283 8886 src = fetchurl { 8284 - url = "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz"; 8285 - sha1 = "0fc73a9ed5f0d53c38193398523ef7e543777505"; 8887 + url = "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz"; 8888 + sha1 = "3a83a904e54353287874c564b7549386849a98c9"; 8889 + }; 8890 + }; 8891 + "ecc-jsbn-0.2.0" = { 8892 + name = "ecc-jsbn"; 8893 + packageName = "ecc-jsbn"; 8894 + version = "0.2.0"; 8895 + src = fetchurl { 8896 + url = "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.2.0.tgz"; 8897 + sha1 = "7c98afab245f6df32290473c0abee2f2d39334c7"; 8286 8898 }; 8287 8899 }; 8288 8900 "ecdsa-sig-formatter-1.0.10" = { ··· 8428 9040 src = fetchurl { 8429 9041 url = "https://registry.npmjs.org/emoji-regex/-/emoji-regex-6.1.1.tgz"; 8430 9042 sha1 = "c6cd0ec1b0642e2a3c67a1137efc5e796da4f88e"; 8431 - }; 8432 - }; 8433 - "emoji-regex-6.1.3" = { 8434 - name = "emoji-regex"; 8435 - packageName = "emoji-regex"; 8436 - version = "6.1.3"; 8437 - src = fetchurl { 8438 - url = "https://registry.npmjs.org/emoji-regex/-/emoji-regex-6.1.3.tgz"; 8439 - sha1 = "ec79a3969b02d2ecf2b72254279bf99bc7a83932"; 8440 9043 }; 8441 9044 }; 8442 9045 "emojis-list-2.1.0" = { ··· 8979 9582 sha1 = "c8fc6201c7f40dd08941b87c085767386a679acc"; 8980 9583 }; 8981 9584 }; 8982 - "eslint-4.19.1" = { 9585 + "eslint-5.0.1" = { 8983 9586 name = "eslint"; 8984 9587 packageName = "eslint"; 8985 - version = "4.19.1"; 9588 + version = "5.0.1"; 8986 9589 src = fetchurl { 8987 - url = "https://registry.npmjs.org/eslint/-/eslint-4.19.1.tgz"; 8988 - sha512 = "bT3/1x1EbZB7phzYu7vCr1v3ONuzDtX8WjuM9c0iYxe+cq+pwcKEoQjl7zd3RpC6YOLgnSy3cTN58M2jcoPDIQ=="; 9590 + url = "https://registry.npmjs.org/eslint/-/eslint-5.0.1.tgz"; 9591 + sha512 = "D5nG2rErquLUstgUaxJlWB5+gu+U/3VDY0fk/Iuq8y9CUFy/7Y6oF4N2cR1tV8knzQvciIbfqfohd359xTLIKQ=="; 8989 9592 }; 8990 9593 }; 8991 - "eslint-5.1.0" = { 9594 + "eslint-5.2.0" = { 8992 9595 name = "eslint"; 8993 9596 packageName = "eslint"; 8994 - version = "5.1.0"; 9597 + version = "5.2.0"; 8995 9598 src = fetchurl { 8996 - url = "https://registry.npmjs.org/eslint/-/eslint-5.1.0.tgz"; 8997 - sha512 = "DyH6JsoA1KzA5+OSWFjg56DFJT+sDLO0yokaPZ9qY0UEmYrPA1gEX/G1MnVkmRDsksG4H1foIVz2ZXXM3hHYvw=="; 9599 + url = "https://registry.npmjs.org/eslint/-/eslint-5.2.0.tgz"; 9600 + sha512 = "zlggW1qp7/TBjwLfouRoY7eWXrXwJZFqCdIxxh0/LVB/QuuKuIMkzyUZEcDo6LBadsry5JcEMxIqd3H/66CXVg=="; 8998 9601 }; 8999 9602 }; 9000 9603 "eslint-plugin-no-unsafe-innerhtml-1.0.16" = { ··· 9004 9607 src = fetchurl { 9005 9608 url = "https://registry.npmjs.org/eslint-plugin-no-unsafe-innerhtml/-/eslint-plugin-no-unsafe-innerhtml-1.0.16.tgz"; 9006 9609 sha1 = "7d02878c8e9bf7916b88836d5ac122b42f151932"; 9007 - }; 9008 - }; 9009 - "eslint-scope-3.7.3" = { 9010 - name = "eslint-scope"; 9011 - packageName = "eslint-scope"; 9012 - version = "3.7.3"; 9013 - src = fetchurl { 9014 - url = "https://registry.npmjs.org/eslint-scope/-/eslint-scope-3.7.3.tgz"; 9015 - sha512 = "W+B0SvF4gamyCTmUc+uITPY0989iXVfKvhwtmJocTaYoc/3khEHmEmvfY/Gn9HA9VV75jrQECsHizkNw1b68FA=="; 9016 9610 }; 9017 9611 }; 9018 9612 "eslint-scope-4.0.0" = { ··· 9339 9933 sha1 = "b09c2a9309bc0ef0501479472db3180f8d4c3edd"; 9340 9934 }; 9341 9935 }; 9936 + "execa-0.10.0" = { 9937 + name = "execa"; 9938 + packageName = "execa"; 9939 + version = "0.10.0"; 9940 + src = fetchurl { 9941 + url = "https://registry.npmjs.org/execa/-/execa-0.10.0.tgz"; 9942 + sha512 = "7XOMnz8Ynx1gGo/3hyV9loYNPWM94jG3+3T3Y8tsfSstFmETmENCMU/A/zj8Lyaj1lkgEepKepvd6240tBRvlw=="; 9943 + }; 9944 + }; 9342 9945 "execa-0.4.0" = { 9343 9946 name = "execa"; 9344 9947 packageName = "execa"; ··· 9573 10176 sha1 = "b2664f15c636d5248e60fdbe29131c4440552eda"; 9574 10177 }; 9575 10178 }; 10179 + "express-request-proxy-2.2.0" = { 10180 + name = "express-request-proxy"; 10181 + packageName = "express-request-proxy"; 10182 + version = "2.2.0"; 10183 + src = fetchurl { 10184 + url = "https://registry.npmjs.org/express-request-proxy/-/express-request-proxy-2.2.0.tgz"; 10185 + sha512 = "tObSNa1H5NMltFxg/UAB7tG2PdjkBeQI7fOTUTWyZWHchS7wY9TKqW1RAe3rn/Tq+EwsPTFRYptuLvBK722ipg=="; 10186 + }; 10187 + }; 9576 10188 "express-session-1.11.3" = { 9577 10189 name = "express-session"; 9578 10190 packageName = "express-session"; ··· 9627 10239 sha1 = "a0f5fd6cfc83a5fe49ef698d60ec8a624dd4576c"; 9628 10240 }; 9629 10241 }; 9630 - "extend-3.0.1" = { 10242 + "extend-3.0.2" = { 9631 10243 name = "extend"; 9632 10244 packageName = "extend"; 9633 - version = "3.0.1"; 10245 + version = "3.0.2"; 9634 10246 src = fetchurl { 9635 - url = "https://registry.npmjs.org/extend/-/extend-3.0.1.tgz"; 9636 - sha1 = "a755ea7bc1adfcc5a31ce7e762dbaadc5e636444"; 10247 + url = "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz"; 10248 + sha512 = "fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g=="; 9637 10249 }; 9638 10250 }; 9639 10251 "extend-shallow-1.1.4" = { ··· 9852 10464 sha1 = "66e4028e381eaa002edeb280d10238f3a46c3402"; 9853 10465 }; 9854 10466 }; 9855 - "fast-json-patch-1.2.2" = { 9856 - name = "fast-json-patch"; 9857 - packageName = "fast-json-patch"; 9858 - version = "1.2.2"; 9859 - src = fetchurl { 9860 - url = "https://registry.npmjs.org/fast-json-patch/-/fast-json-patch-1.2.2.tgz"; 9861 - sha1 = "d377d97c6911dbdd2a1c80bfacda048a4f83bbf9"; 9862 - }; 9863 - }; 9864 10467 "fast-json-patch-2.0.6" = { 9865 10468 name = "fast-json-patch"; 9866 10469 packageName = "fast-json-patch"; ··· 9888 10491 sha1 = "3d8a5c66883a16a30ca8643e851f19baa7797917"; 9889 10492 }; 9890 10493 }; 10494 + "fast-redact-1.1.13" = { 10495 + name = "fast-redact"; 10496 + packageName = "fast-redact"; 10497 + version = "1.1.13"; 10498 + src = fetchurl { 10499 + url = "https://registry.npmjs.org/fast-redact/-/fast-redact-1.1.13.tgz"; 10500 + sha512 = "DsXvFcPGct1AkO+5lIvsb6imkMeoXWUQv4yaSZVY5YvHiriKSkAuR/jhrhyv3lxfyKCCS525u78PQmk4AquAeA=="; 10501 + }; 10502 + }; 9891 10503 "fast-safe-stringify-1.2.3" = { 9892 10504 name = "fast-safe-stringify"; 9893 10505 packageName = "fast-safe-stringify"; ··· 9897 10509 sha512 = "QJYT/i0QYoiZBQ71ivxdyTqkwKkQ0oxACXHYxH2zYHJEgzi2LsbjgvtzTbLi1SZcF190Db2YP7I7eTsU2egOlw=="; 9898 10510 }; 9899 10511 }; 10512 + "fast-safe-stringify-2.0.5" = { 10513 + name = "fast-safe-stringify"; 10514 + packageName = "fast-safe-stringify"; 10515 + version = "2.0.5"; 10516 + src = fetchurl { 10517 + url = "https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-2.0.5.tgz"; 10518 + sha512 = "QHbbCj2PmRSMNL9P7EuNBCeNXO06/E3t3XyQgb32AZul8wLmRa1Wbt2cm7GeUsX9OZGyXTQxMYcPOEBqARyhNw=="; 10519 + }; 10520 + }; 9900 10521 "fast-url-parser-1.1.3" = { 9901 10522 name = "fast-url-parser"; 9902 10523 packageName = "fast-url-parser"; ··· 9904 10525 src = fetchurl { 9905 10526 url = "https://registry.npmjs.org/fast-url-parser/-/fast-url-parser-1.1.3.tgz"; 9906 10527 sha1 = "f4af3ea9f34d8a271cf58ad2b3759f431f0b318d"; 9907 - }; 9908 - }; 9909 - "faye-websocket-0.10.0" = { 9910 - name = "faye-websocket"; 9911 - packageName = "faye-websocket"; 9912 - version = "0.10.0"; 9913 - src = fetchurl { 9914 - url = "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.10.0.tgz"; 9915 - sha1 = "4e492f8d04dfb6f89003507f6edbf2d501e7c6f4"; 9916 10528 }; 9917 10529 }; 9918 10530 "faye-websocket-0.11.1" = { ··· 10165 10777 src = fetchurl { 10166 10778 url = "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.1.tgz"; 10167 10779 sha512 = "Y1GUDo39ez4aHAw7MysnUD5JzYX+WaIj8I57kO3aEPT1fFRL4sr7mjei97FgnwhAyyzRYmQZaTHb2+9uZ1dPtg=="; 10780 + }; 10781 + }; 10782 + "find-0.2.9" = { 10783 + name = "find"; 10784 + packageName = "find"; 10785 + version = "0.2.9"; 10786 + src = fetchurl { 10787 + url = "https://registry.npmjs.org/find/-/find-0.2.9.tgz"; 10788 + sha1 = "4b73f1ff9e56ad91b76e716407fe5ffe6554bb8c"; 10168 10789 }; 10169 10790 }; 10170 10791 "find-cache-dir-1.0.0" = { ··· 10446 11067 sha512 = "uxYePVPogtya1ktGnAAXOacnbIuRMB4dkvqeNz2qTtTQsuzSfbDolV+wMMKxAmCx0bLgAKLbBOkjItMbbkR1vg=="; 10447 11068 }; 10448 11069 }; 10449 - "follow-redirects-1.5.1" = { 11070 + "follow-redirects-1.5.2" = { 10450 11071 name = "follow-redirects"; 10451 11072 packageName = "follow-redirects"; 10452 - version = "1.5.1"; 11073 + version = "1.5.2"; 10453 11074 src = fetchurl { 10454 - url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.5.1.tgz"; 10455 - sha512 = "v9GI1hpaqq1ZZR6pBD1+kI7O24PhDvNGNodjS3MdcEqyrahCp8zbtpv+2B/krUnSmUH80lbAS7MrdeK5IylgKg=="; 11075 + url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.5.2.tgz"; 11076 + sha512 = "kssLorP/9acIdpQ2udQVTiCS5LQmdEz9mvdIfDcl1gYX2tPKFADHSyFdvJS040XdFsPzemWtgI3q8mFVCxtX8A=="; 10456 11077 }; 10457 11078 }; 10458 11079 "for-each-0.3.3" = { ··· 10597 11218 src = fetchurl { 10598 11219 url = "https://registry.npmjs.org/form-data/-/form-data-2.3.2.tgz"; 10599 11220 sha1 = "4970498be604c20c005d4f5c23aecd21d6b49099"; 11221 + }; 11222 + }; 11223 + "format-util-1.0.3" = { 11224 + name = "format-util"; 11225 + packageName = "format-util"; 11226 + version = "1.0.3"; 11227 + src = fetchurl { 11228 + url = "https://registry.npmjs.org/format-util/-/format-util-1.0.3.tgz"; 11229 + sha1 = "032dca4a116262a12c43f4c3ec8566416c5b2d95"; 10600 11230 }; 10601 11231 }; 10602 11232 "formidable-1.0.11" = { ··· 10815 11445 sha1 = "046c70163cef9aad46b0e4a7fa467fb22d71de35"; 10816 11446 }; 10817 11447 }; 11448 + "fs-extra-3.0.1" = { 11449 + name = "fs-extra"; 11450 + packageName = "fs-extra"; 11451 + version = "3.0.1"; 11452 + src = fetchurl { 11453 + url = "https://registry.npmjs.org/fs-extra/-/fs-extra-3.0.1.tgz"; 11454 + sha1 = "3794f378c58b342ea7dbbb23095109c4b3b62291"; 11455 + }; 11456 + }; 10818 11457 "fs-extra-4.0.3" = { 10819 11458 name = "fs-extra"; 10820 11459 packageName = "fs-extra"; ··· 10831 11470 src = fetchurl { 10832 11471 url = "https://registry.npmjs.org/fs-extra/-/fs-extra-5.0.0.tgz"; 10833 11472 sha512 = "66Pm4RYbjzdyeuqudYqhFiNBbCIuI9kgRqLPSHIlXHidW8NIQtVdkM1yeZ4lXwuhbTETv3EUGMNHAAw6hiundQ=="; 11473 + }; 11474 + }; 11475 + "fs-extra-6.0.1" = { 11476 + name = "fs-extra"; 11477 + packageName = "fs-extra"; 11478 + version = "6.0.1"; 11479 + src = fetchurl { 11480 + url = "https://registry.npmjs.org/fs-extra/-/fs-extra-6.0.1.tgz"; 11481 + sha512 = "GnyIkKhhzXZUWFCaJzvyDLEEgDkPfb4/TPvJCJVuS8MWZgoSsErf++QpiAlDnKFcqhRlm+tIOcencCjyJE6ZCA=="; 10834 11482 }; 10835 11483 }; 10836 11484 "fs-minipass-1.2.5" = { ··· 11527 12175 sha1 = "dbf743c6c14992593c655568cb66ed32c0122ebe"; 11528 12176 }; 11529 12177 }; 11530 - "global-tunnel-ng-2.4.0" = { 12178 + "global-tunnel-ng-2.5.4" = { 11531 12179 name = "global-tunnel-ng"; 11532 12180 packageName = "global-tunnel-ng"; 11533 - version = "2.4.0"; 12181 + version = "2.5.4"; 11534 12182 src = fetchurl { 11535 - url = "https://registry.npmjs.org/global-tunnel-ng/-/global-tunnel-ng-2.4.0.tgz"; 11536 - sha1 = "97a1847150e7f22ed30771a35aaa4922327a7957"; 12183 + url = "https://registry.npmjs.org/global-tunnel-ng/-/global-tunnel-ng-2.5.4.tgz"; 12184 + sha1 = "5ef9d5ff2f2a6bed1b305abd463837d47e85b5f4"; 11537 12185 }; 11538 12186 }; 11539 12187 "globals-11.7.0" = { ··· 11561 12209 src = fetchurl { 11562 12210 url = "https://registry.npmjs.org/globby/-/globby-5.0.0.tgz"; 11563 12211 sha1 = "ebd84667ca0dbb330b99bcfc68eac2bc54370e0d"; 11564 - }; 11565 - }; 11566 - "globby-6.1.0" = { 11567 - name = "globby"; 11568 - packageName = "globby"; 11569 - version = "6.1.0"; 11570 - src = fetchurl { 11571 - url = "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz"; 11572 - sha1 = "f5a6d70e8395e21c858fb0489d64df02424d506c"; 11573 12212 }; 11574 12213 }; 11575 12214 "globby-8.0.1" = { ··· 11689 12328 sha1 = "4cafad76bc62f02fa039b2f94e9a3dd3a391a725"; 11690 12329 }; 11691 12330 }; 12331 + "graphcool-json-schema-1.2.1" = { 12332 + name = "graphcool-json-schema"; 12333 + packageName = "graphcool-json-schema"; 12334 + version = "1.2.1"; 12335 + src = fetchurl { 12336 + url = "https://registry.npmjs.org/graphcool-json-schema/-/graphcool-json-schema-1.2.1.tgz"; 12337 + sha1 = "6cefb6c8b50543615e6efa43bb54f9e3fbb281f3"; 12338 + }; 12339 + }; 12340 + "graphcool-yml-0.4.15" = { 12341 + name = "graphcool-yml"; 12342 + packageName = "graphcool-yml"; 12343 + version = "0.4.15"; 12344 + src = fetchurl { 12345 + url = "https://registry.npmjs.org/graphcool-yml/-/graphcool-yml-0.4.15.tgz"; 12346 + sha512 = "ZVbRfVI8l21+1JQkcG0XuRam9mgiVUh9/PIcluzCZca2+lZQg/e1WCDXpwsC69i2ZdPcZwpOCLFKQMg5rnulCA=="; 12347 + }; 12348 + }; 11692 12349 "graphlib-2.1.5" = { 11693 12350 name = "graphlib"; 11694 12351 packageName = "graphlib"; ··· 11698 12355 sha512 = "XvtbqCcw+EM5SqQrIetIKKD+uZVNQtDPD1goIg7K73RuRZtVI5rYMdcCVSHm/AS1sCBZ7vt0p5WgXouucHQaOA=="; 11699 12356 }; 11700 12357 }; 12358 + "graphql-0.12.3" = { 12359 + name = "graphql"; 12360 + packageName = "graphql"; 12361 + version = "0.12.3"; 12362 + src = fetchurl { 12363 + url = "https://registry.npmjs.org/graphql/-/graphql-0.12.3.tgz"; 12364 + sha512 = "Hn9rdu4zacplKXNrLCvR8YFiTGnbM4Zw/UH8FDmzBDsH7ou40lSNH4tIlsxcYnz2TGNVJCpu1WxCM23yd6kzhA=="; 12365 + }; 12366 + }; 12367 + "graphql-0.13.2" = { 12368 + name = "graphql"; 12369 + packageName = "graphql"; 12370 + version = "0.13.2"; 12371 + src = fetchurl { 12372 + url = "https://registry.npmjs.org/graphql/-/graphql-0.13.2.tgz"; 12373 + sha512 = "QZ5BL8ZO/B20VA8APauGBg3GyEgZ19eduvpLWoq5x7gMmWnHoy8rlQWPLmWgFvo1yNgjSEFMesmS4R6pPr7xog=="; 12374 + }; 12375 + }; 12376 + "graphql-cli-prepare-1.4.19" = { 12377 + name = "graphql-cli-prepare"; 12378 + packageName = "graphql-cli-prepare"; 12379 + version = "1.4.19"; 12380 + src = fetchurl { 12381 + url = "https://registry.npmjs.org/graphql-cli-prepare/-/graphql-cli-prepare-1.4.19.tgz"; 12382 + sha512 = "PJFm9/DvfZwKz3h2Wyn/5Sr/sX35XsYzNO3olfm5V8qqueNIONI0g7sVqpF7wYdvhEtt/8YA9DjgrGclCbpMfA=="; 12383 + }; 12384 + }; 12385 + "graphql-config-1.2.1" = { 12386 + name = "graphql-config"; 12387 + packageName = "graphql-config"; 12388 + version = "1.2.1"; 12389 + src = fetchurl { 12390 + url = "https://registry.npmjs.org/graphql-config/-/graphql-config-1.2.1.tgz"; 12391 + sha512 = "BOtbEOn/fD13jT0peCy3Fzp1DSTsA/1AcZp266AQ5Sk3wFndKCEa/H7donbu5UriOw1V/N1WDirYPnr7rd8E7Q=="; 12392 + }; 12393 + }; 12394 + "graphql-config-2.0.0" = { 12395 + name = "graphql-config"; 12396 + packageName = "graphql-config"; 12397 + version = "2.0.0"; 12398 + src = fetchurl { 12399 + url = "https://registry.npmjs.org/graphql-config/-/graphql-config-2.0.0.tgz"; 12400 + sha512 = "//hZmROEk79zzPlH6SVTQeXd8NVV65rquz1zxZeO6oEuX5KNnii8+oznLu7d897EfJ+NShTZtsY9FMmxxkWmJw=="; 12401 + }; 12402 + }; 12403 + "graphql-config-2.0.1" = { 12404 + name = "graphql-config"; 12405 + packageName = "graphql-config"; 12406 + version = "2.0.1"; 12407 + src = fetchurl { 12408 + url = "https://registry.npmjs.org/graphql-config/-/graphql-config-2.0.1.tgz"; 12409 + sha512 = "eb4FzlODifHE/Q+91QptAmkGw39wL5ToinJ2556UUsGt2drPc4tzifL+HSnHSaxiIbH8EUhc/Fa6+neinF04qA=="; 12410 + }; 12411 + }; 12412 + "graphql-config-extension-graphcool-1.0.8" = { 12413 + name = "graphql-config-extension-graphcool"; 12414 + packageName = "graphql-config-extension-graphcool"; 12415 + version = "1.0.8"; 12416 + src = fetchurl { 12417 + url = "https://registry.npmjs.org/graphql-config-extension-graphcool/-/graphql-config-extension-graphcool-1.0.8.tgz"; 12418 + sha512 = "eMvL/RAo88EHo8SmP40Zcsrx7nrLTE82G4ZochsHYoEvP+QMo0XA+Vq9lxYeRTJEtGMFD4imjHXGHWh4B0srQw=="; 12419 + }; 12420 + }; 12421 + "graphql-config-extension-openapi-1.0.6" = { 12422 + name = "graphql-config-extension-openapi"; 12423 + packageName = "graphql-config-extension-openapi"; 12424 + version = "1.0.6"; 12425 + src = fetchurl { 12426 + url = "https://registry.npmjs.org/graphql-config-extension-openapi/-/graphql-config-extension-openapi-1.0.6.tgz"; 12427 + sha512 = "Do6tHyQyxaPhaZdJ+ZCpYbVhczlqNqMVuO46aG/YkMuRQPoj/FRmeH9BFXniFkz60TZyRpLTQNel2sllMekRLQ=="; 12428 + }; 12429 + }; 12430 + "graphql-config-extension-prisma-0.0.11" = { 12431 + name = "graphql-config-extension-prisma"; 12432 + packageName = "graphql-config-extension-prisma"; 12433 + version = "0.0.11"; 12434 + src = fetchurl { 12435 + url = "https://registry.npmjs.org/graphql-config-extension-prisma/-/graphql-config-extension-prisma-0.0.11.tgz"; 12436 + sha512 = "Mlj/VYshHbwDrVHgNyNAl2cBU7+Rh503S43UYXcBtR9Am2KNvmPPPccXEeP6yist0yY2WM0WTwL8JoIGrWeFOw=="; 12437 + }; 12438 + }; 12439 + "graphql-import-0.4.5" = { 12440 + name = "graphql-import"; 12441 + packageName = "graphql-import"; 12442 + version = "0.4.5"; 12443 + src = fetchurl { 12444 + url = "https://registry.npmjs.org/graphql-import/-/graphql-import-0.4.5.tgz"; 12445 + sha512 = "G/+I08Qp6/QGTb9qapknCm3yPHV0ZL7wbaalWFpxsfR8ZhZoTBe//LsbsCKlbALQpcMegchpJhpTSKiJjhaVqQ=="; 12446 + }; 12447 + }; 12448 + "graphql-playground-html-1.5.5" = { 12449 + name = "graphql-playground-html"; 12450 + packageName = "graphql-playground-html"; 12451 + version = "1.5.5"; 12452 + src = fetchurl { 12453 + url = "https://registry.npmjs.org/graphql-playground-html/-/graphql-playground-html-1.5.5.tgz"; 12454 + sha512 = "PzSywpEKcjbDUkV6e3ivEixvAuUJGyYmBUvuittzySe/RgwHRo0xKLD7HouUCTbpFfWMw8kRKhAUVtt7Ys97uw=="; 12455 + }; 12456 + }; 12457 + "graphql-playground-middleware-express-1.6.2" = { 12458 + name = "graphql-playground-middleware-express"; 12459 + packageName = "graphql-playground-middleware-express"; 12460 + version = "1.6.2"; 12461 + src = fetchurl { 12462 + url = "https://registry.npmjs.org/graphql-playground-middleware-express/-/graphql-playground-middleware-express-1.6.2.tgz"; 12463 + sha512 = "BHaEZe2J2lQ1TX2W73a6PI2zVjB9Nb0J9pFdbG1L7ugYdbait/elDrsNMxLCsDHVOGJF009VlYszrk7Cq7FiTg=="; 12464 + }; 12465 + }; 12466 + "graphql-request-1.8.0" = { 12467 + name = "graphql-request"; 12468 + packageName = "graphql-request"; 12469 + version = "1.8.0"; 12470 + src = fetchurl { 12471 + url = "https://registry.npmjs.org/graphql-request/-/graphql-request-1.8.0.tgz"; 12472 + sha512 = "kX4u/rPNd8EkYdYXDzAiGyVrLBZmdZREOlQVemcUkXtNVaNTh6eXC0yhmRypIB070/YtRl1w01xR1efOrHO+JA=="; 12473 + }; 12474 + }; 12475 + "graphql-schema-linter-0.1.1" = { 12476 + name = "graphql-schema-linter"; 12477 + packageName = "graphql-schema-linter"; 12478 + version = "0.1.1"; 12479 + src = fetchurl { 12480 + url = "https://registry.npmjs.org/graphql-schema-linter/-/graphql-schema-linter-0.1.1.tgz"; 12481 + sha512 = "caZbOgNw08/9p3a+qusmaFi1TklG9ti+KHI6a2yfdp009gyoClWGQ+ElKVIiZkJQSeWCri2s2UFBCZjoM0JwTw=="; 12482 + }; 12483 + }; 12484 + "graphql-static-binding-0.9.3" = { 12485 + name = "graphql-static-binding"; 12486 + packageName = "graphql-static-binding"; 12487 + version = "0.9.3"; 12488 + src = fetchurl { 12489 + url = "https://registry.npmjs.org/graphql-static-binding/-/graphql-static-binding-0.9.3.tgz"; 12490 + sha512 = "C8+EqwNCiQxUhbrWEokxN16oINAkhIDBzEpKHXeatBRaAyMczXm0J6HMaMSKOuQmk7P1PbDHIVW3FVZwXF2WJQ=="; 12491 + }; 12492 + }; 11701 12493 "gray-matter-2.1.1" = { 11702 12494 name = "gray-matter"; 11703 12495 packageName = "gray-matter"; ··· 11761 12553 sha512 = "jsbAj65WM08H1jCFOKpIvA1OlACk7OHS2FFTeeBZrSJ5OR1PJzAqi0I2R2LTWYN3oMd/N1JYN9cN2IS/8eYqdg=="; 11762 12554 }; 11763 12555 }; 11764 - "gulp-jsonminify-1.1.0" = { 11765 - name = "gulp-jsonminify"; 11766 - packageName = "gulp-jsonminify"; 11767 - version = "1.1.0"; 11768 - src = fetchurl { 11769 - url = "https://registry.npmjs.org/gulp-jsonminify/-/gulp-jsonminify-1.1.0.tgz"; 11770 - sha512 = "nkqH5aRajfCGD8HB2yN+QSEQG0SMEpS7UyOp3HS966Og4DqUX0y8sPF5SU8uSsGLLLXbnHwyHbDkxauYO/pSpQ=="; 11771 - }; 11772 - }; 11773 12556 "gulp-less-3.5.0" = { 11774 12557 name = "gulp-less"; 11775 12558 packageName = "gulp-less"; ··· 11797 12580 sha512 = "Hhbn5Aa2l3T+tnn0KqsG6RRJmcYEsr3byTL2nBpNBeAK8pqug9Od4AwddU4JEI+hRw7mzZyjRbB8DDWR6paGVA=="; 11798 12581 }; 11799 12582 }; 11800 - "gulp-uglify-3.0.0" = { 12583 + "gulp-uglify-3.0.1" = { 11801 12584 name = "gulp-uglify"; 11802 12585 packageName = "gulp-uglify"; 11803 - version = "3.0.0"; 12586 + version = "3.0.1"; 11804 12587 src = fetchurl { 11805 - url = "https://registry.npmjs.org/gulp-uglify/-/gulp-uglify-3.0.0.tgz"; 11806 - sha1 = "0df0331d72a0d302e3e37e109485dddf33c6d1ca"; 12588 + url = "https://registry.npmjs.org/gulp-uglify/-/gulp-uglify-3.0.1.tgz"; 12589 + sha512 = "KVffbGY9d4Wv90bW/B1KZJyunLMyfHTBbilpDvmcrj5Go0/a1G3uVpt+1gRBWSw/11dqR3coJ1oWNTt1AiXuWQ=="; 11807 12590 }; 11808 12591 }; 11809 12592 "gulp-util-3.0.8" = { ··· 12211 12994 sha1 = "93410fd21b009735151f8868c2f271f3427e23fd"; 12212 12995 }; 12213 12996 }; 12997 + "header-case-1.0.1" = { 12998 + name = "header-case"; 12999 + packageName = "header-case"; 13000 + version = "1.0.1"; 13001 + src = fetchurl { 13002 + url = "https://registry.npmjs.org/header-case/-/header-case-1.0.1.tgz"; 13003 + sha1 = "9535973197c144b09613cd65d317ef19963bd02d"; 13004 + }; 13005 + }; 12214 13006 "headless-0.1.7" = { 12215 13007 name = "headless"; 12216 13008 packageName = "headless"; ··· 12463 13255 sha1 = "8b55680bb4be283a0b5bf4ea2e38580be1d9320d"; 12464 13256 }; 12465 13257 }; 13258 + "http-errors-1.7.0" = { 13259 + name = "http-errors"; 13260 + packageName = "http-errors"; 13261 + version = "1.7.0"; 13262 + src = fetchurl { 13263 + url = "https://registry.npmjs.org/http-errors/-/http-errors-1.7.0.tgz"; 13264 + sha512 = "hz3BtSHB7Z6dNWzYc+gUbWqG4dIpJedwwOhe1cvGUq5tGmcTTIRkPiAbyh/JlZx+ksSJyGJlgcHo5jGahiXnKw=="; 13265 + }; 13266 + }; 12466 13267 "http-headers-3.0.2" = { 12467 13268 name = "http-headers"; 12468 13269 packageName = "http-headers"; ··· 12535 13336 sha512 = "qwHbBLV7WviBl0rQsOzH6o5lwyOIvwp/BdFnvVxXORldu5TmjFfjzBcWUWS5kWAZhmv+JtiDhSuQCp4sBfbIgg=="; 12536 13337 }; 12537 13338 }; 12538 - "http-proxy-middleware-0.17.4" = { 12539 - name = "http-proxy-middleware"; 12540 - packageName = "http-proxy-middleware"; 12541 - version = "0.17.4"; 12542 - src = fetchurl { 12543 - url = "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-0.17.4.tgz"; 12544 - sha1 = "642e8848851d66f09d4f124912846dbaeb41b833"; 12545 - }; 12546 - }; 12547 13339 "http-response-object-1.1.0" = { 12548 13340 name = "http-response-object"; 12549 13341 packageName = "http-response-object"; ··· 12670 13462 sha512 = "PH5GBkXqFxw5+4eKaKRIkD23y6vRd/IXSl7IldyJxEXpDH9SEIXRORkBtkGni/ae2P7RVOw6Wxypd2tGXhha1w=="; 12671 13463 }; 12672 13464 }; 12673 - "hypercore-6.17.3" = { 13465 + "hypercore-6.18.1" = { 12674 13466 name = "hypercore"; 12675 13467 packageName = "hypercore"; 12676 - version = "6.17.3"; 13468 + version = "6.18.1"; 12677 13469 src = fetchurl { 12678 - url = "https://registry.npmjs.org/hypercore/-/hypercore-6.17.3.tgz"; 12679 - sha512 = "BJwZ4bRV3tYG3R+iE3ydW3GWpZrPLbi86I75qUg9bQ5jMWgwdh+llKgYFvSJhJtoT/MVxrcuXFDkuHiJ0GYMvw=="; 13470 + url = "https://registry.npmjs.org/hypercore/-/hypercore-6.18.1.tgz"; 13471 + sha512 = "pH2t3ehdTfe/FFrwVq+6w7L9NoWEnFO9Yxix2kj43vSLMHTWCUFdOCJ9/MaOUAG4OeYy4tiT4+IE5NP0bff6Mg=="; 12680 13472 }; 12681 13473 }; 12682 13474 "hypercore-crypto-1.0.0" = { ··· 12850 13642 sha512 = "Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug=="; 12851 13643 }; 12852 13644 }; 13645 + "ignore-4.0.3" = { 13646 + name = "ignore"; 13647 + packageName = "ignore"; 13648 + version = "4.0.3"; 13649 + src = fetchurl { 13650 + url = "https://registry.npmjs.org/ignore/-/ignore-4.0.3.tgz"; 13651 + sha512 = "Z/vAH2GGIEATQnBVXMclE2IGV6i0GyVngKThcGZ5kHgHMxLo9Ow2+XHRq1aEKEej5vOF1TPJNbvX6J/anT0M7A=="; 13652 + }; 13653 + }; 12853 13654 "ignore-by-default-1.0.1" = { 12854 13655 name = "ignore-by-default"; 12855 13656 packageName = "ignore-by-default"; ··· 12913 13714 sha1 = "05698e3d45c88e8d7e9d92cb0584e77f096f3e43"; 12914 13715 }; 12915 13716 }; 13717 + "import-local-1.0.0" = { 13718 + name = "import-local"; 13719 + packageName = "import-local"; 13720 + version = "1.0.0"; 13721 + src = fetchurl { 13722 + url = "https://registry.npmjs.org/import-local/-/import-local-1.0.0.tgz"; 13723 + sha512 = "vAaZHieK9qjGo58agRBg+bhHX3hoTZU/Oa3GESWLz7t1U62fk63aHuDJJEteXoDeTCcPmUT+z38gkHPZkkmpmQ=="; 13724 + }; 13725 + }; 12916 13726 "imurmurhash-0.1.4" = { 12917 13727 name = "imurmurhash"; 12918 13728 packageName = "imurmurhash"; ··· 12965 13775 src = fetchurl { 12966 13776 url = "https://registry.npmjs.org/infinity-agent/-/infinity-agent-2.0.3.tgz"; 12967 13777 sha1 = "45e0e2ff7a9eb030b27d62b74b3744b7a7ac4216"; 13778 + }; 13779 + }; 13780 + "inflected-2.0.4" = { 13781 + name = "inflected"; 13782 + packageName = "inflected"; 13783 + version = "2.0.4"; 13784 + src = fetchurl { 13785 + url = "https://registry.npmjs.org/inflected/-/inflected-2.0.4.tgz"; 13786 + sha512 = "HQPzFLTTUvwfeUH6RAGjD8cHS069mBqXG5n4qaxX7sJXBhVQrsGgF+0ZJGkSuN6a8pcUWB/GXStta11kKi/WvA=="; 12968 13787 }; 12969 13788 }; 12970 13789 "inflection-1.12.0" = { ··· 13129 13948 sha512 = "h+xtnyk4EwKvFWHrUYsWErEVR+igKtLdchu+o0Z1RL7VU/jVMFbYir2bp6bAj8efFNxWqHX0dIss6fJQ+/+qeQ=="; 13130 13949 }; 13131 13950 }; 13951 + "inquirer-5.1.0" = { 13952 + name = "inquirer"; 13953 + packageName = "inquirer"; 13954 + version = "5.1.0"; 13955 + src = fetchurl { 13956 + url = "https://registry.npmjs.org/inquirer/-/inquirer-5.1.0.tgz"; 13957 + sha512 = "kn7N70US1MSZHZHSGJLiZ7iCwwncc7b0gc68YtlX29OjI3Mp0tSVV+snVXpZ1G+ONS3Ac9zd1m6hve2ibLDYfA=="; 13958 + }; 13959 + }; 13132 13960 "inquirer-5.2.0" = { 13133 13961 name = "inquirer"; 13134 13962 packageName = "inquirer"; ··· 13255 14083 sha1 = "bdded70114290828c0a039e72ef25f5aaec4354a"; 13256 14084 }; 13257 14085 }; 14086 + "ip-regex-1.0.3" = { 14087 + name = "ip-regex"; 14088 + packageName = "ip-regex"; 14089 + version = "1.0.3"; 14090 + src = fetchurl { 14091 + url = "https://registry.npmjs.org/ip-regex/-/ip-regex-1.0.3.tgz"; 14092 + sha1 = "dc589076f659f419c222039a33316f1c7387effd"; 14093 + }; 14094 + }; 13258 14095 "ip-set-1.0.1" = { 13259 14096 name = "ip-set"; 13260 14097 packageName = "ip-set"; ··· 13282 14119 sha1 = "296aca878a821816e5b85d0a285a99bcff4582f0"; 13283 14120 }; 13284 14121 }; 13285 - "ipaddr.js-1.6.0" = { 14122 + "ipaddr.js-1.8.0" = { 13286 14123 name = "ipaddr.js"; 13287 14124 packageName = "ipaddr.js"; 13288 - version = "1.6.0"; 14125 + version = "1.8.0"; 13289 14126 src = fetchurl { 13290 - url = "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.6.0.tgz"; 13291 - sha1 = "e3fa357b773da619f26e95f049d055c72796f86b"; 14127 + url = "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.8.0.tgz"; 14128 + sha1 = "eaa33d6ddd7ace8f7f6fe0c9ca0440e706738b1e"; 13292 14129 }; 13293 14130 }; 13294 - "ipaddr.js-1.8.0" = { 14131 + "ipaddr.js-1.8.1" = { 13295 14132 name = "ipaddr.js"; 13296 14133 packageName = "ipaddr.js"; 13297 - version = "1.8.0"; 14134 + version = "1.8.1"; 13298 14135 src = fetchurl { 13299 - url = "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.8.0.tgz"; 13300 - sha1 = "eaa33d6ddd7ace8f7f6fe0c9ca0440e706738b1e"; 14136 + url = "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.8.1.tgz"; 14137 + sha1 = "fa4b79fa47fd3def5e3b159825161c0a519c9427"; 13301 14138 }; 13302 14139 }; 13303 14140 "irc-replies-2.0.1" = { ··· 13361 14198 src = fetchurl { 13362 14199 url = "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz"; 13363 14200 sha512 = "m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ=="; 13364 - }; 13365 - }; 13366 - "is-alphabetical-1.0.2" = { 13367 - name = "is-alphabetical"; 13368 - packageName = "is-alphabetical"; 13369 - version = "1.0.2"; 13370 - src = fetchurl { 13371 - url = "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-1.0.2.tgz"; 13372 - sha512 = "V0xN4BYezDHcBSKb1QHUFMlR4as/XEuCZBzMJUU4n7+Cbt33SmUnSol+pnXFvLxSHNq2CemUXNdaXV6Flg7+xg=="; 13373 - }; 13374 - }; 13375 - "is-alphanumerical-1.0.2" = { 13376 - name = "is-alphanumerical"; 13377 - packageName = "is-alphanumerical"; 13378 - version = "1.0.2"; 13379 - src = fetchurl { 13380 - url = "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-1.0.2.tgz"; 13381 - sha512 = "pyfU/0kHdISIgslFfZN9nfY1Gk3MquQgUm1mJTjdkEPpkAKNWuBTSqFwewOpR7N351VkErCiyV71zX7mlQQqsg=="; 13382 14201 }; 13383 14202 }; 13384 14203 "is-arguments-1.0.2" = { ··· 13489 14308 sha1 = "9aa20eb6aeebbff77fbd33e74ca01b33581d3a16"; 13490 14309 }; 13491 14310 }; 13492 - "is-decimal-1.0.2" = { 13493 - name = "is-decimal"; 13494 - packageName = "is-decimal"; 13495 - version = "1.0.2"; 13496 - src = fetchurl { 13497 - url = "https://registry.npmjs.org/is-decimal/-/is-decimal-1.0.2.tgz"; 13498 - sha512 = "TRzl7mOCchnhchN+f3ICUCzYvL9ul7R+TYOsZ8xia++knyZAJfv/uA1FvQXsAnYIl1T3B2X5E/J7Wb1QXiIBXg=="; 13499 - }; 13500 - }; 13501 14311 "is-descriptor-0.1.6" = { 13502 14312 name = "is-descriptor"; 13503 14313 packageName = "is-descriptor"; ··· 13514 14324 src = fetchurl { 13515 14325 url = "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz"; 13516 14326 sha512 = "2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg=="; 14327 + }; 14328 + }; 14329 + "is-directory-0.3.1" = { 14330 + name = "is-directory"; 14331 + packageName = "is-directory"; 14332 + version = "0.3.1"; 14333 + src = fetchurl { 14334 + url = "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz"; 14335 + sha1 = "61339b6f2475fc772fd9c9d83f5c8575dc154ae1"; 13517 14336 }; 13518 14337 }; 13519 14338 "is-docker-1.1.0" = { ··· 13660 14479 sha1 = "9521c76845cc2610a85203ddf080a958c2ffabc0"; 13661 14480 }; 13662 14481 }; 13663 - "is-hexadecimal-1.0.2" = { 13664 - name = "is-hexadecimal"; 13665 - packageName = "is-hexadecimal"; 13666 - version = "1.0.2"; 13667 - src = fetchurl { 13668 - url = "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-1.0.2.tgz"; 13669 - sha512 = "but/G3sapV3MNyqiDBLrOi4x8uCIw0RY3o/Vb5GT0sMFHrVV7731wFSVy41T5FO1og7G0gXLJh0MkgPRouko/A=="; 13670 - }; 13671 - }; 13672 14482 "is-installed-globally-0.1.0" = { 13673 14483 name = "is-installed-globally"; 13674 14484 packageName = "is-installed-globally"; ··· 13676 14486 src = fetchurl { 13677 14487 url = "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.1.0.tgz"; 13678 14488 sha1 = "0dfd98f5a9111716dd535dda6492f67bf3d25a80"; 14489 + }; 14490 + }; 14491 + "is-lower-case-1.1.3" = { 14492 + name = "is-lower-case"; 14493 + packageName = "is-lower-case"; 14494 + version = "1.1.3"; 14495 + src = fetchurl { 14496 + url = "https://registry.npmjs.org/is-lower-case/-/is-lower-case-1.1.3.tgz"; 14497 + sha1 = "7e147be4768dc466db3bfb21cc60b31e6ad69393"; 13679 14498 }; 13680 14499 }; 13681 14500 "is-mergeable-object-1.1.0" = { ··· 14056 14875 sha512 = "mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ=="; 14057 14876 }; 14058 14877 }; 14878 + "is-upper-case-1.1.2" = { 14879 + name = "is-upper-case"; 14880 + packageName = "is-upper-case"; 14881 + version = "1.1.2"; 14882 + src = fetchurl { 14883 + url = "https://registry.npmjs.org/is-upper-case/-/is-upper-case-1.1.2.tgz"; 14884 + sha1 = "8d0b1fa7e7933a1e58483600ec7d9661cbaf756f"; 14885 + }; 14886 + }; 14059 14887 "is-url-1.2.4" = { 14060 14888 name = "is-url"; 14061 14889 packageName = "is-url"; ··· 14063 14891 src = fetchurl { 14064 14892 url = "https://registry.npmjs.org/is-url/-/is-url-1.2.4.tgz"; 14065 14893 sha512 = "ITvGim8FhRiYe4IQ5uHSkj7pVaPDrCTkNd3yq3cV7iZAcJdHTUMPMEHcqSOy9xZ9qFenQCvi+2wjH9a1nXqHww=="; 14894 + }; 14895 + }; 14896 + "is-url-superb-2.0.0" = { 14897 + name = "is-url-superb"; 14898 + packageName = "is-url-superb"; 14899 + version = "2.0.0"; 14900 + src = fetchurl { 14901 + url = "https://registry.npmjs.org/is-url-superb/-/is-url-superb-2.0.0.tgz"; 14902 + sha1 = "b728a18cf692e4d16da6b94c7408a811db0d0492"; 14066 14903 }; 14067 14904 }; 14068 14905 "is-utf8-0.2.1" = { ··· 14146 14983 sha512 = "GMxXOiUirWg1xTKRipM0Ek07rX+ubx4nNVElTJdNLYmNO/2YrDkgJGw9CljXn+r4EWiDQg/8lsRdHyg2PJuUaA=="; 14147 14984 }; 14148 14985 }; 14149 - "isbinaryfile-3.0.2" = { 14986 + "isbinaryfile-3.0.3" = { 14150 14987 name = "isbinaryfile"; 14151 14988 packageName = "isbinaryfile"; 14152 - version = "3.0.2"; 14989 + version = "3.0.3"; 14153 14990 src = fetchurl { 14154 - url = "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-3.0.2.tgz"; 14155 - sha1 = "4a3e974ec0cba9004d3fc6cde7209ea69368a621"; 14991 + url = "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-3.0.3.tgz"; 14992 + sha512 = "8cJBL5tTd2OS0dM4jz07wQd5g0dCCqIhUxPIGtZfa5L6hWlvV5MHTITy/DBAsF+Oe2LS1X3krBUhNwaGUWpWxw=="; 14156 14993 }; 14157 14994 }; 14158 14995 "isexe-1.1.2" = { ··· 14191 15028 sha1 = "4e431e92b11a9731636aa1f9c8d1ccbcfdab78df"; 14192 15029 }; 14193 15030 }; 15031 + "isomorphic-fetch-2.2.1" = { 15032 + name = "isomorphic-fetch"; 15033 + packageName = "isomorphic-fetch"; 15034 + version = "2.2.1"; 15035 + src = fetchurl { 15036 + url = "https://registry.npmjs.org/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz"; 15037 + sha1 = "611ae1acf14f5e81f729507472819fe9733558a9"; 15038 + }; 15039 + }; 14194 15040 "isstream-0.1.2" = { 14195 15041 name = "isstream"; 14196 15042 packageName = "isstream"; ··· 14207 15053 src = fetchurl { 14208 15054 url = "https://registry.npmjs.org/isurl/-/isurl-1.0.0.tgz"; 14209 15055 sha512 = "1P/yWsxPlDtn7QeRD+ULKQPaIaN6yF368GZ2vDfv0AL0NwpStafjWCDDdn0k8wgFMWpVAqG7oJhxHnlud42i9w=="; 15056 + }; 15057 + }; 15058 + "iterall-1.1.3" = { 15059 + name = "iterall"; 15060 + packageName = "iterall"; 15061 + version = "1.1.3"; 15062 + src = fetchurl { 15063 + url = "https://registry.npmjs.org/iterall/-/iterall-1.1.3.tgz"; 15064 + sha512 = "Cu/kb+4HiNSejAPhSaN1VukdNTTi/r4/e+yykqjlG/IW+1gZH5b4+Bq3whDX4tvbYugta3r8KTMUiqT3fIGxuQ=="; 15065 + }; 15066 + }; 15067 + "iterall-1.2.2" = { 15068 + name = "iterall"; 15069 + packageName = "iterall"; 15070 + version = "1.2.2"; 15071 + src = fetchurl { 15072 + url = "https://registry.npmjs.org/iterall/-/iterall-1.2.2.tgz"; 15073 + sha512 = "yynBb1g+RFUPY64fTrFv7nsjRrENBQJaX2UL+2Szc9REFrSNm1rpSXHGzhmAy7a9uv3vlvgBlXnf9RqmPH1/DA=="; 14210 15074 }; 14211 15075 }; 14212 15076 "iterare-0.0.8" = { ··· 14272 15136 sha1 = "2cf9fbae46d8074fc16b7de0071c8efebca473a6"; 14273 15137 }; 14274 15138 }; 14275 - "jju-1.3.0" = { 15139 + "jju-1.4.0" = { 14276 15140 name = "jju"; 14277 15141 packageName = "jju"; 14278 - version = "1.3.0"; 15142 + version = "1.4.0"; 14279 15143 src = fetchurl { 14280 - url = "https://registry.npmjs.org/jju/-/jju-1.3.0.tgz"; 14281 - sha1 = "dadd9ef01924bc728b03f2f7979bdbd62f7a2aaa"; 15144 + url = "https://registry.npmjs.org/jju/-/jju-1.4.0.tgz"; 15145 + sha1 = "a3abe2718af241a2b2904f84a625970f389ae32a"; 14282 15146 }; 14283 15147 }; 14284 15148 "jmespath-0.15.0" = { ··· 14315 15179 src = fetchurl { 14316 15180 url = "https://registry.npmjs.org/jquery-ui-bundle/-/jquery-ui-bundle-1.12.1.tgz"; 14317 15181 sha1 = "d6be2e4c377494e2378b1cae2920a91d1182d8c4"; 15182 + }; 15183 + }; 15184 + "js-base64-2.4.8" = { 15185 + name = "js-base64"; 15186 + packageName = "js-base64"; 15187 + version = "2.4.8"; 15188 + src = fetchurl { 15189 + url = "https://registry.npmjs.org/js-base64/-/js-base64-2.4.8.tgz"; 15190 + sha512 = "hm2nYpDrwoO/OzBhdcqs/XGT6XjSuSSCVEpia+Kl2J6x4CYt5hISlVL/AYU1khoDXv0AQVgxtdJySb9gjAn56Q=="; 14318 15191 }; 14319 15192 }; 14320 15193 "js-select-0.6.0" = { ··· 14443 15316 sha1 = "46c3fec8c1892b12b0833db9bc7622176dbab34b"; 14444 15317 }; 14445 15318 }; 15319 + "jsesc-2.5.1" = { 15320 + name = "jsesc"; 15321 + packageName = "jsesc"; 15322 + version = "2.5.1"; 15323 + src = fetchurl { 15324 + url = "https://registry.npmjs.org/jsesc/-/jsesc-2.5.1.tgz"; 15325 + sha1 = "e421a2a8e20d6b0819df28908f782526b96dd1fe"; 15326 + }; 15327 + }; 14446 15328 "jshint-2.8.0" = { 14447 15329 name = "jshint"; 14448 15330 packageName = "jshint"; ··· 14531 15413 src = fetchurl { 14532 15414 url = "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz"; 14533 15415 sha1 = "b480c892e59a2f05954ce727bd3f2a4e882f9e13"; 15416 + }; 15417 + }; 15418 + "json-schema-ref-parser-3.3.1" = { 15419 + name = "json-schema-ref-parser"; 15420 + packageName = "json-schema-ref-parser"; 15421 + version = "3.3.1"; 15422 + src = fetchurl { 15423 + url = "https://registry.npmjs.org/json-schema-ref-parser/-/json-schema-ref-parser-3.3.1.tgz"; 15424 + sha512 = "stQTMhec2R/p2L9dH4XXRlpNCP0mY8QrLd/9Kl+8SHJQmwHtE1nDfXH4wbsSM+GkJMl8t92yZbI0OIol432CIQ=="; 14534 15425 }; 14535 15426 }; 14536 15427 "json-schema-traverse-0.3.1" = { ··· 14659 15550 sha1 = "3736a2b428b87bbda0cc83b53fa3d633a35c2ae8"; 14660 15551 }; 14661 15552 }; 15553 + "jsonfile-3.0.1" = { 15554 + name = "jsonfile"; 15555 + packageName = "jsonfile"; 15556 + version = "3.0.1"; 15557 + src = fetchurl { 15558 + url = "https://registry.npmjs.org/jsonfile/-/jsonfile-3.0.1.tgz"; 15559 + sha1 = "a5ecc6f65f53f662c4415c7675a0331d0992ec66"; 15560 + }; 15561 + }; 14662 15562 "jsonfile-4.0.0" = { 14663 15563 name = "jsonfile"; 14664 15564 packageName = "jsonfile"; ··· 14684 15584 src = fetchurl { 14685 15585 url = "https://registry.npmjs.org/jsonlint/-/jsonlint-1.6.2.tgz"; 14686 15586 sha1 = "5737045085f55eb455c68b1ff4ebc01bd50e8830"; 14687 - }; 14688 - }; 14689 - "jsonminify-0.2.3" = { 14690 - name = "jsonminify"; 14691 - packageName = "jsonminify"; 14692 - version = "0.2.3"; 14693 - src = fetchurl { 14694 - url = "https://registry.npmjs.org/jsonminify/-/jsonminify-0.2.3.tgz"; 14695 - sha1 = "4b842c8a3fe5d6aa48b2f8f95a1cf9a80c019d8e"; 14696 15587 }; 14697 15588 }; 14698 15589 "jsonminify-0.4.1" = { ··· 14756 15647 src = fetchurl { 14757 15648 url = "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-8.2.1.tgz"; 14758 15649 sha512 = "l8rUBr0fqYYwPc8/ZGrue7GiW7vWdZtZqelxo4Sd5lMvuEeCK8/wS54sEo6tJhdZ6hqfutsj6COgC0d1XdbHGw=="; 15650 + }; 15651 + }; 15652 + "jsonwebtoken-8.3.0" = { 15653 + name = "jsonwebtoken"; 15654 + packageName = "jsonwebtoken"; 15655 + version = "8.3.0"; 15656 + src = fetchurl { 15657 + url = "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-8.3.0.tgz"; 15658 + sha512 = "oge/hvlmeJCH+iIz1DwcO7vKPkNGJHhgkspk8OH3VKlw+mbi42WtD4ig1+VXRln765vxptAv+xT26Fd3cteqag=="; 14759 15659 }; 14760 15660 }; 14761 15661 "jspm-config-0.3.4" = { ··· 15128 16028 sha1 = "59c128e0dc5ce410201151194eeb9cbf858650f6"; 15129 16029 }; 15130 16030 }; 16031 + "klaw-2.1.1" = { 16032 + name = "klaw"; 16033 + packageName = "klaw"; 16034 + version = "2.1.1"; 16035 + src = fetchurl { 16036 + url = "https://registry.npmjs.org/klaw/-/klaw-2.1.1.tgz"; 16037 + sha1 = "42b76894701169cc910fd0d19ce677b5fb378af1"; 16038 + }; 16039 + }; 15131 16040 "knockout-3.5.0-rc" = { 15132 16041 name = "knockout"; 15133 16042 packageName = "knockout"; ··· 15461 16370 sha1 = "03ca7ba2d150d4267773f74e57558d1053d2bee3"; 15462 16371 }; 15463 16372 }; 15464 - "livereload-js-2.3.0" = { 15465 - name = "livereload-js"; 15466 - packageName = "livereload-js"; 15467 - version = "2.3.0"; 15468 - src = fetchurl { 15469 - url = "https://registry.npmjs.org/livereload-js/-/livereload-js-2.3.0.tgz"; 15470 - sha512 = "j1R0/FeGa64Y+NmqfZhyoVRzcFlOZ8sNlKzHjh4VvLULFACZhn68XrX5DFg2FhMvSMJmROuFxRSa560ECWKBMg=="; 15471 - }; 15472 - }; 15473 - "load-ip-set-1.3.1" = { 16373 + "load-ip-set-2.1.0" = { 15474 16374 name = "load-ip-set"; 15475 16375 packageName = "load-ip-set"; 15476 - version = "1.3.1"; 16376 + version = "2.1.0"; 15477 16377 src = fetchurl { 15478 - url = "https://registry.npmjs.org/load-ip-set/-/load-ip-set-1.3.1.tgz"; 15479 - sha1 = "cfd050c6916e7ba0ca85d0b566e7854713eb495e"; 16378 + url = "https://registry.npmjs.org/load-ip-set/-/load-ip-set-2.1.0.tgz"; 16379 + sha512 = "taz7U6B+F7Zq90dfIKwqsB1CrFKelSEmMGC68OUqem8Cgd1QZygQBYb2Fk9i6muBSfH4xwF/Pjt4KKlAdOyWZw=="; 15480 16380 }; 15481 16381 }; 15482 16382 "load-json-file-1.1.0" = { ··· 16352 17252 sha1 = "30a0b2da38f73770e8294a0d22e6625ed77d0097"; 16353 17253 }; 16354 17254 }; 16355 - "longest-streak-1.0.0" = { 16356 - name = "longest-streak"; 16357 - packageName = "longest-streak"; 16358 - version = "1.0.0"; 16359 - src = fetchurl { 16360 - url = "https://registry.npmjs.org/longest-streak/-/longest-streak-1.0.0.tgz"; 16361 - sha1 = "d06597c4d4c31b52ccb1f5d8f8fe7148eafd6965"; 16362 - }; 16363 - }; 16364 17255 "longjohn-0.2.11" = { 16365 17256 name = "longjohn"; 16366 17257 packageName = "longjohn"; ··· 16397 17288 sha512 = "lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q=="; 16398 17289 }; 16399 17290 }; 16400 - "lossless-json-1.0.2" = { 17291 + "lossless-json-1.0.3" = { 16401 17292 name = "lossless-json"; 16402 17293 packageName = "lossless-json"; 16403 - version = "1.0.2"; 17294 + version = "1.0.3"; 16404 17295 src = fetchurl { 16405 - url = "https://registry.npmjs.org/lossless-json/-/lossless-json-1.0.2.tgz"; 16406 - sha512 = "1213/0zHUiyQcPUuNOEyllQ4UWGOZLQImiYbUEdvKme/lGRWFRMt0ww9nAJp2DIEofMfD+I5Fm2FAhzHgMmhlA=="; 17296 + url = "https://registry.npmjs.org/lossless-json/-/lossless-json-1.0.3.tgz"; 17297 + sha512 = "r4w0WrhIHV1lOTVGbTg4Toqwso5x6C8pM7Q/Nto2vy4c7yUSdTYVYlj16uHVX3MT1StpSELDv8yrqGx41MBsDA=="; 16407 17298 }; 16408 17299 }; 16409 17300 "loud-rejection-1.6.0" = { ··· 16433 17324 sha1 = "9a2cabd1b9e8e0ae993a4bf7d5875c39c42e8eac"; 16434 17325 }; 16435 17326 }; 17327 + "lower-case-first-1.0.2" = { 17328 + name = "lower-case-first"; 17329 + packageName = "lower-case-first"; 17330 + version = "1.0.2"; 17331 + src = fetchurl { 17332 + url = "https://registry.npmjs.org/lower-case-first/-/lower-case-first-1.0.2.tgz"; 17333 + sha1 = "e5da7c26f29a7073be02d52bac9980e5922adfa1"; 17334 + }; 17335 + }; 16436 17336 "lowercase-keys-1.0.0" = { 16437 17337 name = "lowercase-keys"; 16438 17338 packageName = "lowercase-keys"; ··· 16595 17495 sha1 = "79cc6d65a00bb5b7ef5c25ae60ebbb5d9a7681a8"; 16596 17496 }; 16597 17497 }; 16598 - "magnet-uri-5.1.8" = { 17498 + "magnet-uri-5.2.3" = { 16599 17499 name = "magnet-uri"; 16600 17500 packageName = "magnet-uri"; 16601 - version = "5.1.8"; 17501 + version = "5.2.3"; 16602 17502 src = fetchurl { 16603 - url = "https://registry.npmjs.org/magnet-uri/-/magnet-uri-5.1.8.tgz"; 16604 - sha512 = "rHCJ81C3W2MuLpb4c3JKshQtCbRZhgeKKNYy1YFBtLR3eAB0FjQ5thfCo16w/+VF9yN5tJDtDq4NHPtf9a328A=="; 17503 + url = "https://registry.npmjs.org/magnet-uri/-/magnet-uri-5.2.3.tgz"; 17504 + sha512 = "INWVwcpWfZTVM+Yb4EXVBpm0FTd8Q98Fn5x7nuHv1hkFDRELgdIM+eJ3zYLbNTFpFPYtHs6B+sx8exs29IYwgA=="; 16605 17505 }; 16606 17506 }; 16607 17507 "mailcomposer-2.1.0" = { ··· 16748 17648 sha1 = "3df373dbea587a9a7fef3e56311b68908f75c414"; 16749 17649 }; 16750 17650 }; 16751 - "markdown-it-8.4.1" = { 17651 + "markdown-it-8.4.2" = { 16752 17652 name = "markdown-it"; 16753 17653 packageName = "markdown-it"; 16754 - version = "8.4.1"; 17654 + version = "8.4.2"; 16755 17655 src = fetchurl { 16756 - url = "https://registry.npmjs.org/markdown-it/-/markdown-it-8.4.1.tgz"; 16757 - sha512 = "CzzqSSNkFRUf9vlWvhK1awpJreMRqdCrBvZ8DIoDWTOkESMIF741UPAhuAmbyWmdiFPA6WARNhnu2M6Nrhwa+A=="; 17656 + url = "https://registry.npmjs.org/markdown-it/-/markdown-it-8.4.2.tgz"; 17657 + sha512 = "GcRz3AWTqSUphY3vsUqQSFMbgR38a4Lh3GWlHRh/7MRwz8mcu9n2IO7HOh+bXHrR9kOPDl5RNCaEsrneb+xhHQ=="; 16758 17658 }; 16759 17659 }; 16760 17660 "markdown-it-emoji-1.4.0" = { ··· 16782 17682 src = fetchurl { 16783 17683 url = "https://registry.npmjs.org/markdown-it-task-checkbox/-/markdown-it-task-checkbox-1.0.6.tgz"; 16784 17684 sha512 = "7pxkHuvqTOu3iwVGmDPeYjQg+AIS9VQxzyLP9JCg9lBjgPAJXGEkChK6A2iFuj3tS0GV3HG2u5AMNhcQqwxpJw=="; 16785 - }; 16786 - }; 16787 - "markdown-table-0.4.0" = { 16788 - name = "markdown-table"; 16789 - packageName = "markdown-table"; 16790 - version = "0.4.0"; 16791 - src = fetchurl { 16792 - url = "https://registry.npmjs.org/markdown-table/-/markdown-table-0.4.0.tgz"; 16793 - sha1 = "890c2c1b3bfe83fb00e4129b8e4cfe645270f9d1"; 16794 - }; 16795 - }; 16796 - "markdown-to-ast-3.4.0" = { 16797 - name = "markdown-to-ast"; 16798 - packageName = "markdown-to-ast"; 16799 - version = "3.4.0"; 16800 - src = fetchurl { 16801 - url = "https://registry.npmjs.org/markdown-to-ast/-/markdown-to-ast-3.4.0.tgz"; 16802 - sha1 = "0e2cba81390b0549a9153ec3b0d915b61c164be7"; 16803 17685 }; 16804 17686 }; 16805 17687 "marked-0.3.19" = { ··· 17279 18161 sha512 = "lc/aahn+t4/SWV/qcmumYjymLsWfN3ELhpmVuUFjgsORruuZPVSwAQryq+HHGvO/SI2KVX26bx+En+zhM8g8hQ=="; 17280 18162 }; 17281 18163 }; 18164 + "mime-types-2.1.19" = { 18165 + name = "mime-types"; 18166 + packageName = "mime-types"; 18167 + version = "2.1.19"; 18168 + src = fetchurl { 18169 + url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.19.tgz"; 18170 + sha512 = "P1tKYHVSZ6uFo26mtnve4HQFE3koh1UWVkp8YUC+ESBHe945xWSoXuHHiGarDqcEZ+whpCDnlNw5LON0kLo+sw=="; 18171 + }; 18172 + }; 17282 18173 "mimelib-0.3.1" = { 17283 18174 name = "mimelib"; 17284 18175 packageName = "mimelib"; ··· 17711 18602 sha1 = "be2c005fda32e0b29af1f05d7c4b33214c701f92"; 17712 18603 }; 17713 18604 }; 17714 - "mp4-box-encoding-1.1.4" = { 18605 + "mp4-box-encoding-1.3.0" = { 17715 18606 name = "mp4-box-encoding"; 17716 18607 packageName = "mp4-box-encoding"; 17717 - version = "1.1.4"; 18608 + version = "1.3.0"; 17718 18609 src = fetchurl { 17719 - url = "https://registry.npmjs.org/mp4-box-encoding/-/mp4-box-encoding-1.1.4.tgz"; 17720 - sha512 = "p6AN8M4IBaMQLcnzynXhKXW+RTz3Cc6CE12lkyffnlvwy11IjgCmmQeeOSqVaNwXdePhYviXUbwD/1GUlHQKog=="; 18610 + url = "https://registry.npmjs.org/mp4-box-encoding/-/mp4-box-encoding-1.3.0.tgz"; 18611 + sha512 = "U4pMLpjT/UzB8d36dxj6Mf1bG9xypEvgbuRIa1fztRXNKKTCAtRxsnFZhNOd7YDFOKtjBgssYGvo4H/Q3ZY1MA=="; 17721 18612 }; 17722 18613 }; 17723 18614 "mp4-stream-2.0.3" = { ··· 18661 19552 sha512 = "DUqXaoEFcx0xqZnMyYniyEzTKcdBhAC5GAcNsRS4tiG3VR8tidwth73cr5/rc4NzbjXIk+Jje8P4VJI+fWXHuw=="; 18662 19553 }; 18663 19554 }; 19555 + "node-fetch-1.7.3" = { 19556 + name = "node-fetch"; 19557 + packageName = "node-fetch"; 19558 + version = "1.7.3"; 19559 + src = fetchurl { 19560 + url = "https://registry.npmjs.org/node-fetch/-/node-fetch-1.7.3.tgz"; 19561 + sha512 = "NhZ4CsKx7cYm2vSrBAr2PvFOe6sWDf0UYLRqA6svUYg7+/TSfVAu49jYC4BvQ4Sms9SZgdqGBgroqfDhJdTyKQ=="; 19562 + }; 19563 + }; 19564 + "node-fetch-2.0.0" = { 19565 + name = "node-fetch"; 19566 + packageName = "node-fetch"; 19567 + version = "2.0.0"; 19568 + src = fetchurl { 19569 + url = "https://registry.npmjs.org/node-fetch/-/node-fetch-2.0.0.tgz"; 19570 + sha1 = "982bba43ecd4f2922a29cc186a6bbb0bb73fcba6"; 19571 + }; 19572 + }; 19573 + "node-fetch-2.2.0" = { 19574 + name = "node-fetch"; 19575 + packageName = "node-fetch"; 19576 + version = "2.2.0"; 19577 + src = fetchurl { 19578 + url = "https://registry.npmjs.org/node-fetch/-/node-fetch-2.2.0.tgz"; 19579 + sha512 = "OayFWziIxiHY8bCUyLX6sTpDH8Jsbp4FfYd1j1f7vZyfgkcOnAyM4oQR16f8a0s7Gl/viMGRey8eScYk4V4EZA=="; 19580 + }; 19581 + }; 18664 19582 "node-forge-0.6.23" = { 18665 19583 name = "node-forge"; 18666 19584 packageName = "node-forge"; ··· 18679 19597 sha512 = "MmbQJ2MTESTjt3Gi/3yG1wGpIMhUfcIypUCGtTizFR9IiccFwxSpfp0vtIZlkFclEqERemxfnSdZEMR9VqqEFQ=="; 18680 19598 }; 18681 19599 }; 19600 + "node-gyp-3.7.0" = { 19601 + name = "node-gyp"; 19602 + packageName = "node-gyp"; 19603 + version = "3.7.0"; 19604 + src = fetchurl { 19605 + url = "https://registry.npmjs.org/node-gyp/-/node-gyp-3.7.0.tgz"; 19606 + sha512 = "qDQE/Ft9xXP6zphwx4sD0t+VhwV7yFaloMpfbL2QnnDZcyaiakWlLdtFGGQfTAwpFHdpbRhRxVhIHN1OKAjgbg=="; 19607 + }; 19608 + }; 18682 19609 "node-gyp-build-3.4.0" = { 18683 19610 name = "node-gyp-build"; 18684 19611 packageName = "node-gyp-build"; ··· 18776 19703 src = fetchurl { 18777 19704 url = "https://registry.npmjs.org/node-red-node-twitter/-/node-red-node-twitter-1.0.1.tgz"; 18778 19705 sha512 = "NAM6mlAiZk1EwHtdPNnP/E8P5EIijnqSag1vzE/Ya+ggywTiELt9HtYX26evyB/MrnVS+FIJg+M8S5HobklERg=="; 19706 + }; 19707 + }; 19708 + "node-request-by-swagger-1.1.3" = { 19709 + name = "node-request-by-swagger"; 19710 + packageName = "node-request-by-swagger"; 19711 + version = "1.1.3"; 19712 + src = fetchurl { 19713 + url = "https://registry.npmjs.org/node-request-by-swagger/-/node-request-by-swagger-1.1.3.tgz"; 19714 + sha512 = "granjsEA0c+1GnJaKnOjJy1E3wWLADUnAg+x1eopWOo+oMDfRYKJjCBaInUgrli/yEnvUAJoymGhExP/6tcOyQ=="; 18779 19715 }; 18780 19716 }; 18781 19717 "node-ssdp-2.9.1" = { ··· 19120 20056 sha1 = "99b85aec29fcb388d2dd351f0013bf5268787e67"; 19121 20057 }; 19122 20058 }; 20059 + "npm-lifecycle-2.0.3" = { 20060 + name = "npm-lifecycle"; 20061 + packageName = "npm-lifecycle"; 20062 + version = "2.0.3"; 20063 + src = fetchurl { 20064 + url = "https://registry.npmjs.org/npm-lifecycle/-/npm-lifecycle-2.0.3.tgz"; 20065 + sha512 = "0U4Iim5ix2NHUT672G7FBpldJX0N2xKBjJqRTAzioEJjb6I6KpQXq+y1sB5EDSjKaAX8VCC9qPK31Jy+p3ix5A=="; 20066 + }; 20067 + }; 19123 20068 "npm-package-arg-6.1.0" = { 19124 20069 name = "npm-package-arg"; 19125 20070 packageName = "npm-package-arg"; ··· 19129 20074 sha512 = "zYbhP2k9DbJhA0Z3HKUePUgdB1x7MfIfKssC+WLPFMKTBZKpZh5m13PgexJjCq6KW7j17r0jHWcCpxEqnnncSA=="; 19130 20075 }; 19131 20076 }; 19132 - "npm-packlist-1.1.10" = { 20077 + "npm-packlist-1.1.11" = { 19133 20078 name = "npm-packlist"; 19134 20079 packageName = "npm-packlist"; 19135 - version = "1.1.10"; 20080 + version = "1.1.11"; 20081 + src = fetchurl { 20082 + url = "https://registry.npmjs.org/npm-packlist/-/npm-packlist-1.1.11.tgz"; 20083 + sha512 = "CxKlZ24urLkJk+9kCm48RTQ7L4hsmgSVzEk0TLGPzzyuFxD7VNgy5Sl24tOLMzQv773a/NeJ1ce1DKeacqffEA=="; 20084 + }; 20085 + }; 20086 + "npm-path-2.0.4" = { 20087 + name = "npm-path"; 20088 + packageName = "npm-path"; 20089 + version = "2.0.4"; 20090 + src = fetchurl { 20091 + url = "https://registry.npmjs.org/npm-path/-/npm-path-2.0.4.tgz"; 20092 + sha512 = "IFsj0R9C7ZdR5cP+ET342q77uSRdtWOlWpih5eC+lu29tIDbNEgDbzgVJ5UFvYHWhxDZ5TFkJafFioO0pPQjCw=="; 20093 + }; 20094 + }; 20095 + "npm-paths-1.0.0" = { 20096 + name = "npm-paths"; 20097 + packageName = "npm-paths"; 20098 + version = "1.0.0"; 19136 20099 src = fetchurl { 19137 - url = "https://registry.npmjs.org/npm-packlist/-/npm-packlist-1.1.10.tgz"; 19138 - sha512 = "AQC0Dyhzn4EiYEfIUjCdMl0JJ61I2ER9ukf/sLxJUcZHfo+VyEfz2rMJgLZSS1v30OxPQe1cN0LZA1xbcaVfWA=="; 20100 + url = "https://registry.npmjs.org/npm-paths/-/npm-paths-1.0.0.tgz"; 20101 + sha512 = "COlxSO5PK9UvZXIa7/sqJDZOlffWFx9+CKJJWkdbhUJMBwcf9sof2jxt4uiVsl+nY3sy0/XFGl4iGr8GoKfiXA=="; 19139 20102 }; 19140 20103 }; 19141 20104 "npm-registry-client-0.2.27" = { ··· 19156 20119 sha512 = "7rjGF2eA7hKDidGyEWmHTiKfXkbrcQAsGL/Rh4Rt3x3YNRNHhwaTzVJfW3aNvvlhg4G62VCluif0sLCb/i51Hg=="; 19157 20120 }; 19158 20121 }; 20122 + "npm-run-4.1.2" = { 20123 + name = "npm-run"; 20124 + packageName = "npm-run"; 20125 + version = "4.1.2"; 20126 + src = fetchurl { 20127 + url = "https://registry.npmjs.org/npm-run/-/npm-run-4.1.2.tgz"; 20128 + sha1 = "1030e1ec56908c89fcc3fa366d03a2c2ba98eb99"; 20129 + }; 20130 + }; 19159 20131 "npm-run-path-1.0.0" = { 19160 20132 name = "npm-run-path"; 19161 20133 packageName = "npm-run-path"; ··· 19172 20144 src = fetchurl { 19173 20145 url = "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz"; 19174 20146 sha1 = "35a9232dfa35d7067b4cb2ddf2357b1871536c5f"; 20147 + }; 20148 + }; 20149 + "npm-which-3.0.1" = { 20150 + name = "npm-which"; 20151 + packageName = "npm-which"; 20152 + version = "3.0.1"; 20153 + src = fetchurl { 20154 + url = "https://registry.npmjs.org/npm-which/-/npm-which-3.0.1.tgz"; 20155 + sha1 = "9225f26ec3a285c209cae67c3b11a6b4ab7140aa"; 19175 20156 }; 19176 20157 }; 19177 20158 "npmconf-0.1.1" = { ··· 19607 20588 sha1 = "067428230fd67443b2794b22bba528b6867962d4"; 19608 20589 }; 19609 20590 }; 20591 + "ono-4.0.5" = { 20592 + name = "ono"; 20593 + packageName = "ono"; 20594 + version = "4.0.5"; 20595 + src = fetchurl { 20596 + url = "https://registry.npmjs.org/ono/-/ono-4.0.5.tgz"; 20597 + sha512 = "ZVNuV9kJbr/2tWs83I2snrYo+WIS0DISF/xUfX9p9b6GyDD6F5N9PzHjW+p/dep6IGwSYylf1HCub5I/nM0R5Q=="; 20598 + }; 20599 + }; 19610 20600 "open-0.0.2" = { 19611 20601 name = "open"; 19612 20602 packageName = "open"; ··· 19976 20966 sha512 = "x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ=="; 19977 20967 }; 19978 20968 }; 20969 + "p-map-1.2.0" = { 20970 + name = "p-map"; 20971 + packageName = "p-map"; 20972 + version = "1.2.0"; 20973 + src = fetchurl { 20974 + url = "https://registry.npmjs.org/p-map/-/p-map-1.2.0.tgz"; 20975 + sha512 = "r6zKACMNhjPJMTl8KcFH4li//gkrXWfbD6feV8l6doRHlzljFWGJ2AP6iKaCJXyZmAUMOPtvbW7EXkbWO/pLEA=="; 20976 + }; 20977 + }; 20978 + "p-map-series-1.0.0" = { 20979 + name = "p-map-series"; 20980 + packageName = "p-map-series"; 20981 + version = "1.0.0"; 20982 + src = fetchurl { 20983 + url = "https://registry.npmjs.org/p-map-series/-/p-map-series-1.0.0.tgz"; 20984 + sha1 = "bf98fe575705658a9e1351befb85ae4c1f07bdca"; 20985 + }; 20986 + }; 20987 + "p-reduce-1.0.0" = { 20988 + name = "p-reduce"; 20989 + packageName = "p-reduce"; 20990 + version = "1.0.0"; 20991 + src = fetchurl { 20992 + url = "https://registry.npmjs.org/p-reduce/-/p-reduce-1.0.0.tgz"; 20993 + sha1 = "18c2b0dd936a4690a529f8231f58a0fdb6a47dfa"; 20994 + }; 20995 + }; 19979 20996 "p-some-2.0.1" = { 19980 20997 name = "p-some"; 19981 20998 packageName = "p-some"; ··· 20019 21036 src = fetchurl { 20020 21037 url = "https://registry.npmjs.org/p-try/-/p-try-2.0.0.tgz"; 20021 21038 sha512 = "hMp0onDKIajHfIkdRk3P4CdCmErkYAxxDtP3Wx/4nZ3aGlau2VKh3mZpcuFkH27WQkL/3WBCPOktzA9ZOAnMQQ=="; 21039 + }; 21040 + }; 21041 + "p-waterfall-1.0.0" = { 21042 + name = "p-waterfall"; 21043 + packageName = "p-waterfall"; 21044 + version = "1.0.0"; 21045 + src = fetchurl { 21046 + url = "https://registry.npmjs.org/p-waterfall/-/p-waterfall-1.0.0.tgz"; 21047 + sha1 = "7ed94b3ceb3332782353af6aae11aa9fc235bb00"; 20022 21048 }; 20023 21049 }; 20024 21050 "pac-proxy-agent-2.0.2" = { ··· 20147 21173 sha512 = "KPx7flKXg775zZpnp9SxJlz00gTd4BmJ2yJufSc44gMCRrRQ7NSzAcSJQfifuOLgW6bEi+ftrALtsgALeB2Adw=="; 20148 21174 }; 20149 21175 }; 20150 - "parse-entities-1.1.2" = { 20151 - name = "parse-entities"; 20152 - packageName = "parse-entities"; 20153 - version = "1.1.2"; 20154 - src = fetchurl { 20155 - url = "https://registry.npmjs.org/parse-entities/-/parse-entities-1.1.2.tgz"; 20156 - sha512 = "5N9lmQ7tmxfXf+hO3X6KRG6w7uYO/HL9fHalSySTdyn63C3WNvTM/1R8tn1u1larNcEbo3Slcy2bsVDQqvEpUg=="; 20157 - }; 20158 - }; 20159 21176 "parse-filepath-1.0.2" = { 20160 21177 name = "parse-filepath"; 20161 21178 packageName = "parse-filepath"; ··· 20172 21189 src = fetchurl { 20173 21190 url = "https://registry.npmjs.org/parse-github-repo-url/-/parse-github-repo-url-1.4.1.tgz"; 20174 21191 sha1 = "9e7d8bb252a6cb6ba42595060b7bf6df3dbc1f50"; 21192 + }; 21193 + }; 21194 + "parse-github-url-1.0.2" = { 21195 + name = "parse-github-url"; 21196 + packageName = "parse-github-url"; 21197 + version = "1.0.2"; 21198 + src = fetchurl { 21199 + url = "https://registry.npmjs.org/parse-github-url/-/parse-github-url-1.0.2.tgz"; 21200 + sha512 = "kgBf6avCbO3Cn6+RnzRGLkUsv4ZVqv/VfAYkRsyBcgkshNvVBkRn1FEZcW0Jb+npXQWm2vHPnnOqFteZxRRGNw=="; 20175 21201 }; 20176 21202 }; 20177 21203 "parse-glob-3.0.4" = { ··· 20210 21236 sha1 = "f480f40434ef80741f8469099f8dea18f55a4dc9"; 20211 21237 }; 20212 21238 }; 21239 + "parse-json-3.0.0" = { 21240 + name = "parse-json"; 21241 + packageName = "parse-json"; 21242 + version = "3.0.0"; 21243 + src = fetchurl { 21244 + url = "https://registry.npmjs.org/parse-json/-/parse-json-3.0.0.tgz"; 21245 + sha1 = "fa6f47b18e23826ead32f263e744d0e1e847fb13"; 21246 + }; 21247 + }; 20213 21248 "parse-json-4.0.0" = { 20214 21249 name = "parse-json"; 20215 21250 packageName = "parse-json"; ··· 20255 21290 sha512 = "yy7UTSmliOT/7Yl+P4hwwW2W7PbCTAMcD0lasaVG+k4/2laj42YWzLm468bLFGDoFPIb29g3BuwBcA3gLopKww=="; 20256 21291 }; 20257 21292 }; 20258 - "parse-torrent-6.0.1" = { 21293 + "parse-torrent-6.1.1" = { 20259 21294 name = "parse-torrent"; 20260 21295 packageName = "parse-torrent"; 20261 - version = "6.0.1"; 21296 + version = "6.1.1"; 20262 21297 src = fetchurl { 20263 - url = "https://registry.npmjs.org/parse-torrent/-/parse-torrent-6.0.1.tgz"; 20264 - sha512 = "triz3PBolkV8kvyV2GEvVn3wne5HayJc+C1Px3L0o1UaNBO2qlv2u6seXDrbRicmL/qL2msZap+SuzMuzNb/Kg=="; 21298 + url = "https://registry.npmjs.org/parse-torrent/-/parse-torrent-6.1.1.tgz"; 21299 + sha512 = "VOQseFSgXOJE1tnwLJHA6GAILC62GaXRtoCkf3cOiTxMt2P/Xjz1Oe6TVJB7BCm4WkgOY7QS22bjqA7Z4ryuJA=="; 20265 21300 }; 20266 21301 }; 20267 21302 "parse-torrent-file-2.1.4" = { ··· 20372 21407 sha1 = "fc289d4ed8993119460c156253262cdc8de65bf3"; 20373 21408 }; 20374 21409 }; 21410 + "pascal-case-2.0.1" = { 21411 + name = "pascal-case"; 21412 + packageName = "pascal-case"; 21413 + version = "2.0.1"; 21414 + src = fetchurl { 21415 + url = "https://registry.npmjs.org/pascal-case/-/pascal-case-2.0.1.tgz"; 21416 + sha1 = "2d578d3455f660da65eca18ef95b4e0de912761e"; 21417 + }; 21418 + }; 20375 21419 "pascalcase-0.1.1" = { 20376 21420 name = "pascalcase"; 20377 21421 packageName = "pascalcase"; ··· 20507 21551 sha512 = "BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ=="; 20508 21552 }; 20509 21553 }; 21554 + "path-case-2.1.1" = { 21555 + name = "path-case"; 21556 + packageName = "path-case"; 21557 + version = "2.1.1"; 21558 + src = fetchurl { 21559 + url = "https://registry.npmjs.org/path-case/-/path-case-2.1.1.tgz"; 21560 + sha1 = "94b8037c372d3fe2906e465bb45e25d226e8eea5"; 21561 + }; 21562 + }; 20510 21563 "path-dirname-1.0.2" = { 20511 21564 name = "path-dirname"; 20512 21565 packageName = "path-dirname"; ··· 20805 21858 sha1 = "6309f4e0e5fa913ec1c69307ae364b4b377c9e7b"; 20806 21859 }; 20807 21860 }; 21861 + "phantom-4.0.12" = { 21862 + name = "phantom"; 21863 + packageName = "phantom"; 21864 + version = "4.0.12"; 21865 + src = fetchurl { 21866 + url = "https://registry.npmjs.org/phantom/-/phantom-4.0.12.tgz"; 21867 + sha512 = "Tz82XhtPmwCk1FFPmecy7yRGZG2btpzY2KI9fcoPT7zT9det0CcMyfBFPp1S8DqzsnQnm8ZYEfdy528mwVtksA=="; 21868 + }; 21869 + }; 20808 21870 "phantomjs-1.9.20" = { 20809 21871 name = "phantomjs"; 20810 21872 packageName = "phantomjs"; ··· 20868 21930 sha1 = "2135d6dfa7a358c069ac9b178776288228450ffa"; 20869 21931 }; 20870 21932 }; 20871 - "pino-4.16.1" = { 21933 + "pino-4.17.6" = { 21934 + name = "pino"; 21935 + packageName = "pino"; 21936 + version = "4.17.6"; 21937 + src = fetchurl { 21938 + url = "https://registry.npmjs.org/pino/-/pino-4.17.6.tgz"; 21939 + sha512 = "LFDwmhyWLBnmwO/2UFbWu1jEGVDzaPupaVdx0XcZ3tIAx1EDEBauzxXf2S0UcFK7oe+X9MApjH0hx9U1XMgfCA=="; 21940 + }; 21941 + }; 21942 + "pino-5.0.0-rc.4" = { 20872 21943 name = "pino"; 20873 21944 packageName = "pino"; 20874 - version = "4.16.1"; 21945 + version = "5.0.0-rc.4"; 20875 21946 src = fetchurl { 20876 - url = "https://registry.npmjs.org/pino/-/pino-4.16.1.tgz"; 20877 - sha512 = "ST/IC5RMyqrOZL+Hq6LDwz5h4fGKABXzx2/5Ze7rz5TjuPvE8uI72dzj409xkq9JjyWsKoOOApgXn8kEjJ73yg=="; 21947 + url = "https://registry.npmjs.org/pino/-/pino-5.0.0-rc.4.tgz"; 21948 + sha512 = "n5aJmABDjzZbwrB0AEbUeugz1Rh55c9T62yVGv6YL1vP1GuqpjIcLgwZIM1SI8E4Nfmcoo46SSmPgSSA9mPdog=="; 20878 21949 }; 20879 21950 }; 20880 21951 "pino-std-serializers-2.1.0" = { ··· 21120 22191 sha1 = "01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab"; 21121 22192 }; 21122 22193 }; 21123 - "postcss-6.0.19" = { 21124 - name = "postcss"; 21125 - packageName = "postcss"; 21126 - version = "6.0.19"; 21127 - src = fetchurl { 21128 - url = "https://registry.npmjs.org/postcss/-/postcss-6.0.19.tgz"; 21129 - sha512 = "f13HRz0HtVwVaEuW6J6cOUCBLFtymhgyLPV7t4QEk2UD3twRI9IluDcQNdzQdBpiixkXj2OmzejhhTbSbDxNTg=="; 21130 - }; 21131 - }; 21132 22194 "postcss-6.0.23" = { 21133 22195 name = "postcss"; 21134 22196 packageName = "postcss"; ··· 21147 22209 sha1 = "d9ae0ca85330e03962d93292f95a8b44c2ebf505"; 21148 22210 }; 21149 22211 }; 21150 - "prebuild-install-4.0.0" = { 21151 - name = "prebuild-install"; 21152 - packageName = "prebuild-install"; 21153 - version = "4.0.0"; 21154 - src = fetchurl { 21155 - url = "https://registry.npmjs.org/prebuild-install/-/prebuild-install-4.0.0.tgz"; 21156 - sha512 = "7tayxeYboJX0RbVzdnKyGl2vhQRWr6qfClEXDhOkXjuaOKCw2q8aiuFhONRYVsG/czia7KhpykIlI2S2VaPunA=="; 21157 - }; 21158 - }; 21159 22212 "precond-0.2.3" = { 21160 22213 name = "precond"; 21161 22214 packageName = "precond"; ··· 21253 22306 src = fetchurl { 21254 22307 url = "https://registry.npmjs.org/printf/-/printf-0.2.5.tgz"; 21255 22308 sha1 = "c438ca2ca33e3927671db4ab69c0e52f936a4f0f"; 22309 + }; 22310 + }; 22311 + "prisma-json-schema-0.0.4" = { 22312 + name = "prisma-json-schema"; 22313 + packageName = "prisma-json-schema"; 22314 + version = "0.0.4"; 22315 + src = fetchurl { 22316 + url = "https://registry.npmjs.org/prisma-json-schema/-/prisma-json-schema-0.0.4.tgz"; 22317 + sha512 = "NTbourUhkmhM18rrcnp+IdxTdWftUsepZcNX2QntOqkOOwccYADmmZJpTr9tuvCYsW3i48B8LVEwvm0v1pAhxQ=="; 22318 + }; 22319 + }; 22320 + "prisma-yml-1.0.50" = { 22321 + name = "prisma-yml"; 22322 + packageName = "prisma-yml"; 22323 + version = "1.0.50"; 22324 + src = fetchurl { 22325 + url = "https://registry.npmjs.org/prisma-yml/-/prisma-yml-1.0.50.tgz"; 22326 + sha512 = "Vpt6q+YzS6yozMnIPU75hlHzmDR1Hj4Z3FXaazJrOXUyeQx/xDqeEwRJ+ii4xl/GRYiFnMEVSLfsPzjLehA1Zw=="; 21256 22327 }; 21257 22328 }; 21258 22329 "private-0.1.8" = { ··· 21498 22569 sha1 = "bc826e34c3af4697e8d0af7a669e4d612aedcd17"; 21499 22570 }; 21500 22571 }; 22572 + "protochain-1.0.5" = { 22573 + name = "protochain"; 22574 + packageName = "protochain"; 22575 + version = "1.0.5"; 22576 + src = fetchurl { 22577 + url = "https://registry.npmjs.org/protochain/-/protochain-1.0.5.tgz"; 22578 + sha1 = "991c407e99de264aadf8f81504b5e7faf7bfa260"; 22579 + }; 22580 + }; 21501 22581 "protocol-buffers-encodings-1.1.0" = { 21502 22582 name = "protocol-buffers-encodings"; 21503 22583 packageName = "protocol-buffers-encodings"; ··· 21525 22605 sha1 = "71c0ee3b102de3f202f3b64f608d173fcba1a918"; 21526 22606 }; 21527 22607 }; 21528 - "proxy-addr-2.0.3" = { 22608 + "proxy-addr-2.0.4" = { 21529 22609 name = "proxy-addr"; 21530 22610 packageName = "proxy-addr"; 21531 - version = "2.0.3"; 22611 + version = "2.0.4"; 22612 + src = fetchurl { 22613 + url = "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.4.tgz"; 22614 + sha512 = "5erio2h9jp5CHGwcybmxmVqHmnCBZeewlfJ0pex+UW7Qny7OOZXTtH56TGNyBizkgiOwhJtMKrVzDTeKcySZwA=="; 22615 + }; 22616 + }; 22617 + "proxy-agent-2.3.1" = { 22618 + name = "proxy-agent"; 22619 + packageName = "proxy-agent"; 22620 + version = "2.3.1"; 21532 22621 src = fetchurl { 21533 - url = "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.3.tgz"; 21534 - sha512 = "jQTChiCJteusULxjBp8+jftSQE5Obdl3k4cnmLA6WXtK6XFuWRnvVL7aCiBqaLPM8c4ph0S4tKna8XvmIwEnXQ=="; 22622 + url = "https://registry.npmjs.org/proxy-agent/-/proxy-agent-2.3.1.tgz"; 22623 + sha512 = "CNKuhC1jVtm8KJYFTS2ZRO71VCBx3QSA92So/e6NrY6GoJonkx3Irnk4047EsCcswczwqAekRj3s8qLRGahSKg=="; 21535 22624 }; 21536 22625 }; 21537 22626 "proxy-agent-3.0.1" = { ··· 21606 22695 sha1 = "f052a28da70e618917ef0a8ac34c1ae5a68286b3"; 21607 22696 }; 21608 22697 }; 21609 - "psl-1.1.28" = { 22698 + "psl-1.1.29" = { 21610 22699 name = "psl"; 21611 22700 packageName = "psl"; 21612 - version = "1.1.28"; 22701 + version = "1.1.29"; 21613 22702 src = fetchurl { 21614 - url = "https://registry.npmjs.org/psl/-/psl-1.1.28.tgz"; 21615 - sha512 = "+AqO1Ae+N/4r7Rvchrdm432afjT9hqJRyBN3DQv9At0tPz4hIFSGKbq64fN9dVoCow4oggIIax5/iONx0r9hZw=="; 22703 + url = "https://registry.npmjs.org/psl/-/psl-1.1.29.tgz"; 22704 + sha512 = "AeUmQ0oLN02flVHXWh9sSJF7mcdFq0ppid/JkErufc3hGIV/AMa8Fo9VgDo/cT2jFdOWoFvHp90qqBH54W+gjQ=="; 21616 22705 }; 21617 22706 }; 21618 22707 "pstree.remy-1.1.0" = { ··· 22119 23208 sha1 = "0ca581de3174becef25ac3c2e8956342381db698"; 22120 23209 }; 22121 23210 }; 23211 + "quick-format-unescaped-3.0.0" = { 23212 + name = "quick-format-unescaped"; 23213 + packageName = "quick-format-unescaped"; 23214 + version = "3.0.0"; 23215 + src = fetchurl { 23216 + url = "https://registry.npmjs.org/quick-format-unescaped/-/quick-format-unescaped-3.0.0.tgz"; 23217 + sha512 = "XmIOc07VM2kPm6m3j/U6jgxyUgDm2Rgh2c1PPy0JUHoQRdoh86hOym0bHyF6G1T6sn+N5lildhvl/T59H5KVyA=="; 23218 + }; 23219 + }; 22122 23220 "quick-lru-1.1.0" = { 22123 23221 name = "quick-lru"; 22124 23222 packageName = "quick-lru"; ··· 22245 23343 sha1 = "01ba954276052b783900e63d6118d8fcf3875d7f"; 22246 23344 }; 22247 23345 }; 22248 - "raven-js-3.26.3" = { 23346 + "raven-js-3.26.4" = { 22249 23347 name = "raven-js"; 22250 23348 packageName = "raven-js"; 22251 - version = "3.26.3"; 23349 + version = "3.26.4"; 22252 23350 src = fetchurl { 22253 - url = "https://registry.npmjs.org/raven-js/-/raven-js-3.26.3.tgz"; 22254 - sha512 = "VPAsPfK73A9VPcJx5X/kt0GxOqUGpGDM8vdzsYNQXMhYemyZGiW1JX1AI+f4jxm37Apijj6VVtCyJcYFz3ocSQ=="; 23351 + url = "https://registry.npmjs.org/raven-js/-/raven-js-3.26.4.tgz"; 23352 + sha512 = "5VmC3IWhTQJkaiQaCY0S5V8za4bpUgbbuVT1MkDH7JVqgu8CPQ750XaFF8BVRbLV9F5nvoz7n0UT0CKteDuZAg=="; 22255 23353 }; 22256 23354 }; 22257 23355 "raw-body-0.0.3" = { ··· 22261 23359 src = fetchurl { 22262 23360 url = "https://registry.npmjs.org/raw-body/-/raw-body-0.0.3.tgz"; 22263 23361 sha1 = "0cb3eb22ced1ca607d32dd8fd94a6eb383f3eb8a"; 22264 - }; 22265 - }; 22266 - "raw-body-1.1.7" = { 22267 - name = "raw-body"; 22268 - packageName = "raw-body"; 22269 - version = "1.1.7"; 22270 - src = fetchurl { 22271 - url = "https://registry.npmjs.org/raw-body/-/raw-body-1.1.7.tgz"; 22272 - sha1 = "1d027c2bfa116acc6623bca8f00016572a87d425"; 22273 23362 }; 22274 23363 }; 22275 23364 "raw-body-1.3.4" = { ··· 22407 23496 sha512 = "/1dZ7TRZvGrYqE0UAfN6qQb5GYBsNcqS1C0tNK601CFOJmtHI7NIGXwetEPU/OtoFHZL3hDxm4rolFFVE9Bnmg=="; 22408 23497 }; 22409 23498 }; 23499 + "read-package-tree-5.2.1" = { 23500 + name = "read-package-tree"; 23501 + packageName = "read-package-tree"; 23502 + version = "5.2.1"; 23503 + src = fetchurl { 23504 + url = "https://registry.npmjs.org/read-package-tree/-/read-package-tree-5.2.1.tgz"; 23505 + sha512 = "2CNoRoh95LxY47LvqrehIAfUVda2JbuFE/HaGYs42bNrGG+ojbw1h3zOcPcQ+1GQ3+rkzNndZn85u1XyZ3UsIA=="; 23506 + }; 23507 + }; 22410 23508 "read-pkg-1.1.0" = { 22411 23509 name = "read-pkg"; 22412 23510 packageName = "read-pkg"; ··· 22522 23620 src = fetchurl { 22523 23621 url = "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz"; 22524 23622 sha512 = "tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw=="; 23623 + }; 23624 + }; 23625 + "readdir-scoped-modules-1.0.2" = { 23626 + name = "readdir-scoped-modules"; 23627 + packageName = "readdir-scoped-modules"; 23628 + version = "1.0.2"; 23629 + src = fetchurl { 23630 + url = "https://registry.npmjs.org/readdir-scoped-modules/-/readdir-scoped-modules-1.0.2.tgz"; 23631 + sha1 = "9fafa37d286be5d92cbaebdee030dc9b5f406747"; 22525 23632 }; 22526 23633 }; 22527 23634 "readdirp-2.1.0" = { ··· 22794 23901 sha1 = "7c8d4aa2f095704cd020e32e8099bcae103f0bd4"; 22795 23902 }; 22796 23903 }; 22797 - "remark-5.1.0" = { 22798 - name = "remark"; 22799 - packageName = "remark"; 22800 - version = "5.1.0"; 22801 - src = fetchurl { 22802 - url = "https://registry.npmjs.org/remark/-/remark-5.1.0.tgz"; 22803 - sha1 = "cb463bd3dbcb4b99794935eee1cf71d7a8e3068c"; 22804 - }; 22805 - }; 22806 - "remark-parse-1.1.0" = { 22807 - name = "remark-parse"; 22808 - packageName = "remark-parse"; 22809 - version = "1.1.0"; 22810 - src = fetchurl { 22811 - url = "https://registry.npmjs.org/remark-parse/-/remark-parse-1.1.0.tgz"; 22812 - sha1 = "c3ca10f9a8da04615c28f09aa4e304510526ec21"; 22813 - }; 22814 - }; 22815 - "remark-stringify-1.1.0" = { 22816 - name = "remark-stringify"; 22817 - packageName = "remark-stringify"; 22818 - version = "1.1.0"; 22819 - src = fetchurl { 22820 - url = "https://registry.npmjs.org/remark-stringify/-/remark-stringify-1.1.0.tgz"; 22821 - sha1 = "a7105e25b9ee2bf9a49b75d2c423f11b06ae2092"; 22822 - }; 22823 - }; 22824 23904 "remove-array-items-1.0.0" = { 22825 23905 name = "remove-array-items"; 22826 23906 packageName = "remove-array-items"; ··· 22857 23937 sha1 = "c24bce2a283adad5bc3f58e0d48249b92379d8ef"; 22858 23938 }; 22859 23939 }; 22860 - "render-media-3.1.0" = { 23940 + "render-media-3.1.2" = { 22861 23941 name = "render-media"; 22862 23942 packageName = "render-media"; 22863 - version = "3.1.0"; 23943 + version = "3.1.2"; 22864 23944 src = fetchurl { 22865 - url = "https://registry.npmjs.org/render-media/-/render-media-3.1.0.tgz"; 22866 - sha512 = "rTNcgMHJ/MrQbt96bTTwlfBY1A87EqNx0buJ2pPHTuLGwk0Aw99e1BrHgr6SpB4D7Cb7AMdiL/Gzx+UYrHliVw=="; 23945 + url = "https://registry.npmjs.org/render-media/-/render-media-3.1.2.tgz"; 23946 + sha512 = "SZZ1i5qsPTLKIkYZ5SHHFUArtj5hGzvNGcwnQnJcjcNI9X3yptAhB4dBdglTO9ViYG/CXQDz/liaqYLNFBWA/A=="; 22867 23947 }; 22868 23948 }; 22869 23949 "render-readme-1.3.1" = { ··· 22938 24018 sha1 = "de63128373fcbf7c3ccfa4de5a480c45a67958eb"; 22939 24019 }; 22940 24020 }; 24021 + "replaceall-0.1.6" = { 24022 + name = "replaceall"; 24023 + packageName = "replaceall"; 24024 + version = "0.1.6"; 24025 + src = fetchurl { 24026 + url = "https://registry.npmjs.org/replaceall/-/replaceall-0.1.6.tgz"; 24027 + sha1 = "81d81ac7aeb72d7f5c4942adf2697a3220688d8e"; 24028 + }; 24029 + }; 22941 24030 "request-2.16.6" = { 22942 24031 name = "request"; 22943 24032 packageName = "request"; ··· 23001 24090 sha512 = "lR3gD69osqm6EYLk9wB/G1W/laGWjzH90t1vEa2xuxHD5KUrSzp9pUSfTm+YC5Nxt2T8nMPEvKlhbQayU7bgFw=="; 23002 24091 }; 23003 24092 }; 23004 - "request-2.85.0" = { 23005 - name = "request"; 23006 - packageName = "request"; 23007 - version = "2.85.0"; 23008 - src = fetchurl { 23009 - url = "https://registry.npmjs.org/request/-/request-2.85.0.tgz"; 23010 - sha512 = "8H7Ehijd4js+s6wuVPLjwORxD4zeuyjYugprdOXlPSqaApmL/QOy+EB/beICHVCHkGMKNh5rvihb5ov+IDw4mg=="; 23011 - }; 23012 - }; 23013 24093 "request-2.87.0" = { 23014 24094 name = "request"; 23015 24095 packageName = "request"; ··· 23037 24117 sha1 = "5d36bb57961c673aa5b788dbc8141fdf23b44e08"; 23038 24118 }; 23039 24119 }; 24120 + "request-promise-4.2.2" = { 24121 + name = "request-promise"; 24122 + packageName = "request-promise"; 24123 + version = "4.2.2"; 24124 + src = fetchurl { 24125 + url = "https://registry.npmjs.org/request-promise/-/request-promise-4.2.2.tgz"; 24126 + sha1 = "d1ea46d654a6ee4f8ee6a4fea1018c22911904b4"; 24127 + }; 24128 + }; 24129 + "request-promise-core-1.1.1" = { 24130 + name = "request-promise-core"; 24131 + packageName = "request-promise-core"; 24132 + version = "1.1.1"; 24133 + src = fetchurl { 24134 + url = "https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.1.tgz"; 24135 + sha1 = "3eee00b2c5aa83239cfb04c5700da36f81cd08b6"; 24136 + }; 24137 + }; 23040 24138 "requestretry-1.13.0" = { 23041 24139 name = "requestretry"; 23042 24140 packageName = "requestretry"; ··· 23127 24225 sha512 = "AicPrAC7Qu1JxPCZ9ZgCZlY35QgFnNqc+0LtbRNxnVw4TXvjQ72wnuL9JQcEBgXkI9JM8MsT9kaQoHcpCRJOYA=="; 23128 24226 }; 23129 24227 }; 24228 + "resolve-cwd-2.0.0" = { 24229 + name = "resolve-cwd"; 24230 + packageName = "resolve-cwd"; 24231 + version = "2.0.0"; 24232 + src = fetchurl { 24233 + url = "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz"; 24234 + sha1 = "00a9f7387556e27038eae232caa372a6a59b665a"; 24235 + }; 24236 + }; 23130 24237 "resolve-dir-1.0.1" = { 23131 24238 name = "resolve-dir"; 23132 24239 packageName = "resolve-dir"; ··· 23161 24268 src = fetchurl { 23162 24269 url = "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz"; 23163 24270 sha1 = "b22c7af7d9d6881bc8b6e653335eebcb0a188748"; 24271 + }; 24272 + }; 24273 + "resolve-from-4.0.0" = { 24274 + name = "resolve-from"; 24275 + packageName = "resolve-from"; 24276 + version = "4.0.0"; 24277 + src = fetchurl { 24278 + url = "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz"; 24279 + sha512 = "pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g=="; 23164 24280 }; 23165 24281 }; 23166 24282 "resolve-options-1.1.0" = { ··· 23550 24666 sha512 = "Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="; 23551 24667 }; 23552 24668 }; 23553 - "safe-json-parse-1.0.1" = { 23554 - name = "safe-json-parse"; 23555 - packageName = "safe-json-parse"; 23556 - version = "1.0.1"; 23557 - src = fetchurl { 23558 - url = "https://registry.npmjs.org/safe-json-parse/-/safe-json-parse-1.0.1.tgz"; 23559 - sha1 = "3e76723e38dfdda13c9b1d29a1e07ffee4b30b57"; 23560 - }; 23561 - }; 23562 24669 "safe-json-stringify-1.2.0" = { 23563 24670 name = "safe-json-stringify"; 23564 24671 packageName = "safe-json-stringify"; ··· 23595 24702 sha1 = "741e245e231f07cafb6fdf0f133adfa216a502ad"; 23596 24703 }; 23597 24704 }; 23598 - "sanitize-html-1.18.2" = { 24705 + "sanitize-html-1.18.4" = { 23599 24706 name = "sanitize-html"; 23600 24707 packageName = "sanitize-html"; 23601 - version = "1.18.2"; 24708 + version = "1.18.4"; 23602 24709 src = fetchurl { 23603 - url = "https://registry.npmjs.org/sanitize-html/-/sanitize-html-1.18.2.tgz"; 23604 - sha512 = "52ThA+Z7h6BnvpSVbURwChl10XZrps5q7ytjTwWcIe9bmJwnVP6cpEVK2NvDOUhGupoqAvNbUz3cpnJDp4+/pg=="; 24710 + url = "https://registry.npmjs.org/sanitize-html/-/sanitize-html-1.18.4.tgz"; 24711 + sha512 = "hjyDYCYrQuhnEjq+5lenLlIfdPBtnZ7z0DkQOC8YGxvkuOInH+1SrkNTj30t4f2/SSv9c5kLniB+uCIpBvYuew=="; 23605 24712 }; 23606 24713 }; 23607 24714 "sax-0.3.5" = { ··· 23674 24781 src = fetchurl { 23675 24782 url = "https://registry.npmjs.org/scoped-regex/-/scoped-regex-1.0.0.tgz"; 23676 24783 sha1 = "a346bb1acd4207ae70bd7c0c7ca9e566b6baddb8"; 24784 + }; 24785 + }; 24786 + "scuid-1.1.0" = { 24787 + name = "scuid"; 24788 + packageName = "scuid"; 24789 + version = "1.1.0"; 24790 + src = fetchurl { 24791 + url = "https://registry.npmjs.org/scuid/-/scuid-1.1.0.tgz"; 24792 + sha512 = "MuCAyrGZcTLfQoH2XoBlQ8C6bzwN88XT/0slOGz0pn8+gIP85BOAfYa44ZXQUTOwRwPU0QvgU+V+OSajl/59Xg=="; 23677 24793 }; 23678 24794 }; 23679 24795 "secure-keys-1.0.0" = { ··· 23892 25008 sha512 = "E64YFPUssFHEFBvpbbjr44NCLtI1AohxQ8ZSiJjQLskAdKuriYEP6VyGEsRDH8ScozGpkaX1BGvhanqCwkcEZw=="; 23893 25009 }; 23894 25010 }; 25011 + "sentence-case-2.1.1" = { 25012 + name = "sentence-case"; 25013 + packageName = "sentence-case"; 25014 + version = "2.1.1"; 25015 + src = fetchurl { 25016 + url = "https://registry.npmjs.org/sentence-case/-/sentence-case-2.1.1.tgz"; 25017 + sha1 = "1f6e2dda39c168bf92d13f86d4a918933f667ed4"; 25018 + }; 25019 + }; 23895 25020 "sentiment-2.1.0" = { 23896 25021 name = "sentiment"; 23897 25022 packageName = "sentiment"; ··· 23928 25053 sha512 = "Ga8c8NjAAp46Br4+0oZ2WxJCwIzwP60Gq1YPgU+39PiTVxyed/iKE/zyZI6+UlVYH5Q4PaQdHhcegIFPZTUfoQ=="; 23929 25054 }; 23930 25055 }; 25056 + "serializerr-1.0.3" = { 25057 + name = "serializerr"; 25058 + packageName = "serializerr"; 25059 + version = "1.0.3"; 25060 + src = fetchurl { 25061 + url = "https://registry.npmjs.org/serializerr/-/serializerr-1.0.3.tgz"; 25062 + sha1 = "12d4c5aa1c3ffb8f6d1dc5f395aa9455569c3f91"; 25063 + }; 25064 + }; 23931 25065 "serve-favicon-2.3.2" = { 23932 25066 name = "serve-favicon"; 23933 25067 packageName = "serve-favicon"; ··· 23946 25080 sha1 = "935d240cdfe0f5805307fdfe967d88942a2cbcf0"; 23947 25081 }; 23948 25082 }; 23949 - "serve-handler-3.3.0" = { 25083 + "serve-handler-3.6.0" = { 23950 25084 name = "serve-handler"; 23951 25085 packageName = "serve-handler"; 23952 - version = "3.3.0"; 25086 + version = "3.6.0"; 23953 25087 src = fetchurl { 23954 - url = "https://registry.npmjs.org/serve-handler/-/serve-handler-3.3.0.tgz"; 23955 - sha512 = "cJi7lLmrYEOLdz8sWCSNwrYJaxdhgWGQKFLPUXS4swpm/CXbQ5QRtuvIESSXQF4/iheYRNcQ+M6maH9UhTp0LA=="; 25088 + url = "https://registry.npmjs.org/serve-handler/-/serve-handler-3.6.0.tgz"; 25089 + sha512 = "YPMV1OCfOxub4OnGQQtcGEJNI6e49r0vfSid2U5xrcOB1l6TFWfvHmUhEbfrvU7sqhZgmicfVtVBiAAGRH7NTA=="; 23956 25090 }; 23957 25091 }; 23958 25092 "serve-index-1.7.3" = { ··· 24180 25314 sha1 = "decbcf874b0d1e5fb72e14b164a9683048e9acb3"; 24181 25315 }; 24182 25316 }; 24183 - "shelljs-0.8.1" = { 25317 + "shelljs-0.8.2" = { 24184 25318 name = "shelljs"; 24185 25319 packageName = "shelljs"; 24186 - version = "0.8.1"; 25320 + version = "0.8.2"; 24187 25321 src = fetchurl { 24188 - url = "https://registry.npmjs.org/shelljs/-/shelljs-0.8.1.tgz"; 24189 - sha512 = "YA/iYtZpzFe5HyWVGrb02FjPxc4EMCfpoU/Phg9fQoyMC72u9598OUBrsU8IrtwAKG0tO8IYaqbaLIw+k3IRGA=="; 25322 + url = "https://registry.npmjs.org/shelljs/-/shelljs-0.8.2.tgz"; 25323 + sha512 = "pRXeNrCA2Wd9itwhvLp5LZQvPJ0wU6bcjaTMywHHGX5XWhVN2nzSu7WV0q+oUY7mGK3mgSkDDzP3MgjqdyIgbQ=="; 24190 25324 }; 24191 25325 }; 24192 25326 "shellwords-0.1.1" = { ··· 24259 25393 src = fetchurl { 24260 25394 url = "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.0.tgz"; 24261 25395 sha1 = "7344cbb8b6e26fb27d66b2fc86f9f6d5997521c6"; 25396 + }; 25397 + }; 25398 + "simple-errors-1.0.1" = { 25399 + name = "simple-errors"; 25400 + packageName = "simple-errors"; 25401 + version = "1.0.1"; 25402 + src = fetchurl { 25403 + url = "https://registry.npmjs.org/simple-errors/-/simple-errors-1.0.1.tgz"; 25404 + sha1 = "b0bbecac1f1082f13b3962894b4a9e88f3a0c9ef"; 24262 25405 }; 24263 25406 }; 24264 25407 "simple-get-1.4.3" = { ··· 24360 25503 sha1 = "5d3d5751bb39aeba2f710d8eec78768df821f38d"; 24361 25504 }; 24362 25505 }; 24363 - "simple-websocket-7.0.2" = { 25506 + "simple-websocket-7.2.0" = { 24364 25507 name = "simple-websocket"; 24365 25508 packageName = "simple-websocket"; 24366 - version = "7.0.2"; 25509 + version = "7.2.0"; 24367 25510 src = fetchurl { 24368 - url = "https://registry.npmjs.org/simple-websocket/-/simple-websocket-7.0.2.tgz"; 24369 - sha512 = "cAjSaqHMtO2qc1HHSrW44aTrb2Xa7wZzHajvH6An4IhCFjTuPUXfmSByd9Z0B5Bc6bmiwQ2bFHMUMA8vGC5Bug=="; 25511 + url = "https://registry.npmjs.org/simple-websocket/-/simple-websocket-7.2.0.tgz"; 25512 + sha512 = "wdxFg1fHw1yqFKWDcw+yNb4VIYqtl+vknZMlpLhvZSlR6l7/iVuwozqo+Qtl73mB1IH5QnXzonD1S+hAaLNTvQ=="; 24370 25513 }; 24371 25514 }; 24372 25515 "simplediff-0.1.1" = { ··· 24567 25710 sha1 = "d76ef9127cb23c2259edb1e8349c2e8d5e2d74c1"; 24568 25711 }; 24569 25712 }; 25713 + "snake-case-2.1.0" = { 25714 + name = "snake-case"; 25715 + packageName = "snake-case"; 25716 + version = "2.1.0"; 25717 + src = fetchurl { 25718 + url = "https://registry.npmjs.org/snake-case/-/snake-case-2.1.0.tgz"; 25719 + sha1 = "41bdb1b73f30ec66a04d4e2cad1b76387d4d6d9f"; 25720 + }; 25721 + }; 24570 25722 "snapdragon-0.8.2" = { 24571 25723 name = "snapdragon"; 24572 25724 packageName = "snapdragon"; ··· 24630 25782 sha512 = "FL1b58BDrqS3A11lJ0zEdnJ3UOKqVxawAkF3k7F0CVN7VQ34aZrV+G8BZ1WC9ZL7NyrwsW0oviwsWDgRuVYtJg=="; 24631 25783 }; 24632 25784 }; 24633 - "snyk-1.88.2" = { 25785 + "snyk-1.90.0" = { 24634 25786 name = "snyk"; 24635 25787 packageName = "snyk"; 24636 - version = "1.88.2"; 25788 + version = "1.90.0"; 24637 25789 src = fetchurl { 24638 - url = "https://registry.npmjs.org/snyk/-/snyk-1.88.2.tgz"; 24639 - sha1 = "fff27ebbaa4f624398bd6d31b76c008912efd6b7"; 25790 + url = "https://registry.npmjs.org/snyk/-/snyk-1.90.0.tgz"; 25791 + sha1 = "ba37f66484e18a56fc98f64d565a517a53fc8562"; 24640 25792 }; 24641 25793 }; 24642 25794 "snyk-config-2.1.0" = { ··· 24693 25845 sha512 = "ieTWhn1MB88gEQ6nUtGCeUKQ6Xoxm+u+QmD9u3zfP1QS5ep9fWt3YYDUQjgUiDTJJy7QyVQdZ/fsz3RECnOA7w=="; 24694 25846 }; 24695 25847 }; 24696 - "snyk-nuget-plugin-1.6.2" = { 25848 + "snyk-nuget-plugin-1.6.3" = { 24697 25849 name = "snyk-nuget-plugin"; 24698 25850 packageName = "snyk-nuget-plugin"; 24699 - version = "1.6.2"; 25851 + version = "1.6.3"; 24700 25852 src = fetchurl { 24701 - url = "https://registry.npmjs.org/snyk-nuget-plugin/-/snyk-nuget-plugin-1.6.2.tgz"; 24702 - sha512 = "8l8hS85esXyweTFgUFdwnGT94Ts42KcG5fdBX2wYosQkpUMePd+GTT9+64k/GvdH5hqcNt2OvtzW+Uf8JF+pbA=="; 25853 + url = "https://registry.npmjs.org/snyk-nuget-plugin/-/snyk-nuget-plugin-1.6.3.tgz"; 25854 + sha512 = "sC590aveQb0ns7HuDheIZ7FhN/HZzWgzXKUnBGfia/SXIFBpQz/6tognraMJ4+877uLLSdsB2jkyDeHYeWICrg=="; 24703 25855 }; 24704 25856 }; 24705 25857 "snyk-php-plugin-1.5.1" = { ··· 24720 25872 sha512 = "CEioNnDzccHyid7UIVl3bJ1dnG4co4ofI+KxuC1mo0IUXy64gxnBTeVoZF5gVLWbAyxGxSeW8f0+8GmWMHVb7w=="; 24721 25873 }; 24722 25874 }; 24723 - "snyk-python-plugin-1.6.1" = { 25875 + "snyk-python-plugin-1.8.0" = { 24724 25876 name = "snyk-python-plugin"; 24725 25877 packageName = "snyk-python-plugin"; 24726 - version = "1.6.1"; 25878 + version = "1.8.0"; 24727 25879 src = fetchurl { 24728 - url = "https://registry.npmjs.org/snyk-python-plugin/-/snyk-python-plugin-1.6.1.tgz"; 24729 - sha512 = "6zr5jAB3p/bwMZQxZpdj+aPmioTgHB4DI6JMLInhZupss0x8Ome5YqzVzBbOvUKNrc3KaLtjGrJWcAuxDL6M/g=="; 25880 + url = "https://registry.npmjs.org/snyk-python-plugin/-/snyk-python-plugin-1.8.0.tgz"; 25881 + sha512 = "44oDdNjCaNEy+uSmLB3iqtGJa6TAmB7bcG7j9+KkHH6WNxjrwCDHAZQXncIeliYXohb0FFTNMAnbAK4PosqN2Q=="; 24730 25882 }; 24731 25883 }; 24732 25884 "snyk-resolve-1.0.1" = { ··· 25006 26158 src = fetchurl { 25007 26159 url = "https://registry.npmjs.org/sodium-universal/-/sodium-universal-2.0.0.tgz"; 25008 26160 sha512 = "csdVyakzHJRyCevY4aZC2Eacda8paf+4nmRGF2N7KxCLKY2Ajn72JsExaQlJQ2BiXJncp44p3T+b80cU+2TTsg=="; 26161 + }; 26162 + }; 26163 + "sonic-boom-0.5.0" = { 26164 + name = "sonic-boom"; 26165 + packageName = "sonic-boom"; 26166 + version = "0.5.0"; 26167 + src = fetchurl { 26168 + url = "https://registry.npmjs.org/sonic-boom/-/sonic-boom-0.5.0.tgz"; 26169 + sha512 = "IqUrLNxgsUQGVyMLW8w8vELMa1BZIQ/uBjBuxLK0jg7HqWwedCgmBLqvgMFGihhXCoQ8w5m2vcnMs47C4KYxuQ=="; 25009 26170 }; 25010 26171 }; 25011 26172 "sorcery-0.10.0" = { ··· 25557 26718 sha1 = "161c7dac177659fd9811f43771fa99381478628c"; 25558 26719 }; 25559 26720 }; 26721 + "stealthy-require-1.1.1" = { 26722 + name = "stealthy-require"; 26723 + packageName = "stealthy-require"; 26724 + version = "1.1.1"; 26725 + src = fetchurl { 26726 + url = "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz"; 26727 + sha1 = "35b09875b4ff49f26a777e509b3090a3226bf24b"; 26728 + }; 26729 + }; 25560 26730 "steno-0.4.4" = { 25561 26731 name = "steno"; 25562 26732 packageName = "steno"; ··· 25629 26799 sha1 = "ded266556319c8b0e222812b9cf3b26fa7d947de"; 25630 26800 }; 25631 26801 }; 25632 - "stream-each-1.2.2" = { 26802 + "stream-each-1.2.3" = { 25633 26803 name = "stream-each"; 25634 26804 packageName = "stream-each"; 25635 - version = "1.2.2"; 26805 + version = "1.2.3"; 25636 26806 src = fetchurl { 25637 - url = "https://registry.npmjs.org/stream-each/-/stream-each-1.2.2.tgz"; 25638 - sha512 = "mc1dbFhGBxvTM3bIWmAAINbqiuAk9TATcfIQC8P+/+HJefgaiTlMn2dHvkX8qlI12KeYKSQ1Ua9RrIqrn1VPoA=="; 26807 + url = "https://registry.npmjs.org/stream-each/-/stream-each-1.2.3.tgz"; 26808 + sha512 = "vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw=="; 25639 26809 }; 25640 26810 }; 25641 26811 "stream-http-2.8.3" = { ··· 25917 27087 sha512 = "WoZ+B2ypng1dp4iFLF2kmZlwwlE19gmjgKuhL1FJfDgCREWb3ye3SDVHSzLH6bxfnvYmkCxbzkmWcQZHA4P//Q=="; 25918 27088 }; 25919 27089 }; 25920 - "string2compact-1.2.5" = { 27090 + "string2compact-1.3.0" = { 25921 27091 name = "string2compact"; 25922 27092 packageName = "string2compact"; 25923 - version = "1.2.5"; 27093 + version = "1.3.0"; 25924 27094 src = fetchurl { 25925 - url = "https://registry.npmjs.org/string2compact/-/string2compact-1.2.5.tgz"; 25926 - sha512 = "WujFln3AWQhpd/0UXjR8Ctcy/lCCb1jmED8h1Loa6938stww6LSSuP7FWqTMFlb4dxn/6l54jrAqlJhIAUlBWw=="; 27095 + url = "https://registry.npmjs.org/string2compact/-/string2compact-1.3.0.tgz"; 27096 + sha512 = "004ulKKANDuQilQsNxy2lisrpMG0qUJxBU+2YCEF7KziRyNR0Nredm2qk0f1V82nva59H3y9GWeHXE63HzGRFw=="; 25927 27097 }; 25928 27098 }; 25929 27099 "string_decoder-0.10.31" = { ··· 25953 27123 sha512 = "n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg=="; 25954 27124 }; 25955 27125 }; 25956 - "stringify-entities-1.3.2" = { 25957 - name = "stringify-entities"; 25958 - packageName = "stringify-entities"; 25959 - version = "1.3.2"; 25960 - src = fetchurl { 25961 - url = "https://registry.npmjs.org/stringify-entities/-/stringify-entities-1.3.2.tgz"; 25962 - sha512 = "nrBAQClJAPN2p+uGCVJRPIPakKeKWZ9GtBCmormE7pWOSlHat7+x5A8gx85M7HM5Dt0BP3pP5RhVW77WdbJJ3A=="; 25963 - }; 25964 - }; 25965 27126 "stringstream-0.0.6" = { 25966 27127 name = "stringstream"; 25967 27128 packageName = "stringstream"; ··· 26169 27330 sha1 = "f7fb93758a69a571140181277eea0c2eb1301fa3"; 26170 27331 }; 26171 27332 }; 26172 - "structured-source-3.0.2" = { 26173 - name = "structured-source"; 26174 - packageName = "structured-source"; 26175 - version = "3.0.2"; 26176 - src = fetchurl { 26177 - url = "https://registry.npmjs.org/structured-source/-/structured-source-3.0.2.tgz"; 26178 - sha1 = "dd802425e0f53dc4a6e7aca3752901a1ccda7af5"; 26179 - }; 26180 - }; 26181 27333 "subarg-1.0.0" = { 26182 27334 name = "subarg"; 26183 27335 packageName = "subarg"; ··· 26221 27373 src = fetchurl { 26222 27374 url = "https://registry.npmjs.org/superagent/-/superagent-3.8.3.tgz"; 26223 27375 sha512 = "GLQtLMCoEIK4eDv6OGtkOoSMt3D+oq0y3dsxMuYuDvaNUvuT8eFBuLmfR0iYYzHC1e8hpzC6ZsxbuP6DIalMFA=="; 27376 + }; 27377 + }; 27378 + "superagent-proxy-1.0.3" = { 27379 + name = "superagent-proxy"; 27380 + packageName = "superagent-proxy"; 27381 + version = "1.0.3"; 27382 + src = fetchurl { 27383 + url = "https://registry.npmjs.org/superagent-proxy/-/superagent-proxy-1.0.3.tgz"; 27384 + sha512 = "79Ujg1lRL2ICfuHUdX+H2MjIw73kB7bXsIkxLwHURz3j0XUmEEEoJ+u/wq+mKwna21Uejsm2cGR3OESA00TIjA=="; 26224 27385 }; 26225 27386 }; 26226 27387 "supports-color-0.2.0" = { ··· 26286 27447 sha512 = "zjaXglF5nnWpsq470jSv6P9DwPvgLkuapYmfDm3JWOm0vkNTVF2tI4UrN2r6jH1qM/uc/WtxYY1hYoA2dOKj5w=="; 26287 27448 }; 26288 27449 }; 27450 + "swap-case-1.1.2" = { 27451 + name = "swap-case"; 27452 + packageName = "swap-case"; 27453 + version = "1.1.2"; 27454 + src = fetchurl { 27455 + url = "https://registry.npmjs.org/swap-case/-/swap-case-1.1.2.tgz"; 27456 + sha1 = "c39203a4587385fad3c850a0bd1bcafa081974e3"; 27457 + }; 27458 + }; 26289 27459 "symbol-observable-1.0.1" = { 26290 27460 name = "symbol-observable"; 26291 27461 packageName = "symbol-observable"; ··· 26304 27474 sha1 = "ae27db38f660a7ae2e1c3b7d1bc290819b8519e6"; 26305 27475 }; 26306 27476 }; 27477 + "sync-exec-0.6.2" = { 27478 + name = "sync-exec"; 27479 + packageName = "sync-exec"; 27480 + version = "0.6.2"; 27481 + src = fetchurl { 27482 + url = "https://registry.npmjs.org/sync-exec/-/sync-exec-0.6.2.tgz"; 27483 + sha1 = "717d22cc53f0ce1def5594362f3a89a2ebb91105"; 27484 + }; 27485 + }; 26307 27486 "sync-request-3.0.0" = { 26308 27487 name = "sync-request"; 26309 27488 packageName = "sync-request"; ··· 26331 27510 sha1 = "2bbc542f0fda9861a755d3947fefd8b3f513855f"; 26332 27511 }; 26333 27512 }; 26334 - "table-4.0.2" = { 26335 - name = "table"; 26336 - packageName = "table"; 26337 - version = "4.0.2"; 26338 - src = fetchurl { 26339 - url = "https://registry.npmjs.org/table/-/table-4.0.2.tgz"; 26340 - sha512 = "UUkEAPdSGxtRpiV9ozJ5cMTtYiqz7Ni1OGqLXRCynrvzdtR1p+cfOWe2RJLwvUG8hNanaSRjecIqwOjqeatDsA=="; 26341 - }; 26342 - }; 26343 27513 "table-4.0.3" = { 26344 27514 name = "table"; 26345 27515 packageName = "table"; ··· 26440 27610 sha512 = "pQNFsg+Wb6VXsrIPUnuQwrHR4wD5ASBR0jRyiT4/AALFA2Nl+CjhkDX5fTmIwCuULRtyQR3Dae2BBnP2EFHscw=="; 26441 27611 }; 26442 27612 }; 26443 - "tar-4.4.4" = { 27613 + "tar-4.4.6" = { 26444 27614 name = "tar"; 26445 27615 packageName = "tar"; 26446 - version = "4.4.4"; 27616 + version = "4.4.6"; 26447 27617 src = fetchurl { 26448 - url = "https://registry.npmjs.org/tar/-/tar-4.4.4.tgz"; 26449 - sha512 = "mq9ixIYfNF9SK0IS/h2HKMu8Q2iaCuhDDsZhdEag/FHv8fOaYld4vN7ouMgcSSt5WKZzPs8atclTcJm36OTh4w=="; 27618 + url = "https://registry.npmjs.org/tar/-/tar-4.4.6.tgz"; 27619 + sha512 = "tMkTnh9EdzxyfW+6GK6fCahagXsnYk6kE6S9Gr9pjVdys769+laCTbodXDhPAjzVtEBazRgP0gYqOjnk9dQzLg=="; 26450 27620 }; 26451 27621 }; 26452 27622 "tar-fs-1.16.3" = { ··· 26512 27682 sha1 = "8cff630fb7e9da05f047c74ce4ce4d685457d492"; 26513 27683 }; 26514 27684 }; 26515 - "tempfile-1.1.1" = { 26516 - name = "tempfile"; 26517 - packageName = "tempfile"; 26518 - version = "1.1.1"; 26519 - src = fetchurl { 26520 - url = "https://registry.npmjs.org/tempfile/-/tempfile-1.1.1.tgz"; 26521 - sha1 = "5bcc4eaecc4ab2c707d8bc11d99ccc9a2cb287f2"; 26522 - }; 26523 - }; 26524 27685 "tempfile-2.0.0" = { 26525 27686 name = "tempfile"; 26526 27687 packageName = "tempfile"; ··· 26818 27979 sha1 = "4902ce040bd13d845c8f59b27e9d59bad6f39929"; 26819 27980 }; 26820 27981 }; 26821 - "tiny-lr-1.1.1" = { 26822 - name = "tiny-lr"; 26823 - packageName = "tiny-lr"; 26824 - version = "1.1.1"; 26825 - src = fetchurl { 26826 - url = "https://registry.npmjs.org/tiny-lr/-/tiny-lr-1.1.1.tgz"; 26827 - sha512 = "44yhA3tsaRoMOjQQ+5v5mVdqef+kH6Qze9jTpqtVufgYjYt08zyZAwNwwVBj3i1rJMnR52IxOW0LK0vBzgAkuA=="; 26828 - }; 26829 - }; 26830 27982 "tinycolor-0.0.1" = { 26831 27983 name = "tinycolor"; 26832 27984 packageName = "tinycolor"; ··· 26834 27986 src = fetchurl { 26835 27987 url = "https://registry.npmjs.org/tinycolor/-/tinycolor-0.0.1.tgz"; 26836 27988 sha1 = "320b5a52d83abb5978d81a3e887d4aefb15a6164"; 27989 + }; 27990 + }; 27991 + "title-case-2.1.1" = { 27992 + name = "title-case"; 27993 + packageName = "title-case"; 27994 + version = "2.1.1"; 27995 + src = fetchurl { 27996 + url = "https://registry.npmjs.org/title-case/-/title-case-2.1.1.tgz"; 27997 + sha1 = "3e127216da58d2bc5becf137ab91dae3a7cd8faa"; 26837 27998 }; 26838 27999 }; 26839 28000 "titleize-1.0.1" = { ··· 26935 28096 sha1 = "b83571fa4d8c25b82e231b06e3a3055de4ca1a47"; 26936 28097 }; 26937 28098 }; 28099 + "to-fast-properties-2.0.0" = { 28100 + name = "to-fast-properties"; 28101 + packageName = "to-fast-properties"; 28102 + version = "2.0.0"; 28103 + src = fetchurl { 28104 + url = "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz"; 28105 + sha1 = "dc5e698cbd079265bc73e0377681a4e4e83f616e"; 28106 + }; 28107 + }; 26938 28108 "to-object-path-0.3.0" = { 26939 28109 name = "to-object-path"; 26940 28110 packageName = "to-object-path"; ··· 26978 28148 src = fetchurl { 26979 28149 url = "https://registry.npmjs.org/to-utf8/-/to-utf8-0.0.1.tgz"; 26980 28150 sha1 = "d17aea72ff2fba39b9e43601be7b3ff72e089852"; 28151 + }; 28152 + }; 28153 + "toidentifier-1.0.0" = { 28154 + name = "toidentifier"; 28155 + packageName = "toidentifier"; 28156 + version = "1.0.0"; 28157 + src = fetchurl { 28158 + url = "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz"; 28159 + sha512 = "yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw=="; 26981 28160 }; 26982 28161 }; 26983 28162 "toiletdb-1.4.1" = { ··· 27016 28195 sha1 = "2d17d82cf669ada7f9dfe75db4b31f7034b71e29"; 27017 28196 }; 27018 28197 }; 27019 - "torrent-discovery-8.4.1" = { 28198 + "torrent-discovery-9.0.2" = { 27020 28199 name = "torrent-discovery"; 27021 28200 packageName = "torrent-discovery"; 27022 - version = "8.4.1"; 28201 + version = "9.0.2"; 27023 28202 src = fetchurl { 27024 - url = "https://registry.npmjs.org/torrent-discovery/-/torrent-discovery-8.4.1.tgz"; 27025 - sha512 = "PHy/H+S2pxBMK8ZdiZxp16mIPfs50rdzYjOWJLJg974BCE/VbdxHirQv117kVl9STKKXKZWo5NADGAYfmIXH0w=="; 28203 + url = "https://registry.npmjs.org/torrent-discovery/-/torrent-discovery-9.0.2.tgz"; 28204 + sha512 = "UpkOyi/QUXRAwts8vSsFu/jRQ1mwGkaqv2OxLTJGr4DJKCiXpLHZ1+A4rxabcOWinM9RiqmS5mAjDuFfPHiJvw=="; 27026 28205 }; 27027 28206 }; 27028 28207 "torrent-piece-1.1.2" = { ··· 27032 28211 src = fetchurl { 27033 28212 url = "https://registry.npmjs.org/torrent-piece/-/torrent-piece-1.1.2.tgz"; 27034 28213 sha512 = "ElXPyXKKG73o+uziHJ8qlYE9EuyDVxnK2zWL+pW/2bma7RsLpSwFFIJAb8Qui7/tel2hsHQW1z3zBnfQNREpWA=="; 28214 + }; 28215 + }; 28216 + "torrent-piece-2.0.0" = { 28217 + name = "torrent-piece"; 28218 + packageName = "torrent-piece"; 28219 + version = "2.0.0"; 28220 + src = fetchurl { 28221 + url = "https://registry.npmjs.org/torrent-piece/-/torrent-piece-2.0.0.tgz"; 28222 + sha512 = "H/Z/yCuvZJj1vl1IQHI8dvF2QrUuXRJoptT5DW5967/dsLpXlCg+uyhFR5lfNj5mNaYePUbKtnL+qKWZGXv4Nw=="; 27035 28223 }; 27036 28224 }; 27037 28225 "torrent-stream-1.0.4" = { ··· 27169 28357 sha1 = "d04b2280e4c792a5815429ef7b8b60c64c9ccc34"; 27170 28358 }; 27171 28359 }; 27172 - "traverse-0.6.6" = { 27173 - name = "traverse"; 27174 - packageName = "traverse"; 27175 - version = "0.6.6"; 28360 + "traverse-chain-0.1.0" = { 28361 + name = "traverse-chain"; 28362 + packageName = "traverse-chain"; 28363 + version = "0.1.0"; 27176 28364 src = fetchurl { 27177 - url = "https://registry.npmjs.org/traverse/-/traverse-0.6.6.tgz"; 27178 - sha1 = "cbdf560fd7b9af632502fed40f918c157ea97137"; 28365 + url = "https://registry.npmjs.org/traverse-chain/-/traverse-chain-0.1.0.tgz"; 28366 + sha1 = "61dbc2d53b69ff6091a12a168fd7d433107e40f1"; 27179 28367 }; 27180 28368 }; 27181 28369 "tree-kill-1.2.0" = { ··· 27241 28429 sha1 = "cb2e1203067e0c8de1f614094b9fe45704ea6003"; 27242 28430 }; 27243 28431 }; 27244 - "trim-trailing-lines-1.1.1" = { 27245 - name = "trim-trailing-lines"; 27246 - packageName = "trim-trailing-lines"; 27247 - version = "1.1.1"; 27248 - src = fetchurl { 27249 - url = "https://registry.npmjs.org/trim-trailing-lines/-/trim-trailing-lines-1.1.1.tgz"; 27250 - sha512 = "bWLv9BbWbbd7mlqqs2oQYnLD/U/ZqeJeJwbO0FG2zA1aTq+HTvxfHNKFa/HGCVyJpDiioUYaBhfiT6rgk+l4mg=="; 27251 - }; 27252 - }; 27253 - "trough-1.0.2" = { 27254 - name = "trough"; 27255 - packageName = "trough"; 27256 - version = "1.0.2"; 27257 - src = fetchurl { 27258 - url = "https://registry.npmjs.org/trough/-/trough-1.0.2.tgz"; 27259 - sha512 = "FHkoUZvG6Egrv9XZAyYGKEyb1JMsFphgPjoczkZC2y6W93U1jswcVURB8MUvtsahEPEVACyxD47JAL63vF4JsQ=="; 27260 - }; 27261 - }; 27262 28432 "truncate-2.0.1" = { 27263 28433 name = "truncate"; 27264 28434 packageName = "truncate"; ··· 27284 28454 src = fetchurl { 27285 28455 url = "https://registry.npmjs.org/tsscmp/-/tsscmp-1.0.5.tgz"; 27286 28456 sha1 = "7dc4a33af71581ab4337da91d85ca5427ebd9a97"; 28457 + }; 28458 + }; 28459 + "tsscmp-1.0.6" = { 28460 + name = "tsscmp"; 28461 + packageName = "tsscmp"; 28462 + version = "1.0.6"; 28463 + src = fetchurl { 28464 + url = "https://registry.npmjs.org/tsscmp/-/tsscmp-1.0.6.tgz"; 28465 + sha512 = "LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA=="; 27287 28466 }; 27288 28467 }; 27289 28468 "ttl-1.3.1" = { ··· 27583 28762 sha512 = "hobogryjDV36VrLK3Y69ou4REyrTApzUblVFmdQOYRe8cYaSmFJXMb4dR9McdvYDSbeNdzUgYr2YVukJaErJcA=="; 27584 28763 }; 27585 28764 }; 27586 - "uglify-js-3.4.4" = { 28765 + "uglify-js-3.4.6" = { 27587 28766 name = "uglify-js"; 27588 28767 packageName = "uglify-js"; 27589 - version = "3.4.4"; 28768 + version = "3.4.6"; 27590 28769 src = fetchurl { 27591 - url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.4.4.tgz"; 27592 - sha512 = "RiB1kNcC9RMyqwRrjXC+EjgLoXULoDnCaOnEDzUCHkBN0bHwmtF5rzDMiDWU29gu0kXCRRWwtcTAVFWRECmU2Q=="; 28770 + url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.4.6.tgz"; 28771 + sha512 = "O1D7L6WcOzS1qW2ehopEm4cWm5yA6bQBozlks8jO8ODxYCy4zv+bR/la4Lwp01tpkYGNonnpXvUpYtrvSu8Yzg=="; 27593 28772 }; 27594 28773 }; 27595 28774 "uglify-to-browserify-1.0.2" = { ··· 27673 28852 sha1 = "483126e11774df2f71b8b639dcd799c376162b82"; 27674 28853 }; 27675 28854 }; 27676 - "uint64be-1.0.1" = { 27677 - name = "uint64be"; 27678 - packageName = "uint64be"; 27679 - version = "1.0.1"; 27680 - src = fetchurl { 27681 - url = "https://registry.npmjs.org/uint64be/-/uint64be-1.0.1.tgz"; 27682 - sha1 = "1f7154202f2a1b8af353871dda651bf34ce93e95"; 27683 - }; 27684 - }; 27685 28855 "uint64be-2.0.2" = { 27686 28856 name = "uint64be"; 27687 28857 packageName = "uint64be"; ··· 27707 28877 src = fetchurl { 27708 28878 url = "https://registry.npmjs.org/ultron/-/ultron-1.1.1.tgz"; 27709 28879 sha512 = "UIEXBNeYmKptWH6z8ZnqTeS8fV74zG0/eRU9VGkpzz+LIJNs8W/zM/L+7ctCkRrgbNnnR0xxw4bKOr0cW0N0Og=="; 28880 + }; 28881 + }; 28882 + "umask-1.1.0" = { 28883 + name = "umask"; 28884 + packageName = "umask"; 28885 + version = "1.1.0"; 28886 + src = fetchurl { 28887 + url = "https://registry.npmjs.org/umask/-/umask-1.1.0.tgz"; 28888 + sha1 = "f29cebf01df517912bb58ff9c4e50fde8e33320d"; 27710 28889 }; 27711 28890 }; 27712 28891 "umd-3.0.3" = { ··· 27844 29023 sha1 = "8cdd8fbac4e2d2ea1e7e2e8097c42f442280f85b"; 27845 29024 }; 27846 29025 }; 27847 - "unherit-1.1.1" = { 27848 - name = "unherit"; 27849 - packageName = "unherit"; 27850 - version = "1.1.1"; 29026 + "unicode-5.2.0-0.7.5" = { 29027 + name = "unicode-5.2.0"; 29028 + packageName = "unicode-5.2.0"; 29029 + version = "0.7.5"; 27851 29030 src = fetchurl { 27852 - url = "https://registry.npmjs.org/unherit/-/unherit-1.1.1.tgz"; 27853 - sha512 = "+XZuV691Cn4zHsK0vkKYwBEwB74T3IZIcxrgn2E4rKwTfFyI1zCh7X7grwh9Re08fdPlarIdyWgI8aVB3F5A5g=="; 29031 + url = "https://registry.npmjs.org/unicode-5.2.0/-/unicode-5.2.0-0.7.5.tgz"; 29032 + sha512 = "KVGLW1Bri30x00yv4HNM8kBxoqFXr0Sbo55735nvrlsx4PYBZol3UtoWgO492fSwmsetzPEZzy73rbU8OGXJcA=="; 27854 29033 }; 27855 29034 }; 27856 29035 "unicode-emoji-modifier-base-1.0.0" = { ··· 27860 29039 src = fetchurl { 27861 29040 url = "https://registry.npmjs.org/unicode-emoji-modifier-base/-/unicode-emoji-modifier-base-1.0.0.tgz"; 27862 29041 sha1 = "dbbd5b54ba30f287e2a8d5a249da6c0cef369459"; 27863 - }; 27864 - }; 27865 - "unified-4.2.1" = { 27866 - name = "unified"; 27867 - packageName = "unified"; 27868 - version = "4.2.1"; 27869 - src = fetchurl { 27870 - url = "https://registry.npmjs.org/unified/-/unified-4.2.1.tgz"; 27871 - sha1 = "76ff43aa8da430f6e7e4a55c84ebac2ad2cfcd2e"; 27872 29042 }; 27873 29043 }; 27874 29044 "union-value-1.0.0" = { ··· 27934 29104 sha1 = "9e1057cca851abb93398f8b33ae187b99caec11a"; 27935 29105 }; 27936 29106 }; 27937 - "unist-util-is-2.1.2" = { 27938 - name = "unist-util-is"; 27939 - packageName = "unist-util-is"; 27940 - version = "2.1.2"; 27941 - src = fetchurl { 27942 - url = "https://registry.npmjs.org/unist-util-is/-/unist-util-is-2.1.2.tgz"; 27943 - sha512 = "YkXBK/H9raAmG7KXck+UUpnKiNmUdB+aBGrknfQ4EreE1banuzrKABx3jP6Z5Z3fMSPMQQmeXBlKpCbMwBkxVw=="; 27944 - }; 27945 - }; 27946 - "unist-util-remove-position-1.1.2" = { 27947 - name = "unist-util-remove-position"; 27948 - packageName = "unist-util-remove-position"; 27949 - version = "1.1.2"; 27950 - src = fetchurl { 27951 - url = "https://registry.npmjs.org/unist-util-remove-position/-/unist-util-remove-position-1.1.2.tgz"; 27952 - sha512 = "XxoNOBvq1WXRKXxgnSYbtCF76TJrRoe5++pD4cCBsssSiWSnPEktyFrFLE8LTk3JW5mt9hB0Sk5zn4x/JeWY7Q=="; 27953 - }; 27954 - }; 27955 - "unist-util-visit-1.3.1" = { 27956 - name = "unist-util-visit"; 27957 - packageName = "unist-util-visit"; 27958 - version = "1.3.1"; 27959 - src = fetchurl { 27960 - url = "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-1.3.1.tgz"; 27961 - sha512 = "0fdB9EQJU0tho5tK0VzOJzAQpPv2LyLZ030b10GxuzAWEfvd54mpY7BMjQ1L69k2YNvL+SvxRzH0yUIehOO8aA=="; 27962 - }; 27963 - }; 27964 29107 "universalify-0.1.2" = { 27965 29108 name = "universalify"; 27966 29109 packageName = "universalify"; ··· 28094 29237 src = fetchurl { 28095 29238 url = "https://registry.npmjs.org/unzip-response/-/unzip-response-2.0.1.tgz"; 28096 29239 sha1 = "d2f0f737d16b0615e72a6935ed04214572d56f97"; 28097 - }; 28098 - }; 28099 - "upath-1.0.5" = { 28100 - name = "upath"; 28101 - packageName = "upath"; 28102 - version = "1.0.5"; 28103 - src = fetchurl { 28104 - url = "https://registry.npmjs.org/upath/-/upath-1.0.5.tgz"; 28105 - sha512 = "qbKn90aDQ0YEwvXoLqj0oiuUYroLX2lVHZ+b+xwjozFasAOC4GneDq5+OaIG5Zj+jFmbz/uO+f7a9qxjktJQww=="; 28106 29240 }; 28107 29241 }; 28108 29242 "upath-1.1.0" = { ··· 28150 29284 sha512 = "gwMdhgJHGuj/+wHJJs9e6PcCszpxR1b236igrOkUofGhqJuG+amlIKwApH1IW1WWl7ovZxsX49lMBWLxSdm5Dw=="; 28151 29285 }; 28152 29286 }; 28153 - "update-section-0.3.3" = { 28154 - name = "update-section"; 28155 - packageName = "update-section"; 28156 - version = "0.3.3"; 28157 - src = fetchurl { 28158 - url = "https://registry.npmjs.org/update-section/-/update-section-0.3.3.tgz"; 28159 - sha1 = "458f17820d37820dc60e20b86d94391b00123158"; 28160 - }; 28161 - }; 28162 29287 "upnp-device-client-1.0.2" = { 28163 29288 name = "upnp-device-client"; 28164 29289 packageName = "upnp-device-client"; ··· 28184 29309 src = fetchurl { 28185 29310 url = "https://registry.npmjs.org/upper-case/-/upper-case-1.1.3.tgz"; 28186 29311 sha1 = "f6b4501c2ec4cdd26ba78be7222961de77621598"; 29312 + }; 29313 + }; 29314 + "upper-case-first-1.1.2" = { 29315 + name = "upper-case-first"; 29316 + packageName = "upper-case-first"; 29317 + version = "1.1.2"; 29318 + src = fetchurl { 29319 + url = "https://registry.npmjs.org/upper-case-first/-/upper-case-first-1.1.2.tgz"; 29320 + sha1 = "5d79bedcff14419518fd2edb0a0507c9b6859115"; 28187 29321 }; 28188 29322 }; 28189 29323 "uri-js-3.0.2" = { ··· 28240 29374 sha1 = "5af22f18c052a000a48d7b82c5e9c2e2feeda728"; 28241 29375 }; 28242 29376 }; 29377 + "url-join-4.0.0" = { 29378 + name = "url-join"; 29379 + packageName = "url-join"; 29380 + version = "4.0.0"; 29381 + src = fetchurl { 29382 + url = "https://registry.npmjs.org/url-join/-/url-join-4.0.0.tgz"; 29383 + sha1 = "4d3340e807d3773bda9991f8305acdcc2a665d2a"; 29384 + }; 29385 + }; 28243 29386 "url-parse-lax-1.0.0" = { 28244 29387 name = "url-parse-lax"; 28245 29388 packageName = "url-parse-lax"; ··· 28256 29399 src = fetchurl { 28257 29400 url = "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz"; 28258 29401 sha1 = "16b5cafc07dbe3676c1b1999177823d6503acb0c"; 29402 + }; 29403 + }; 29404 + "url-regex-3.2.0" = { 29405 + name = "url-regex"; 29406 + packageName = "url-regex"; 29407 + version = "3.2.0"; 29408 + src = fetchurl { 29409 + url = "https://registry.npmjs.org/url-regex/-/url-regex-3.2.0.tgz"; 29410 + sha1 = "dbad1e0c9e29e105dd0b1f09f6862f7fdb482724"; 28259 29411 }; 28260 29412 }; 28261 29413 "url-to-options-1.0.1" = { ··· 28319 29471 src = fetchurl { 28320 29472 url = "https://registry.npmjs.org/ut_pex/-/ut_pex-1.2.1.tgz"; 28321 29473 sha512 = "ZrxMCbffYtxQDqvREN9kBXK2CB9tPnd5PylHoqQX9ai+3HV9/S39FnA5JnhLOC82dxIQQg0nTN2wmhtAdGNtOA=="; 29474 + }; 29475 + }; 29476 + "utf-8-validate-5.0.1" = { 29477 + name = "utf-8-validate"; 29478 + packageName = "utf-8-validate"; 29479 + version = "5.0.1"; 29480 + src = fetchurl { 29481 + url = "https://registry.npmjs.org/utf-8-validate/-/utf-8-validate-5.0.1.tgz"; 29482 + sha512 = "Qef1AuiWWxQeZ1Oa4DTV3ArRafpZvsK+CLrlB8khLfsV+9mwhj58hNSGmel0ns5jYP+3yEwav6vxxW7Gz85bVw=="; 28322 29483 }; 28323 29484 }; 28324 29485 "utf7-1.0.2" = { ··· 28555 29716 sha1 = "5fa912d81eb7d0c74afc140de7317f0ca7df437e"; 28556 29717 }; 28557 29718 }; 29719 + "validator-10.5.0" = { 29720 + name = "validator"; 29721 + packageName = "validator"; 29722 + version = "10.5.0"; 29723 + src = fetchurl { 29724 + url = "https://registry.npmjs.org/validator/-/validator-10.5.0.tgz"; 29725 + sha512 = "6OOi+eV2mOxCFLq0f2cJDrdB6lrtLXEUxabhNRGjgOLT/l3SSll9J49Cl+LIloUqkWWTPraK/mucEQ3dc2jStQ=="; 29726 + }; 29727 + }; 28558 29728 "validator-5.2.0" = { 28559 29729 name = "validator"; 28560 29730 packageName = "validator"; ··· 28690 29860 sha1 = "7d13b27b1facc2e2da90405eb5ea6e5bdd252ea5"; 28691 29861 }; 28692 29862 }; 28693 - "vfile-1.4.0" = { 28694 - name = "vfile"; 28695 - packageName = "vfile"; 28696 - version = "1.4.0"; 28697 - src = fetchurl { 28698 - url = "https://registry.npmjs.org/vfile/-/vfile-1.4.0.tgz"; 28699 - sha1 = "c0fd6fa484f8debdb771f68c31ed75d88da97fe7"; 28700 - }; 28701 - }; 28702 - "vfile-location-2.0.3" = { 28703 - name = "vfile-location"; 28704 - packageName = "vfile-location"; 28705 - version = "2.0.3"; 28706 - src = fetchurl { 28707 - url = "https://registry.npmjs.org/vfile-location/-/vfile-location-2.0.3.tgz"; 28708 - sha512 = "zM5/l4lfw1CBoPx3Jimxoc5RNDAHHpk6AM6LM0pTIkm5SUSsx8ZekZ0PVdf0WEZ7kjlhSt7ZlqbRL6Cd6dBs6A=="; 28709 - }; 28710 - }; 28711 29863 "vhost-3.0.2" = { 28712 29864 name = "vhost"; 28713 29865 packageName = "vhost"; ··· 28717 29869 sha1 = "2fb1decd4c466aa88b0f9341af33dc1aff2478d5"; 28718 29870 }; 28719 29871 }; 28720 - "videostream-2.4.3" = { 29872 + "videostream-2.5.1" = { 28721 29873 name = "videostream"; 28722 29874 packageName = "videostream"; 28723 - version = "2.4.3"; 29875 + version = "2.5.1"; 28724 29876 src = fetchurl { 28725 - url = "https://registry.npmjs.org/videostream/-/videostream-2.4.3.tgz"; 28726 - sha512 = "8AkDc1SBg3kw8+hHImYKtSamjKfJxMHuCXIcXvCFOAWGU7IcW41hxx7K7bU/tC6zWEck/tgB1rXLxf6o5Pn79Q=="; 29877 + url = "https://registry.npmjs.org/videostream/-/videostream-2.5.1.tgz"; 29878 + sha512 = "S3f34WE6NB1d/YUAa/EYcTURTkGaxsUqcDmsGWV1jQpQQJxeagc79/XA7ygNjzBf3DoQQ1MKTD+SocPsWSniAg=="; 28727 29879 }; 28728 29880 }; 28729 29881 "vinyl-0.4.6" = { ··· 28897 30049 sha512 = "bxj9nRadNkXYfVG/fjA5a+KA5WaJCeP1F2Tnj3rYFS0pKALZQCPNqk3KO/LdiGFidjyICMG7xoHvYO9J9xosXg=="; 28898 30050 }; 28899 30051 }; 28900 - "vscode-languageserver-4.3.0" = { 30052 + "vscode-languageserver-4.4.0" = { 28901 30053 name = "vscode-languageserver"; 28902 30054 packageName = "vscode-languageserver"; 28903 - version = "4.3.0"; 30055 + version = "4.4.0"; 28904 30056 src = fetchurl { 28905 - url = "https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-4.3.0.tgz"; 28906 - sha512 = "4dTpnyTB6Q0HmMhxaG60rrpQthbTBlMtFX5cwJpPxcPzLZIFDWB3msR6TxGCzWpdYF11REIJihWByobpGkljdQ=="; 30057 + url = "https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-4.4.0.tgz"; 30058 + sha512 = "NO4JQg286YLSdU11Fko6cke19kwSob3O0bhf6xDxIJuDhUbFy0VEPRB5ITc3riVmp13+Ki344xtqJYmqfcmCrg=="; 28907 30059 }; 28908 30060 }; 28909 - "vscode-languageserver-protocol-3.6.0" = { 30061 + "vscode-languageserver-protocol-3.10.0" = { 28910 30062 name = "vscode-languageserver-protocol"; 28911 30063 packageName = "vscode-languageserver-protocol"; 28912 - version = "3.6.0"; 30064 + version = "3.10.0"; 28913 30065 src = fetchurl { 28914 - url = "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.6.0.tgz"; 28915 - sha512 = "PN5hVQQQxrtHSZR8UCstqaoI9f2H9JctFTtdIpONWjzQNurWrc48qSXXU/vTfnbSrNou8qrJgkZ4QEZsyozOMA=="; 30066 + url = "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.10.0.tgz"; 30067 + sha512 = "PNNmKM0IcQPRiY1oUIxfwseBvxS5Sa5aZUpTcq/qsXWclnl8FFNs8oCCoAtyLhBXnuJvybWUNafiA78y0unJDA=="; 28916 30068 }; 28917 30069 }; 28918 - "vscode-languageserver-protocol-3.9.0" = { 30070 + "vscode-languageserver-protocol-3.6.0" = { 28919 30071 name = "vscode-languageserver-protocol"; 28920 30072 packageName = "vscode-languageserver-protocol"; 28921 - version = "3.9.0"; 30073 + version = "3.6.0"; 28922 30074 src = fetchurl { 28923 - url = "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.9.0.tgz"; 28924 - sha512 = "i1sG5iU88Mocc7egTeh6dAow/yRWpPK5PLJaxsWsKiA+dspq1Yzr/R1bNLPc+6P/ab010lXhzdUHQY0CuIUyDw=="; 30075 + url = "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.6.0.tgz"; 30076 + sha512 = "PN5hVQQQxrtHSZR8UCstqaoI9f2H9JctFTtdIpONWjzQNurWrc48qSXXU/vTfnbSrNou8qrJgkZ4QEZsyozOMA=="; 28925 30077 }; 28926 30078 }; 28927 - "vscode-languageserver-types-3.9.0" = { 30079 + "vscode-languageserver-types-3.10.0" = { 28928 30080 name = "vscode-languageserver-types"; 28929 30081 packageName = "vscode-languageserver-types"; 28930 - version = "3.9.0"; 30082 + version = "3.10.0"; 28931 30083 src = fetchurl { 28932 - url = "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.9.0.tgz"; 28933 - sha512 = "Qzh3VsU3t0zhKtYl1revyax+4gGHl2ejNzYXeiZYQMF3i0vX4dtPohxGDFoZYfGFQI738aXYbSUQmhLeBckDlQ=="; 30084 + url = "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.10.0.tgz"; 30085 + sha512 = "vxmCsVZGwq8X40SuLP8Ix7V0rq5V/7iQUjRVe2Oxm+TbmjxtjK4dpHHXQCUawjA4fhPA9FwjSRbDhbvQmYCfMw=="; 28934 30086 }; 28935 30087 }; 28936 30088 "vscode-uri-1.0.3" = { ··· 29068 30220 sha512 = "lchLOk435iDWs0jNuL+hiU14i3ERSrMA0IKSiJh7z6X/i4XNsutBZrtqu2CPOZuA4G/zabiqVAos0vW+S7GEVw=="; 29069 30221 }; 29070 30222 }; 29071 - "webtorrent-0.100.0" = { 30223 + "webtorrent-0.101.2" = { 29072 30224 name = "webtorrent"; 29073 30225 packageName = "webtorrent"; 29074 - version = "0.100.0"; 30226 + version = "0.101.2"; 30227 + src = fetchurl { 30228 + url = "https://registry.npmjs.org/webtorrent/-/webtorrent-0.101.2.tgz"; 30229 + sha512 = "GEr6m98uiTNdPVvk4XQHd2cBYoqlpk07JHZAm/LoJOXJB5CGAu+/vIdwIb3DqciPoTKlNf0TOOFEjAkeRVLCQg=="; 30230 + }; 30231 + }; 30232 + "whatwg-fetch-2.0.3" = { 30233 + name = "whatwg-fetch"; 30234 + packageName = "whatwg-fetch"; 30235 + version = "2.0.3"; 29075 30236 src = fetchurl { 29076 - url = "https://registry.npmjs.org/webtorrent/-/webtorrent-0.100.0.tgz"; 29077 - sha512 = "b3NhfSC1luFj5lU0Q19V9e69tBnQ2KjDHEEOHz1YRDKTTemVveqjEDUHoL1ZDkRw0WpidbQtr2XZnHmG83vOCg=="; 30237 + url = "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-2.0.3.tgz"; 30238 + sha1 = "9c84ec2dcf68187ff00bc64e1274b442176e1c84"; 29078 30239 }; 29079 30240 }; 29080 30241 "whatwg-fetch-2.0.4" = { ··· 29086 30247 sha512 = "dcQ1GWpOD/eEQ97k66aiEVpNnapVj90/+R+SXTPYGHpYBBypfKJEQjLrvMZ7YXbKm21gXd4NcuxUTjiv1YtLng=="; 29087 30248 }; 29088 30249 }; 29089 - "whatwg-url-6.4.1" = { 30250 + "whatwg-url-6.5.0" = { 29090 30251 name = "whatwg-url"; 29091 30252 packageName = "whatwg-url"; 29092 - version = "6.4.1"; 30253 + version = "6.5.0"; 29093 30254 src = fetchurl { 29094 - url = "https://registry.npmjs.org/whatwg-url/-/whatwg-url-6.4.1.tgz"; 29095 - sha512 = "FwygsxsXx27x6XXuExA/ox3Ktwcbf+OAvrKmLulotDAiO1Q6ixchPFaHYsis2zZBZSJTR0+dR+JVtf7MlbqZjw=="; 30255 + url = "https://registry.npmjs.org/whatwg-url/-/whatwg-url-6.5.0.tgz"; 30256 + sha512 = "rhRZRqx/TLJQWUpQ6bmrt2UV4f0HCQ463yQuONJqC6fO2VoEb1pTYddbe59SkYq87aoM5A3bdhMZiUiVws+fzQ=="; 29096 30257 }; 29097 30258 }; 29098 30259 "whatwg-url-compat-0.6.5" = { ··· 29174 30335 src = fetchurl { 29175 30336 url = "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz"; 29176 30337 sha1 = "d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"; 29177 - }; 29178 - }; 29179 - "which-pm-runs-1.0.0" = { 29180 - name = "which-pm-runs"; 29181 - packageName = "which-pm-runs"; 29182 - version = "1.0.0"; 29183 - src = fetchurl { 29184 - url = "https://registry.npmjs.org/which-pm-runs/-/which-pm-runs-1.0.0.tgz"; 29185 - sha1 = "670b3afbc552e0b55df6b7780ca74615f23ad1cb"; 29186 30338 }; 29187 30339 }; 29188 30340 "wide-align-1.1.3" = { ··· 29536 30688 sha512 = "nnWLa/NwZSt4KQJu51MYlCcSQ5g7INpOrOMt4XV8j4dqTXdmlUmSHQ8/oLC069ckre0fRsgfvsKwbTdtKLCDkA=="; 29537 30689 }; 29538 30690 }; 29539 - "ws-4.1.0" = { 30691 + "ws-6.0.0" = { 29540 30692 name = "ws"; 29541 30693 packageName = "ws"; 29542 - version = "4.1.0"; 30694 + version = "6.0.0"; 29543 30695 src = fetchurl { 29544 - url = "https://registry.npmjs.org/ws/-/ws-4.1.0.tgz"; 29545 - sha512 = "ZGh/8kF9rrRNffkLFV4AzhvooEclrOH0xaugmqGsIfFgOE/pIz4fMc4Ef+5HSQqTEug2S9JZIWDR47duDSLfaA=="; 29546 - }; 29547 - }; 29548 - "ws-5.2.2" = { 29549 - name = "ws"; 29550 - packageName = "ws"; 29551 - version = "5.2.2"; 29552 - src = fetchurl { 29553 - url = "https://registry.npmjs.org/ws/-/ws-5.2.2.tgz"; 29554 - sha512 = "jaHFD6PFv6UgoIVda6qZllptQsMlDEJkTQcybzzXDYM1XO9Y8em691FGMPmM46WGyLU4z9KMgQN+qrux/nhlHA=="; 30696 + url = "https://registry.npmjs.org/ws/-/ws-6.0.0.tgz"; 30697 + sha512 = "c2UlYcAZp1VS8AORtpq6y4RJIkJ9dQz18W32SpR/qXGfLDZ2jU4y4wKvvZwqbi7U6gxFQTeE+urMbXU/tsDy4w=="; 29555 30698 }; 29556 30699 }; 29557 30700 "wtf-8-1.0.0" = { ··· 29915 31058 sha1 = "8452b4bb7e83c7c188d8041c1a837c773d6d8bb9"; 29916 31059 }; 29917 31060 }; 31061 + "yaml-ast-parser-0.0.40" = { 31062 + name = "yaml-ast-parser"; 31063 + packageName = "yaml-ast-parser"; 31064 + version = "0.0.40"; 31065 + src = fetchurl { 31066 + url = "https://registry.npmjs.org/yaml-ast-parser/-/yaml-ast-parser-0.0.40.tgz"; 31067 + sha1 = "08536d4e73d322b1c9ce207ab8dd70e04d20ae6e"; 31068 + }; 31069 + }; 29918 31070 "yaml-js-0.0.8" = { 29919 31071 name = "yaml-js"; 29920 31072 packageName = "yaml-js"; ··· 30095 31247 sha1 = "9528f442dab1b2284e58b4379bb194e22e0c4005"; 30096 31248 }; 30097 31249 }; 30098 - "yauzl-2.9.1" = { 31250 + "yauzl-2.9.2" = { 30099 31251 name = "yauzl"; 30100 31252 packageName = "yauzl"; 30101 - version = "2.9.1"; 31253 + version = "2.9.2"; 30102 31254 src = fetchurl { 30103 - url = "https://registry.npmjs.org/yauzl/-/yauzl-2.9.1.tgz"; 30104 - sha1 = "a81981ea70a57946133883f029c5821a89359a7f"; 31255 + url = "https://registry.npmjs.org/yauzl/-/yauzl-2.9.2.tgz"; 31256 + sha1 = "4fb1bc7ae1fc2f57037b54af6acc8fe1031c5b77"; 30105 31257 }; 30106 31258 }; 30107 31259 "yeast-0.1.2" = { ··· 30131 31283 sha512 = "/KbouQdKgnqxG6K3Tc8VBPAQLPbruQ7KkbinwR+ah507oOFobHnGs8kqj8oMfafY6rXInHdh7nC5YzicCR4Z0g=="; 30132 31284 }; 30133 31285 }; 30134 - "yeoman-environment-2.3.0" = { 31286 + "yeoman-environment-2.3.1" = { 30135 31287 name = "yeoman-environment"; 30136 31288 packageName = "yeoman-environment"; 30137 - version = "2.3.0"; 31289 + version = "2.3.1"; 30138 31290 src = fetchurl { 30139 - url = "https://registry.npmjs.org/yeoman-environment/-/yeoman-environment-2.3.0.tgz"; 30140 - sha512 = "PHSAkVOqYdcR+C+Uht1SGC4eVD/9OhygYFkYaI66xF8vKIeS1RNYay+umj2ZrQeJ50tF5Q/RSO6qGDz9y3Ifug=="; 31291 + url = "https://registry.npmjs.org/yeoman-environment/-/yeoman-environment-2.3.1.tgz"; 31292 + sha512 = "7BFbWNnJqG8f0TFR/awcccHj7Vl9CeG66Yuu81DiVIamqO7Uo/EOrdryjNICdRJNFdaQTliN4HUkM1zQBzszCQ=="; 30141 31293 }; 30142 31294 }; 30143 31295 "yosay-2.0.2" = { ··· 30147 31299 src = fetchurl { 30148 31300 url = "https://registry.npmjs.org/yosay/-/yosay-2.0.2.tgz"; 30149 31301 sha512 = "avX6nz2esp7IMXGag4gu6OyQBsMh/SEn+ZybGu3yKPlOTE6z9qJrzG/0X5vCq/e0rPFy0CUYCze0G5hL310ibA=="; 31302 + }; 31303 + }; 31304 + "z-schema-3.22.0" = { 31305 + name = "z-schema"; 31306 + packageName = "z-schema"; 31307 + version = "3.22.0"; 31308 + src = fetchurl { 31309 + url = "https://registry.npmjs.org/z-schema/-/z-schema-3.22.0.tgz"; 31310 + sha512 = "Oq82unxX2PTcJ031gFGcksDHE5PNBs5CbcQ1tbre0Sl4Mu5habZTVmEAkuZS4cK//VgIdNg9UG9PMgMlN6KmiA=="; 30150 31311 }; 30151 31312 }; 30152 31313 "zen-observable-0.5.2" = { ··· 30218 31379 alloy = nodeEnv.buildNodePackage { 30219 31380 name = "alloy"; 30220 31381 packageName = "alloy"; 30221 - version = "1.13.0"; 31382 + version = "1.13.1"; 30222 31383 src = fetchurl { 30223 - url = "https://registry.npmjs.org/alloy/-/alloy-1.13.0.tgz"; 30224 - sha512 = "sMapc9fb5Jf2hOQYa0Rqs/IvEo979iK4oqfNYq55E6sPN6CiBhFwyAS655khFIAhajylFhsCa0jirGGMMYagwA=="; 31384 + url = "https://registry.npmjs.org/alloy/-/alloy-1.13.1.tgz"; 31385 + sha512 = "6Tnj4ylXV+pHnmHHFhDikMpe18ZmosXYQoDeFK8lpu79HMH7k5QFAmM4mRs5hQB3njCS3l3I2O1zpsT7rMQNWA=="; 30225 31386 }; 30226 31387 dependencies = [ 30227 31388 sources."JSV-4.0.2" ··· 30252 31413 sources."brace-expansion-1.1.11" 30253 31414 sources."chalk-1.1.3" 30254 31415 sources."chmodr-1.0.2" 30255 - sources."colors-1.3.0" 31416 + sources."colors-1.3.1" 30256 31417 sources."commander-2.16.0" 30257 31418 sources."concat-map-0.0.1" 30258 31419 sources."convert-source-map-1.5.1" ··· 30359 31520 dependencies = [ 30360 31521 sources."abbrev-1.1.1" 30361 31522 sources."ajv-5.5.2" 30362 - sources."asn1-0.2.3" 31523 + sources."asn1-0.2.4" 30363 31524 sources."assert-plus-1.0.0" 30364 31525 sources."asynckit-0.4.0" 30365 31526 sources."aws-sign2-0.7.0" ··· 30381 31542 sources."dashdash-1.14.1" 30382 31543 sources."decompress-zip-0.3.0" 30383 31544 sources."delayed-stream-1.0.0" 30384 - sources."ecc-jsbn-0.1.1" 30385 - sources."extend-3.0.1" 31545 + sources."ecc-jsbn-0.1.2" 31546 + sources."extend-3.0.2" 30386 31547 sources."extsprintf-1.3.0" 30387 31548 sources."fast-deep-equal-1.1.0" 30388 31549 sources."fast-json-stable-stringify-2.0.0" ··· 30408 31569 sources."jsonfile-2.4.0" 30409 31570 sources."jsprim-1.4.1" 30410 31571 sources."klaw-1.3.1" 30411 - sources."mime-db-1.33.0" 30412 - sources."mime-types-2.1.18" 31572 + sources."mime-db-1.35.0" 31573 + sources."mime-types-2.1.19" 30413 31574 sources."minimatch-3.0.4" 30414 31575 sources."minimist-0.0.8" 30415 31576 sources."mkdirp-0.5.1" ··· 30467 31628 sha512 = "9OBihy+L53g9ALssKTY/vTWEiz8mGEJ1asWiCdfPdQ1Uf++tewiNrN7Fq2Eb6ZYtvK0BYvPZlh3bHguKmKO3yA=="; 30468 31629 }; 30469 31630 dependencies = [ 30470 - sources."@types/node-8.10.21" 31631 + sources."@types/node-8.10.23" 30471 31632 sources."JSV-4.0.2" 30472 31633 sources."adal-node-0.1.28" 30473 31634 sources."ajv-5.5.2" ··· 30476 31637 sources."ansi-styles-2.2.1" 30477 31638 sources."applicationinsights-0.16.0" 30478 31639 sources."asap-2.0.6" 30479 - sources."asn1-0.2.3" 31640 + sources."asn1-0.2.4" 30480 31641 sources."assert-plus-0.2.0" 30481 31642 sources."async-1.4.2" 30482 31643 sources."asynckit-0.4.0" ··· 30593 31754 sources."request-2.74.0" 30594 31755 ]; 30595 31756 }) 30596 - (sources."azure-storage-2.10.0" // { 31757 + (sources."azure-storage-2.10.1" // { 30597 31758 dependencies = [ 30598 31759 sources."extend-1.2.1" 30599 31760 sources."readable-stream-2.0.6" ··· 30613 31774 sources."brace-expansion-1.1.11" 30614 31775 sources."browserify-mime-1.2.9" 30615 31776 sources."buffer-equal-constant-time-1.0.1" 30616 - sources."buffer-from-1.1.0" 31777 + sources."buffer-from-1.1.1" 30617 31778 sources."caller-id-0.1.0" 30618 31779 sources."caseless-0.11.0" 30619 31780 sources."chalk-1.1.3" ··· 30646 31807 sources."delayed-stream-1.0.0" 30647 31808 sources."duplexer-0.1.1" 30648 31809 sources."easy-table-1.1.0" 30649 - sources."ecc-jsbn-0.1.1" 31810 + sources."ecc-jsbn-0.1.2" 30650 31811 sources."ecdsa-sig-formatter-1.0.10" 30651 31812 sources."envconf-0.0.4" 30652 31813 sources."escape-string-regexp-1.0.5" 30653 31814 sources."event-stream-3.1.5" 30654 - sources."extend-3.0.1" 31815 + sources."extend-3.0.2" 30655 31816 sources."extsprintf-1.3.0" 30656 31817 sources."eyes-0.1.8" 30657 31818 sources."fast-deep-equal-1.1.0" ··· 30730 31891 sources."lodash-4.17.10" 30731 31892 sources."map-stream-0.1.0" 30732 31893 sources."md5.js-1.3.4" 30733 - sources."mime-db-1.33.0" 30734 - sources."mime-types-2.1.18" 31894 + sources."mime-db-1.35.0" 31895 + sources."mime-types-2.1.19" 30735 31896 sources."minimatch-3.0.4" 30736 31897 sources."minimist-0.0.8" 30737 31898 sources."mkdirp-0.5.1" ··· 31069 32230 sources."browserify-rsa-4.0.1" 31070 32231 sources."browserify-sign-4.0.4" 31071 32232 sources."browserify-zlib-0.2.0" 31072 - sources."buffer-5.1.0" 31073 - sources."buffer-from-1.1.0" 32233 + sources."buffer-5.2.0" 32234 + sources."buffer-from-1.1.1" 31074 32235 sources."buffer-xor-1.0.3" 31075 32236 sources."builtin-status-codes-3.0.0" 31076 32237 sources."cached-path-relative-1.0.1" ··· 31211 32372 sha512 = "VybZ8QYuJyJHt88TIi12nxsIO/89vmcM1Trna0bTq5O2uzz5SDBE2piU+x87B85V4woosyw9T45f39CZzYjxAw=="; 31212 32373 }; 31213 32374 dependencies = [ 31214 - sources."addr-to-ip-port-1.4.3" 32375 + sources."addr-to-ip-port-1.5.1" 31215 32376 sources."airplay-js-0.2.16" 31216 32377 sources."ansi-regex-1.1.1" 31217 32378 sources."ansi-styles-2.2.1" ··· 31222 32383 sources."array-shuffle-1.0.1" 31223 32384 sources."ascli-0.3.0" 31224 32385 sources."async-0.2.10" 31225 - sources."aws-sign-0.2.0" 32386 + sources."aws-sign-0.2.1" 31226 32387 sources."balanced-match-1.0.0" 31227 32388 sources."base64-js-1.3.0" 31228 32389 sources."bencode-2.0.0" ··· 31247 32408 sources."buffer-equal-0.0.1" 31248 32409 sources."buffer-equals-1.0.4" 31249 32410 sources."buffer-fill-1.0.0" 31250 - sources."buffer-from-1.1.0" 32411 + sources."buffer-from-1.1.1" 31251 32412 sources."bufferview-1.0.1" 31252 32413 sources."builtin-modules-1.1.1" 31253 32414 sources."bytebuffer-3.5.5" ··· 31336 32497 sources."internal-ip-1.2.0" 31337 32498 sources."ip-1.1.5" 31338 32499 sources."ip-set-1.0.1" 31339 - sources."ipaddr.js-1.8.0" 32500 + sources."ipaddr.js-1.8.1" 31340 32501 sources."is-arrayish-0.2.1" 31341 32502 sources."is-builtin-module-1.0.0" 31342 32503 sources."is-finite-1.0.2" ··· 31356 32517 sources."long-2.4.0" 31357 32518 sources."loud-rejection-1.6.0" 31358 32519 sources."lru-2.0.1" 31359 - sources."magnet-uri-5.1.8" 32520 + sources."magnet-uri-5.2.3" 31360 32521 sources."map-obj-1.0.1" 31361 32522 (sources."mdns-js-1.0.1" // { 31362 32523 dependencies = [ ··· 31516 32677 sources."speedometer-0.1.4" 31517 32678 sources."srt2vtt-1.3.1" 31518 32679 sources."stream-transcoder-0.0.5" 31519 - sources."string2compact-1.2.5" 32680 + sources."string2compact-1.3.0" 31520 32681 sources."string_decoder-0.10.31" 31521 32682 sources."strip-ansi-2.0.1" 31522 32683 sources."strip-bom-2.0.0" ··· 31577 32738 clean-css = nodeEnv.buildNodePackage { 31578 32739 name = "clean-css"; 31579 32740 packageName = "clean-css"; 31580 - version = "4.1.11"; 32741 + version = "4.2.0"; 31581 32742 src = fetchurl { 31582 - url = "https://registry.npmjs.org/clean-css/-/clean-css-4.1.11.tgz"; 31583 - sha1 = "2ecdf145aba38f54740f26cefd0ff3e03e125d6a"; 32743 + url = "https://registry.npmjs.org/clean-css/-/clean-css-4.2.0.tgz"; 32744 + sha1 = "0a9d62040cddc7904c5edaee9bdeca642d9b9c1c"; 31584 32745 }; 31585 32746 dependencies = [ 31586 - sources."source-map-0.5.7" 32747 + sources."source-map-0.6.1" 31587 32748 ]; 31588 32749 buildInputs = globalBuildInputs; 31589 32750 meta = { ··· 31630 32791 sources."code-point-at-1.1.0" 31631 32792 sources."color-convert-1.9.2" 31632 32793 sources."color-name-1.1.1" 31633 - sources."colors-1.3.0" 32794 + sources."colors-1.3.1" 31634 32795 sources."commander-2.16.0" 31635 32796 sources."debug-3.1.0" 31636 32797 sources."escape-string-regexp-1.0.5" 31637 - sources."follow-redirects-1.5.1" 32798 + sources."follow-redirects-1.5.2" 31638 32799 sources."has-flag-3.0.0" 31639 32800 sources."humanize-plus-1.8.2" 31640 32801 sources."is-buffer-1.1.6" ··· 31719 32880 sources."array-flatten-1.1.1" 31720 32881 sources."array-map-0.0.0" 31721 32882 sources."array-reduce-0.0.0" 31722 - sources."asn1-0.2.3" 32883 + sources."asn1-0.2.4" 31723 32884 sources."asn1.js-4.10.1" 31724 32885 (sources."assert-1.4.1" // { 31725 32886 dependencies = [ ··· 31735 32896 sources."balanced-match-1.0.0" 31736 32897 sources."base64-js-1.2.0" 31737 32898 sources."bcrypt-pbkdf-1.0.2" 31738 - sources."big-integer-1.6.32" 32899 + sources."big-integer-1.6.34" 31739 32900 sources."block-stream-0.0.9" 31740 32901 sources."bn.js-4.11.8" 31741 32902 sources."body-parser-1.18.2" ··· 31762 32923 sources."browserify-sign-4.0.4" 31763 32924 sources."browserify-transform-tools-1.7.0" 31764 32925 sources."browserify-zlib-0.1.4" 31765 - sources."buffer-5.1.0" 31766 - sources."buffer-from-1.1.0" 32926 + sources."buffer-5.2.0" 32927 + sources."buffer-from-1.1.1" 31767 32928 sources."buffer-xor-1.0.3" 31768 32929 sources."builtin-modules-1.1.1" 31769 32930 sources."builtin-status-codes-3.0.0" ··· 31779 32940 sources."combine-source-map-0.8.0" 31780 32941 sources."combined-stream-1.0.6" 31781 32942 sources."commander-2.16.0" 31782 - (sources."compressible-2.0.14" // { 31783 - dependencies = [ 31784 - sources."mime-db-1.35.0" 31785 - ]; 31786 - }) 31787 - (sources."compression-1.7.2" // { 31788 - dependencies = [ 31789 - sources."safe-buffer-5.1.1" 31790 - ]; 31791 - }) 32943 + sources."compressible-2.0.14" 32944 + sources."compression-1.7.3" 31792 32945 sources."concat-map-0.0.1" 31793 32946 (sources."concat-stream-1.5.2" // { 31794 32947 dependencies = [ ··· 31870 33023 sources."dot-prop-3.0.0" 31871 33024 sources."duplexer2-0.1.4" 31872 33025 sources."duplexify-3.6.0" 31873 - sources."ecc-jsbn-0.1.1" 33026 + sources."ecc-jsbn-0.1.2" 31874 33027 sources."editor-1.0.0" 31875 33028 sources."ee-first-1.1.1" 31876 33029 sources."elementtree-0.1.6" ··· 31888 33041 sources."safe-buffer-5.1.1" 31889 33042 ]; 31890 33043 }) 31891 - sources."extend-3.0.1" 33044 + sources."extend-3.0.2" 31892 33045 sources."extsprintf-1.3.0" 31893 33046 sources."falafel-2.1.0" 31894 33047 sources."figures-1.7.0" ··· 31960 33113 ]; 31961 33114 }) 31962 33115 sources."interpret-1.1.0" 31963 - sources."ipaddr.js-1.6.0" 33116 + sources."ipaddr.js-1.8.0" 31964 33117 sources."is-buffer-1.1.6" 31965 33118 sources."is-builtin-module-1.0.0" 31966 33119 sources."is-finite-1.0.2" ··· 32007 33160 sources."methods-1.1.2" 32008 33161 sources."miller-rabin-4.0.1" 32009 33162 sources."mime-1.4.1" 32010 - sources."mime-db-1.33.0" 32011 - sources."mime-types-2.1.18" 33163 + sources."mime-db-1.35.0" 33164 + sources."mime-types-2.1.19" 32012 33165 sources."minimalistic-assert-1.0.1" 32013 33166 sources."minimalistic-crypto-utils-1.0.1" 32014 33167 sources."minimatch-3.0.4" ··· 32062 33215 sources."process-nextick-args-1.0.7" 32063 33216 sources."promzard-0.3.0" 32064 33217 sources."properties-parser-0.3.1" 32065 - sources."proxy-addr-2.0.3" 33218 + sources."proxy-addr-2.0.4" 32066 33219 sources."public-encrypt-4.0.2" 32067 33220 sources."punycode-1.4.1" 32068 33221 sources."q-1.5.1" ··· 32427 33580 sources."arr-flatten-1.1.0" 32428 33581 sources."array-lru-1.1.1" 32429 33582 sources."array-unique-0.2.1" 32430 - sources."asn1-0.2.3" 33583 + sources."asn1-0.2.4" 32431 33584 sources."assert-plus-1.0.0" 32432 33585 sources."async-0.9.2" 32433 33586 sources."asynckit-0.4.0" ··· 32453 33606 sources."buffer-alloc-unsafe-1.1.0" 32454 33607 sources."buffer-equals-1.0.4" 32455 33608 sources."buffer-fill-1.0.0" 32456 - sources."buffer-from-1.1.0" 33609 + sources."buffer-from-1.1.1" 32457 33610 sources."bulk-write-stream-1.1.4" 32458 33611 sources."bytes-3.0.0" 32459 33612 sources."call-me-maybe-1.0.1" ··· 32471 33624 sources."codecs-1.2.1" 32472 33625 sources."color-convert-1.9.2" 32473 33626 sources."color-name-1.1.1" 32474 - sources."colors-1.3.0" 33627 + sources."colors-1.3.1" 32475 33628 sources."combined-stream-1.0.6" 32476 33629 sources."concat-map-0.0.1" 32477 33630 sources."concat-stream-1.6.2" ··· 32530 33683 sources."dot-prop-4.2.0" 32531 33684 sources."duplexer3-0.1.4" 32532 33685 sources."duplexify-3.6.0" 32533 - sources."ecc-jsbn-0.1.1" 33686 + sources."ecc-jsbn-0.1.2" 32534 33687 sources."end-of-stream-1.4.1" 32535 33688 sources."escape-string-regexp-1.0.5" 32536 33689 sources."execa-0.7.0" 32537 33690 sources."expand-brackets-0.1.5" 32538 33691 sources."expand-range-1.8.2" 32539 - sources."extend-3.0.1" 33692 + sources."extend-3.0.2" 32540 33693 sources."extglob-0.3.2" 32541 33694 sources."extsprintf-1.3.0" 32542 33695 sources."eyes-0.1.8" ··· 32568 33721 sources."has-flag-3.0.0" 32569 33722 sources."http-methods-0.1.0" 32570 33723 sources."http-signature-1.2.0" 32571 - (sources."hypercore-6.17.3" // { 33724 + (sources."hypercore-6.18.1" // { 32572 33725 dependencies = [ 32573 33726 sources."process-nextick-args-1.0.7" 32574 33727 sources."unordered-set-2.0.1" ··· 32651 33804 sources."merkle-tree-stream-3.0.3" 32652 33805 sources."micromatch-2.3.11" 32653 33806 sources."mime-2.3.1" 32654 - sources."mime-db-1.33.0" 32655 - sources."mime-types-2.1.18" 33807 + sources."mime-db-1.35.0" 33808 + sources."mime-types-2.1.19" 32656 33809 sources."min-document-2.19.0" 32657 33810 sources."minimatch-3.0.4" 32658 33811 sources."minimist-1.2.0" ··· 32766 33919 sources."sshpk-1.14.2" 32767 33920 sources."stack-trace-0.0.10" 32768 33921 sources."stream-collector-1.0.1" 32769 - sources."stream-each-1.2.2" 33922 + sources."stream-each-1.2.3" 32770 33923 (sources."stream-parser-0.3.1" // { 32771 33924 dependencies = [ 32772 33925 sources."debug-2.6.9" ··· 32932 34085 sources."merge-descriptors-0.0.2" 32933 34086 sources."methods-1.1.2" 32934 34087 sources."mime-1.2.11" 32935 - sources."mime-db-1.33.0" 32936 - sources."mime-types-2.1.18" 34088 + sources."mime-db-1.35.0" 34089 + sources."mime-types-2.1.19" 32937 34090 sources."minimist-0.0.10" 32938 34091 sources."ms-0.7.0" 32939 34092 sources."nan-2.10.0" ··· 33174 34327 elasticdump = nodeEnv.buildNodePackage { 33175 34328 name = "elasticdump"; 33176 34329 packageName = "elasticdump"; 33177 - version = "3.3.18"; 34330 + version = "3.3.19"; 33178 34331 src = fetchurl { 33179 - url = "https://registry.npmjs.org/elasticdump/-/elasticdump-3.3.18.tgz"; 33180 - sha512 = "bfdM9Dy7PeZQnNTEOt8JQCDv+nOQxQJgijLbP7LRg/bAYt6JcKNyGzUp+25iXhoZLd+X3RmLD55yh3hSIsKfAw=="; 34332 + url = "https://registry.npmjs.org/elasticdump/-/elasticdump-3.3.19.tgz"; 34333 + sha512 = "vGWC/duKn+EgF3wQMQa2x21w1L1KTqKNydAvw0e2kShD1n/iNVekeF1e8juND/ttZW4yDvHLp4y10ZfoZ4st/Q=="; 33181 34334 }; 33182 34335 dependencies = [ 33183 34336 sources."JSONStream-1.3.3" 33184 34337 sources."ajv-5.5.2" 33185 - sources."asn1-0.2.3" 34338 + sources."asn1-0.2.4" 33186 34339 sources."assert-plus-1.0.0" 33187 34340 sources."async-2.6.1" 33188 34341 sources."asynckit-0.4.0" 33189 - sources."aws-sdk-2.275.1" 34342 + sources."aws-sdk-2.286.2" 33190 34343 sources."aws-sign2-0.7.0" 33191 34344 sources."aws4-1.7.0" 33192 34345 sources."base64-js-1.3.0" ··· 33199 34352 sources."dashdash-1.14.1" 33200 34353 sources."decimal.js-10.0.1" 33201 34354 sources."delayed-stream-1.0.0" 33202 - sources."ecc-jsbn-0.1.1" 34355 + sources."ecc-jsbn-0.1.2" 33203 34356 sources."events-1.1.1" 33204 - sources."extend-3.0.1" 34357 + sources."extend-3.0.2" 33205 34358 sources."extsprintf-1.3.0" 33206 34359 sources."fast-deep-equal-1.1.0" 33207 34360 sources."fast-json-stable-stringify-2.0.0" ··· 33224 34377 sources."jsonparse-1.3.1" 33225 34378 sources."jsprim-1.4.1" 33226 34379 sources."lodash-4.17.10" 33227 - sources."lossless-json-1.0.2" 33228 - sources."mime-db-1.33.0" 33229 - sources."mime-types-2.1.18" 34380 + sources."lossless-json-1.0.3" 34381 + sources."mime-db-1.35.0" 34382 + sources."mime-types-2.1.19" 33230 34383 sources."minimist-0.0.10" 33231 34384 sources."oauth-sign-0.8.2" 33232 34385 sources."optimist-0.6.1" ··· 33295 34448 sources."arr-diff-2.0.0" 33296 34449 sources."arr-flatten-1.1.0" 33297 34450 sources."array-unique-0.2.1" 33298 - sources."asn1-0.2.3" 34451 + sources."asn1-0.2.4" 33299 34452 sources."assert-plus-0.2.0" 33300 34453 sources."async-each-1.0.1" 33301 34454 sources."asynckit-0.4.0" ··· 33330 34483 ]; 33331 34484 }) 33332 34485 sources."delayed-stream-1.0.0" 33333 - sources."ecc-jsbn-0.1.1" 34486 + sources."ecc-jsbn-0.1.2" 33334 34487 sources."escape-string-regexp-1.0.5" 33335 34488 sources."expand-brackets-0.1.5" 33336 34489 sources."expand-range-1.8.2" 33337 - sources."extend-3.0.1" 34490 + sources."extend-3.0.2" 33338 34491 sources."extglob-0.3.2" 33339 34492 sources."extsprintf-1.3.0" 33340 34493 sources."filename-regex-2.0.1" ··· 33413 34566 sources."lru-cache-4.1.3" 33414 34567 sources."math-random-1.0.1" 33415 34568 sources."micromatch-2.3.11" 33416 - sources."mime-db-1.33.0" 33417 - sources."mime-types-2.1.18" 34569 + sources."mime-db-1.35.0" 34570 + sources."mime-types-2.1.19" 33418 34571 sources."minimatch-3.0.4" 33419 34572 sources."minimist-1.2.0" 33420 34573 (sources."mkdirp-0.5.1" // { ··· 33742 34895 eslint = nodeEnv.buildNodePackage { 33743 34896 name = "eslint"; 33744 34897 packageName = "eslint"; 33745 - version = "5.1.0"; 34898 + version = "5.2.0"; 33746 34899 src = fetchurl { 33747 - url = "https://registry.npmjs.org/eslint/-/eslint-5.1.0.tgz"; 33748 - sha512 = "DyH6JsoA1KzA5+OSWFjg56DFJT+sDLO0yokaPZ9qY0UEmYrPA1gEX/G1MnVkmRDsksG4H1foIVz2ZXXM3hHYvw=="; 34900 + url = "https://registry.npmjs.org/eslint/-/eslint-5.2.0.tgz"; 34901 + sha512 = "zlggW1qp7/TBjwLfouRoY7eWXrXwJZFqCdIxxh0/LVB/QuuKuIMkzyUZEcDo6LBadsry5JcEMxIqd3H/66CXVg=="; 33749 34902 }; 33750 34903 dependencies = [ 33751 34904 sources."acorn-5.7.1" ··· 33820 34973 sources."has-flag-3.0.0" 33821 34974 sources."has-symbols-1.0.0" 33822 34975 sources."iconv-lite-0.4.23" 33823 - sources."ignore-3.3.10" 34976 + sources."ignore-4.0.3" 33824 34977 sources."imurmurhash-0.1.4" 33825 34978 sources."inflight-1.0.6" 33826 34979 sources."inherits-2.0.3" ··· 33963 35116 sources."es-abstract-1.12.0" 33964 35117 sources."es-to-primitive-1.1.1" 33965 35118 sources."escape-string-regexp-1.0.5" 33966 - sources."eslint-5.1.0" 35119 + sources."eslint-5.2.0" 33967 35120 sources."eslint-scope-4.0.0" 33968 35121 sources."eslint-utils-1.3.1" 33969 35122 sources."eslint-visitor-keys-1.0.0" ··· 33993 35146 sources."has-flag-3.0.0" 33994 35147 sources."has-symbols-1.0.0" 33995 35148 sources."iconv-lite-0.4.23" 33996 - sources."ignore-3.3.10" 35149 + sources."ignore-4.0.3" 33997 35150 sources."imurmurhash-0.1.4" 33998 35151 sources."inflight-1.0.6" 33999 35152 sources."inherits-2.0.3" ··· 34117 35270 sources."ansi-regex-2.1.1" 34118 35271 sources."ansi-styles-2.2.1" 34119 35272 sources."array-find-index-1.0.2" 34120 - sources."asn1-0.2.3" 35273 + sources."asn1-0.2.4" 34121 35274 sources."assert-plus-1.0.0" 34122 35275 sources."asynckit-0.4.0" 34123 35276 sources."aws-sign2-0.7.0" 34124 35277 sources."aws4-1.7.0" 34125 35278 sources."bcrypt-pbkdf-1.0.2" 34126 - sources."buffer-from-1.1.0" 35279 + sources."buffer-from-1.1.1" 34127 35280 sources."builtin-modules-1.1.1" 34128 35281 sources."camelcase-2.1.1" 34129 35282 sources."camelcase-keys-2.1.0" ··· 34142 35295 sources."debug-2.6.9" 34143 35296 sources."decamelize-1.2.0" 34144 35297 sources."delayed-stream-1.0.0" 34145 - sources."ecc-jsbn-0.1.1" 35298 + sources."ecc-jsbn-0.1.2" 34146 35299 sources."error-ex-1.3.2" 34147 35300 sources."es6-promise-4.2.4" 34148 35301 sources."escape-string-regexp-1.0.5" 34149 35302 sources."exit-hook-1.1.1" 34150 - sources."extend-3.0.1" 35303 + sources."extend-3.0.2" 34151 35304 sources."extract-zip-1.6.7" 34152 35305 sources."extsprintf-1.3.0" 34153 35306 sources."fast-deep-equal-1.1.0" ··· 34198 35351 sources."loud-rejection-1.6.0" 34199 35352 sources."map-obj-1.0.1" 34200 35353 sources."meow-3.7.0" 34201 - sources."mime-db-1.33.0" 34202 - sources."mime-types-2.1.18" 35354 + sources."mime-db-1.35.0" 35355 + sources."mime-types-2.1.19" 34203 35356 sources."mimic-fn-1.2.0" 34204 35357 sources."minimist-1.2.0" 34205 35358 (sources."mkdirp-0.5.1" // { ··· 34428 35581 sources."preserve-0.2.0" 34429 35582 (sources."prettyjson-1.2.1" // { 34430 35583 dependencies = [ 34431 - sources."colors-1.3.0" 35584 + sources."colors-1.3.1" 34432 35585 sources."minimist-1.2.0" 34433 35586 ]; 34434 35587 }) ··· 34520 35673 production = true; 34521 35674 bypassCache = false; 34522 35675 }; 35676 + graphql-cli = nodeEnv.buildNodePackage { 35677 + name = "graphql-cli"; 35678 + packageName = "graphql-cli"; 35679 + version = "2.16.5"; 35680 + src = fetchurl { 35681 + url = "https://registry.npmjs.org/graphql-cli/-/graphql-cli-2.16.5.tgz"; 35682 + sha512 = "a2QYKmjc6H/39ZGpcKGNQIGAtz84BIVYw9LyYy3Iv1cxJ46zeRgyLBdl8vk+f1aYjQ80TAGHL2+qlIKBD7mDfg=="; 35683 + }; 35684 + dependencies = [ 35685 + sources."@babel/generator-7.0.0-beta.38" 35686 + sources."@babel/types-7.0.0-beta.38" 35687 + (sources."@kbrandwijk/swagger-to-graphql-2.4.3" // { 35688 + dependencies = [ 35689 + sources."ansi-regex-2.1.1" 35690 + sources."cliui-3.2.0" 35691 + sources."string-width-1.0.2" 35692 + sources."strip-ansi-3.0.1" 35693 + sources."yargs-8.0.2" 35694 + sources."yargs-parser-7.0.0" 35695 + ]; 35696 + }) 35697 + sources."accepts-1.3.5" 35698 + sources."adm-zip-0.4.7" 35699 + sources."agent-base-4.2.1" 35700 + sources."ajv-5.5.2" 35701 + sources."ansi-align-2.0.0" 35702 + sources."ansi-escapes-3.1.0" 35703 + sources."ansi-regex-3.0.0" 35704 + sources."ansi-styles-3.2.1" 35705 + (sources."apollo-codegen-0.19.1" // { 35706 + dependencies = [ 35707 + (sources."graphql-config-1.2.1" // { 35708 + dependencies = [ 35709 + sources."graphql-0.12.3" 35710 + ]; 35711 + }) 35712 + sources."node-fetch-1.7.3" 35713 + sources."yargs-10.1.2" 35714 + ]; 35715 + }) 35716 + sources."argparse-1.0.10" 35717 + sources."array-flatten-1.1.1" 35718 + sources."asn1-0.2.4" 35719 + sources."assert-plus-1.0.0" 35720 + sources."async-2.6.1" 35721 + sources."asynckit-0.4.0" 35722 + sources."aws-sign2-0.7.0" 35723 + sources."aws4-1.7.0" 35724 + sources."babel-runtime-6.26.0" 35725 + sources."balanced-match-1.0.0" 35726 + sources."bcrypt-pbkdf-1.0.2" 35727 + sources."bluebird-3.5.1" 35728 + (sources."body-parser-1.18.2" // { 35729 + dependencies = [ 35730 + sources."iconv-lite-0.4.19" 35731 + ]; 35732 + }) 35733 + sources."boxen-1.3.0" 35734 + sources."brace-expansion-1.1.11" 35735 + sources."buffer-equal-constant-time-1.0.1" 35736 + sources."buffer-from-1.1.1" 35737 + sources."builtin-modules-1.1.1" 35738 + sources."bytes-3.0.0" 35739 + sources."call-me-maybe-1.0.1" 35740 + sources."camel-case-3.0.0" 35741 + sources."camelcase-4.1.0" 35742 + sources."capture-stack-trace-1.0.0" 35743 + sources."caseless-0.12.0" 35744 + sources."chalk-2.4.1" 35745 + sources."change-case-3.0.2" 35746 + sources."chardet-0.4.2" 35747 + sources."ci-info-1.1.3" 35748 + sources."cli-boxes-1.0.0" 35749 + sources."cli-cursor-2.1.0" 35750 + sources."cli-spinners-1.3.1" 35751 + sources."cli-width-2.2.0" 35752 + sources."cliui-4.1.0" 35753 + sources."clone-1.0.4" 35754 + sources."co-4.6.0" 35755 + sources."code-point-at-1.1.0" 35756 + sources."color-convert-1.9.2" 35757 + sources."color-name-1.1.1" 35758 + (sources."columnify-1.5.4" // { 35759 + dependencies = [ 35760 + sources."ansi-regex-2.1.1" 35761 + sources."strip-ansi-3.0.1" 35762 + ]; 35763 + }) 35764 + sources."combined-stream-1.0.6" 35765 + sources."command-exists-1.2.7" 35766 + sources."commander-2.16.0" 35767 + sources."common-tags-1.8.0" 35768 + sources."concat-map-0.0.1" 35769 + sources."configstore-3.1.2" 35770 + sources."constant-case-2.0.0" 35771 + sources."content-disposition-0.5.2" 35772 + sources."content-type-1.0.4" 35773 + sources."cookie-0.3.1" 35774 + sources."cookie-signature-1.0.6" 35775 + sources."core-js-2.5.7" 35776 + sources."core-util-is-1.0.2" 35777 + (sources."cosmiconfig-3.1.0" // { 35778 + dependencies = [ 35779 + sources."parse-json-3.0.0" 35780 + ]; 35781 + }) 35782 + sources."create-error-class-3.0.2" 35783 + (sources."cross-fetch-2.0.0" // { 35784 + dependencies = [ 35785 + sources."node-fetch-2.0.0" 35786 + ]; 35787 + }) 35788 + sources."cross-spawn-6.0.5" 35789 + sources."crypto-random-string-1.0.0" 35790 + (sources."cucumber-html-reporter-3.0.4" // { 35791 + dependencies = [ 35792 + sources."fs-extra-3.0.1" 35793 + sources."jsonfile-3.0.1" 35794 + ]; 35795 + }) 35796 + sources."dashdash-1.14.1" 35797 + sources."debug-2.6.9" 35798 + sources."decamelize-1.2.0" 35799 + sources."deep-extend-0.6.0" 35800 + sources."defaults-1.0.3" 35801 + sources."delayed-stream-1.0.0" 35802 + sources."depd-1.1.2" 35803 + sources."destroy-1.0.4" 35804 + sources."diff-1.4.0" 35805 + (sources."disparity-2.0.0" // { 35806 + dependencies = [ 35807 + sources."ansi-styles-2.2.1" 35808 + ]; 35809 + }) 35810 + sources."dot-case-2.1.1" 35811 + sources."dot-prop-4.2.0" 35812 + sources."dotenv-5.0.1" 35813 + sources."duplexer3-0.1.4" 35814 + sources."ecc-jsbn-0.1.2" 35815 + sources."ecdsa-sig-formatter-1.0.10" 35816 + sources."ee-first-1.1.1" 35817 + sources."encodeurl-1.0.2" 35818 + sources."encoding-0.1.12" 35819 + sources."errno-0.1.7" 35820 + sources."error-ex-1.3.2" 35821 + sources."es6-promise-4.2.4" 35822 + sources."es6-promisify-5.0.0" 35823 + sources."escape-html-1.0.3" 35824 + sources."escape-string-regexp-1.0.5" 35825 + sources."esprima-4.0.1" 35826 + sources."esutils-2.0.2" 35827 + sources."etag-1.8.1" 35828 + (sources."execa-0.7.0" // { 35829 + dependencies = [ 35830 + sources."cross-spawn-5.1.0" 35831 + ]; 35832 + }) 35833 + sources."expand-tilde-2.0.2" 35834 + sources."express-4.16.3" 35835 + (sources."express-request-proxy-2.2.0" // { 35836 + dependencies = [ 35837 + (sources."body-parser-1.18.3" // { 35838 + dependencies = [ 35839 + sources."debug-2.6.9" 35840 + ]; 35841 + }) 35842 + sources."debug-3.1.0" 35843 + sources."path-to-regexp-1.7.0" 35844 + sources."qs-6.5.2" 35845 + sources."raw-body-2.3.3" 35846 + ]; 35847 + }) 35848 + sources."extend-3.0.2" 35849 + sources."external-editor-2.2.0" 35850 + sources."extsprintf-1.3.0" 35851 + sources."fast-deep-equal-1.1.0" 35852 + sources."fast-json-stable-stringify-2.0.0" 35853 + sources."figures-2.0.0" 35854 + sources."finalhandler-1.1.1" 35855 + sources."find-0.2.9" 35856 + sources."find-up-2.1.0" 35857 + sources."forever-agent-0.6.1" 35858 + sources."form-data-2.3.2" 35859 + sources."format-util-1.0.3" 35860 + sources."forwarded-0.1.2" 35861 + sources."fresh-0.5.2" 35862 + sources."fs-extra-5.0.0" 35863 + sources."fs.realpath-1.0.0" 35864 + sources."get-caller-file-1.0.3" 35865 + sources."get-stream-3.0.0" 35866 + sources."getpass-0.1.7" 35867 + sources."glob-7.1.2" 35868 + sources."global-dirs-0.1.1" 35869 + sources."global-modules-1.0.0" 35870 + sources."global-prefix-1.0.2" 35871 + sources."got-6.7.1" 35872 + sources."graceful-fs-4.1.11" 35873 + sources."graphcool-json-schema-1.2.1" 35874 + (sources."graphcool-yml-0.4.15" // { 35875 + dependencies = [ 35876 + sources."debug-3.1.0" 35877 + sources."dotenv-4.0.0" 35878 + sources."fs-extra-4.0.3" 35879 + ]; 35880 + }) 35881 + (sources."graphql-0.13.2" // { 35882 + dependencies = [ 35883 + sources."iterall-1.2.2" 35884 + ]; 35885 + }) 35886 + (sources."graphql-cli-prepare-1.4.19" // { 35887 + dependencies = [ 35888 + sources."chalk-2.3.1" 35889 + sources."lodash-4.17.5" 35890 + ]; 35891 + }) 35892 + sources."graphql-config-2.0.1" 35893 + sources."graphql-config-extension-graphcool-1.0.8" 35894 + sources."graphql-config-extension-openapi-1.0.6" 35895 + sources."graphql-config-extension-prisma-0.0.11" 35896 + sources."graphql-import-0.4.5" 35897 + (sources."graphql-playground-html-1.5.5" // { 35898 + dependencies = [ 35899 + sources."graphql-config-2.0.0" 35900 + ]; 35901 + }) 35902 + sources."graphql-playground-middleware-express-1.6.2" 35903 + sources."graphql-request-1.8.0" 35904 + sources."graphql-schema-linter-0.1.1" 35905 + sources."graphql-static-binding-0.9.3" 35906 + sources."har-schema-2.0.0" 35907 + sources."har-validator-5.0.3" 35908 + sources."has-flag-3.0.0" 35909 + sources."header-case-1.0.1" 35910 + sources."homedir-polyfill-1.0.1" 35911 + sources."hosted-git-info-2.7.1" 35912 + sources."http-errors-1.6.3" 35913 + (sources."http-proxy-agent-2.1.0" // { 35914 + dependencies = [ 35915 + sources."debug-3.1.0" 35916 + ]; 35917 + }) 35918 + sources."http-signature-1.2.0" 35919 + (sources."https-proxy-agent-2.2.1" // { 35920 + dependencies = [ 35921 + sources."debug-3.1.0" 35922 + ]; 35923 + }) 35924 + sources."iconv-lite-0.4.23" 35925 + sources."import-lazy-2.1.0" 35926 + sources."imurmurhash-0.1.4" 35927 + sources."inflected-2.0.4" 35928 + sources."inflight-1.0.6" 35929 + sources."inherits-2.0.3" 35930 + sources."ini-1.3.5" 35931 + sources."inquirer-5.1.0" 35932 + sources."invert-kv-1.0.0" 35933 + sources."ip-regex-1.0.3" 35934 + sources."ipaddr.js-1.8.0" 35935 + sources."is-arrayish-0.2.1" 35936 + sources."is-builtin-module-1.0.0" 35937 + sources."is-ci-1.1.0" 35938 + sources."is-directory-0.3.1" 35939 + sources."is-fullwidth-code-point-1.0.0" 35940 + sources."is-installed-globally-0.1.0" 35941 + sources."is-lower-case-1.1.3" 35942 + sources."is-npm-1.0.0" 35943 + sources."is-obj-1.0.1" 35944 + sources."is-path-inside-1.0.1" 35945 + sources."is-promise-2.1.0" 35946 + sources."is-redirect-1.0.0" 35947 + sources."is-retry-allowed-1.1.0" 35948 + sources."is-stream-1.1.0" 35949 + sources."is-typedarray-1.0.0" 35950 + sources."is-upper-case-1.1.2" 35951 + sources."is-url-superb-2.0.0" 35952 + sources."is-windows-1.0.2" 35953 + sources."is-wsl-1.1.0" 35954 + sources."isarray-0.0.1" 35955 + sources."isexe-2.0.0" 35956 + (sources."isomorphic-fetch-2.2.1" // { 35957 + dependencies = [ 35958 + sources."node-fetch-1.7.3" 35959 + ]; 35960 + }) 35961 + sources."isstream-0.1.2" 35962 + sources."iterall-1.1.3" 35963 + sources."js-base64-2.4.8" 35964 + sources."js-yaml-3.12.0" 35965 + sources."jsbn-0.1.1" 35966 + sources."jsesc-2.5.1" 35967 + sources."json-schema-0.2.3" 35968 + (sources."json-schema-ref-parser-3.3.1" // { 35969 + dependencies = [ 35970 + sources."debug-3.1.0" 35971 + ]; 35972 + }) 35973 + sources."json-schema-traverse-0.3.1" 35974 + sources."json-stable-stringify-1.0.1" 35975 + sources."json-stringify-safe-5.0.1" 35976 + sources."jsonfile-4.0.0" 35977 + sources."jsonify-0.0.0" 35978 + (sources."jsonwebtoken-8.3.0" // { 35979 + dependencies = [ 35980 + sources."ms-2.1.1" 35981 + ]; 35982 + }) 35983 + sources."jsprim-1.4.1" 35984 + sources."jwa-1.1.6" 35985 + sources."jws-3.1.5" 35986 + sources."latest-version-3.1.0" 35987 + sources."lcid-1.0.0" 35988 + sources."load-json-file-2.0.0" 35989 + sources."locate-path-2.0.0" 35990 + sources."lodash-4.17.10" 35991 + sources."lodash.get-4.4.2" 35992 + sources."lodash.includes-4.3.0" 35993 + sources."lodash.isboolean-3.0.3" 35994 + sources."lodash.isequal-4.5.0" 35995 + sources."lodash.isinteger-4.0.4" 35996 + sources."lodash.isnumber-3.0.3" 35997 + sources."lodash.isplainobject-4.0.6" 35998 + sources."lodash.isstring-4.0.1" 35999 + sources."lodash.once-4.1.1" 36000 + sources."log-symbols-2.2.0" 36001 + sources."lower-case-1.1.4" 36002 + sources."lower-case-first-1.0.2" 36003 + sources."lowercase-keys-1.0.1" 36004 + sources."lru-cache-4.1.3" 36005 + (sources."make-dir-1.3.0" // { 36006 + dependencies = [ 36007 + sources."pify-3.0.0" 36008 + ]; 36009 + }) 36010 + sources."media-typer-0.3.0" 36011 + sources."mem-1.1.0" 36012 + sources."merge-descriptors-1.0.1" 36013 + sources."methods-1.1.2" 36014 + sources."mime-1.4.1" 36015 + sources."mime-db-1.35.0" 36016 + sources."mime-types-2.1.19" 36017 + sources."mimic-fn-1.2.0" 36018 + sources."minimatch-3.0.4" 36019 + sources."minimist-0.0.8" 36020 + sources."mkdirp-0.5.1" 36021 + sources."ms-2.0.0" 36022 + sources."mute-stream-0.0.7" 36023 + sources."negotiator-0.6.1" 36024 + sources."nice-try-1.0.4" 36025 + sources."no-case-2.3.2" 36026 + sources."node-fetch-2.2.0" 36027 + sources."node-request-by-swagger-1.1.3" 36028 + sources."normalize-package-data-2.4.0" 36029 + sources."npm-path-2.0.4" 36030 + sources."npm-paths-1.0.0" 36031 + (sources."npm-run-4.1.2" // { 36032 + dependencies = [ 36033 + sources."cross-spawn-5.1.0" 36034 + sources."minimist-1.2.0" 36035 + ]; 36036 + }) 36037 + sources."npm-run-path-2.0.2" 36038 + sources."npm-which-3.0.1" 36039 + sources."number-is-nan-1.0.1" 36040 + sources."oauth-sign-0.8.2" 36041 + sources."on-finished-2.3.0" 36042 + sources."once-1.4.0" 36043 + sources."onetime-2.0.1" 36044 + sources."ono-4.0.5" 36045 + sources."open-0.0.5" 36046 + sources."opn-5.3.0" 36047 + sources."ora-1.4.0" 36048 + sources."os-locale-2.1.0" 36049 + sources."os-tmpdir-1.0.2" 36050 + sources."p-finally-1.0.0" 36051 + sources."p-limit-1.3.0" 36052 + sources."p-locate-2.0.0" 36053 + sources."p-try-1.0.0" 36054 + sources."package-json-4.0.1" 36055 + sources."param-case-2.1.1" 36056 + sources."parse-github-url-1.0.2" 36057 + sources."parse-json-2.2.0" 36058 + sources."parse-passwd-1.0.0" 36059 + sources."parseurl-1.3.2" 36060 + sources."pascal-case-2.0.1" 36061 + sources."path-case-2.1.1" 36062 + sources."path-exists-3.0.0" 36063 + sources."path-is-absolute-1.0.1" 36064 + sources."path-is-inside-1.0.2" 36065 + sources."path-key-2.0.1" 36066 + sources."path-to-regexp-0.1.7" 36067 + sources."path-type-2.0.0" 36068 + sources."performance-now-2.1.0" 36069 + sources."pify-2.3.0" 36070 + sources."prepend-http-1.0.4" 36071 + sources."prisma-json-schema-0.0.4" 36072 + (sources."prisma-yml-1.0.50" // { 36073 + dependencies = [ 36074 + sources."debug-3.1.0" 36075 + sources."dotenv-4.0.0" 36076 + ]; 36077 + }) 36078 + sources."process-nextick-args-2.0.0" 36079 + sources."protochain-1.0.5" 36080 + sources."proxy-addr-2.0.4" 36081 + sources."prr-1.0.1" 36082 + sources."pseudomap-1.0.2" 36083 + sources."psl-1.1.29" 36084 + sources."punycode-1.4.1" 36085 + sources."qs-6.5.1" 36086 + sources."range-parser-1.2.0" 36087 + (sources."raw-body-2.3.2" // { 36088 + dependencies = [ 36089 + sources."depd-1.1.1" 36090 + sources."http-errors-1.6.2" 36091 + sources."iconv-lite-0.4.19" 36092 + sources."setprototypeof-1.0.3" 36093 + ]; 36094 + }) 36095 + (sources."rc-1.2.8" // { 36096 + dependencies = [ 36097 + sources."minimist-1.2.0" 36098 + ]; 36099 + }) 36100 + sources."read-pkg-2.0.0" 36101 + sources."read-pkg-up-2.0.0" 36102 + (sources."readable-stream-2.3.6" // { 36103 + dependencies = [ 36104 + sources."isarray-1.0.0" 36105 + ]; 36106 + }) 36107 + sources."regenerator-runtime-0.11.1" 36108 + sources."registry-auth-token-3.3.2" 36109 + sources."registry-url-3.1.0" 36110 + sources."replaceall-0.1.6" 36111 + (sources."request-2.87.0" // { 36112 + dependencies = [ 36113 + sources."tough-cookie-2.3.4" 36114 + ]; 36115 + }) 36116 + sources."request-promise-4.2.2" 36117 + sources."request-promise-core-1.1.1" 36118 + sources."require-directory-2.1.1" 36119 + sources."require-from-string-2.0.2" 36120 + sources."require-main-filename-1.0.1" 36121 + sources."resolve-dir-1.0.1" 36122 + sources."restore-cursor-2.0.0" 36123 + sources."rimraf-2.6.2" 36124 + sources."run-async-2.3.0" 36125 + sources."rxjs-5.5.11" 36126 + sources."safe-buffer-5.1.1" 36127 + sources."safer-buffer-2.1.2" 36128 + sources."scuid-1.1.0" 36129 + sources."semver-5.5.0" 36130 + sources."semver-diff-2.1.0" 36131 + sources."send-0.16.2" 36132 + sources."sentence-case-2.1.1" 36133 + sources."serializerr-1.0.3" 36134 + sources."serve-static-1.13.2" 36135 + sources."set-blocking-2.0.0" 36136 + sources."setprototypeof-1.1.0" 36137 + sources."shebang-command-1.2.0" 36138 + sources."shebang-regex-1.0.0" 36139 + sources."signal-exit-3.0.2" 36140 + sources."simple-errors-1.0.1" 36141 + sources."snake-case-2.1.0" 36142 + sources."source-map-0.5.7" 36143 + (sources."source-map-support-0.5.6" // { 36144 + dependencies = [ 36145 + sources."source-map-0.6.1" 36146 + ]; 36147 + }) 36148 + sources."spdx-correct-3.0.0" 36149 + sources."spdx-exceptions-2.1.0" 36150 + sources."spdx-expression-parse-3.0.0" 36151 + sources."spdx-license-ids-3.0.0" 36152 + sources."sprintf-js-1.0.3" 36153 + sources."sshpk-1.14.2" 36154 + sources."statuses-1.4.0" 36155 + sources."stealthy-require-1.1.1" 36156 + (sources."string-width-2.1.1" // { 36157 + dependencies = [ 36158 + sources."is-fullwidth-code-point-2.0.0" 36159 + ]; 36160 + }) 36161 + sources."string_decoder-1.1.1" 36162 + sources."strip-ansi-4.0.0" 36163 + sources."strip-bom-3.0.0" 36164 + sources."strip-eof-1.0.0" 36165 + sources."strip-json-comments-2.0.1" 36166 + sources."supports-color-5.4.0" 36167 + sources."swap-case-1.1.2" 36168 + sources."symbol-observable-1.0.1" 36169 + sources."sync-exec-0.6.2" 36170 + sources."term-size-1.2.0" 36171 + sources."through-2.3.8" 36172 + sources."through2-2.0.3" 36173 + sources."timed-out-4.0.1" 36174 + sources."title-case-2.1.1" 36175 + sources."tmp-0.0.33" 36176 + sources."to-fast-properties-2.0.0" 36177 + sources."tough-cookie-2.4.3" 36178 + sources."traverse-chain-0.1.0" 36179 + sources."trim-right-1.0.1" 36180 + sources."tunnel-agent-0.6.0" 36181 + sources."tweetnacl-0.14.5" 36182 + sources."type-is-1.6.16" 36183 + sources."unique-string-1.0.0" 36184 + sources."universalify-0.1.2" 36185 + sources."unpipe-1.0.0" 36186 + sources."unzip-response-2.0.1" 36187 + sources."update-notifier-2.5.0" 36188 + sources."upper-case-1.1.3" 36189 + sources."upper-case-first-1.1.2" 36190 + sources."url-join-4.0.0" 36191 + sources."url-parse-lax-1.0.0" 36192 + sources."url-regex-3.2.0" 36193 + sources."util-deprecate-1.0.2" 36194 + sources."utils-merge-1.0.1" 36195 + sources."uuid-3.3.2" 36196 + sources."validate-npm-package-license-3.0.3" 36197 + sources."validator-10.5.0" 36198 + sources."vary-1.1.2" 36199 + sources."verror-1.10.0" 36200 + sources."wcwidth-1.0.1" 36201 + sources."whatwg-fetch-2.0.3" 36202 + sources."which-1.3.1" 36203 + sources."which-module-2.0.0" 36204 + sources."widest-line-2.0.0" 36205 + (sources."wrap-ansi-2.1.0" // { 36206 + dependencies = [ 36207 + sources."ansi-regex-2.1.1" 36208 + sources."string-width-1.0.2" 36209 + sources."strip-ansi-3.0.1" 36210 + ]; 36211 + }) 36212 + sources."wrappy-1.0.2" 36213 + sources."write-file-atomic-2.3.0" 36214 + sources."xdg-basedir-3.0.0" 36215 + sources."xtend-4.0.1" 36216 + sources."y18n-3.2.1" 36217 + sources."yallist-2.1.2" 36218 + sources."yaml-ast-parser-0.0.40" 36219 + (sources."yargs-11.0.0" // { 36220 + dependencies = [ 36221 + sources."yargs-parser-9.0.2" 36222 + ]; 36223 + }) 36224 + sources."yargs-parser-8.1.0" 36225 + sources."z-schema-3.22.0" 36226 + ]; 36227 + buildInputs = globalBuildInputs; 36228 + meta = { 36229 + description = "GraphQL CLI"; 36230 + homepage = "https://github.com/graphql-cli/graphql-cli#readme"; 36231 + license = "MIT"; 36232 + }; 36233 + production = true; 36234 + bypassCache = false; 36235 + }; 34523 36236 grunt-cli = nodeEnv.buildNodePackage { 34524 36237 name = "grunt-cli"; 34525 36238 packageName = "grunt-cli"; ··· 34741 36454 ]; 34742 36455 }) 34743 36456 sources."expand-tilde-2.0.2" 34744 - sources."extend-3.0.1" 36457 + sources."extend-3.0.2" 34745 36458 (sources."extend-shallow-3.0.2" // { 34746 36459 dependencies = [ 34747 36460 sources."is-extendable-1.0.1" ··· 35151 36864 sources."param-case-2.1.1" 35152 36865 sources."relateurl-0.2.7" 35153 36866 sources."source-map-0.5.7" 35154 - (sources."uglify-js-3.4.4" // { 36867 + (sources."uglify-js-3.4.6" // { 35155 36868 dependencies = [ 35156 36869 sources."source-map-0.6.1" 35157 36870 ]; ··· 35170 36883 ionic = nodeEnv.buildNodePackage { 35171 36884 name = "ionic"; 35172 36885 packageName = "ionic"; 35173 - version = "3.20.0"; 36886 + version = "4.0.3"; 35174 36887 src = fetchurl { 35175 - url = "https://registry.npmjs.org/ionic/-/ionic-3.20.0.tgz"; 35176 - sha512 = "yeLPusYOSyF+VmO+Hf2a5kf2Kx4ST1f3MILM8g+9ckF/MdaoD9UzXif2/sumGem6I6RTrqo9horBmC7QJYcClA=="; 36888 + url = "https://registry.npmjs.org/ionic/-/ionic-4.0.3.tgz"; 36889 + sha512 = "hnsbLBFfJAteX3FUIddr9jeIbyTizha3l2R3T4rTDhcEaegl3jyszeLc66lZZ1pwA3gZB501FGC1sy9hrKdKOw=="; 35177 36890 }; 35178 36891 dependencies = [ 35179 - sources."@ionic/cli-framework-0.1.3" 35180 - sources."@ionic/cli-utils-1.19.2" 35181 - sources."@ionic/discover-0.4.0" 35182 - sources."accepts-1.3.5" 36892 + sources."@ionic/cli-framework-1.0.2" 36893 + sources."@ionic/cli-utils-2.0.3" 36894 + sources."@ionic/discover-1.0.2" 36895 + sources."@types/cross-spawn-6.0.0" 36896 + sources."@types/debug-0.0.30" 36897 + sources."@types/events-1.2.0" 36898 + sources."@types/glob-5.0.35" 36899 + sources."@types/inquirer-0.0.42" 36900 + sources."@types/klaw-2.1.1" 36901 + sources."@types/lodash-4.14.116" 36902 + sources."@types/make-dir-1.0.3" 36903 + sources."@types/minimatch-3.0.3" 36904 + sources."@types/minimist-1.2.0" 36905 + sources."@types/ncp-2.0.1" 36906 + sources."@types/node-6.0.115" 36907 + sources."@types/rimraf-2.0.2" 36908 + sources."@types/rx-4.1.1" 36909 + sources."@types/rx-core-4.0.3" 36910 + sources."@types/rx-core-binding-4.0.4" 36911 + sources."@types/rx-lite-4.0.5" 36912 + sources."@types/rx-lite-aggregates-4.0.3" 36913 + sources."@types/rx-lite-async-4.0.2" 36914 + sources."@types/rx-lite-backpressure-4.0.3" 36915 + sources."@types/rx-lite-coincidence-4.0.3" 36916 + sources."@types/rx-lite-experimental-4.0.1" 36917 + sources."@types/rx-lite-joinpatterns-4.0.1" 36918 + sources."@types/rx-lite-testing-4.0.1" 36919 + sources."@types/rx-lite-time-4.0.3" 36920 + sources."@types/rx-lite-virtualtime-4.0.3" 36921 + sources."@types/string-width-2.0.0" 36922 + sources."@types/strip-ansi-3.0.0" 36923 + sources."@types/through-0.0.29" 36924 + sources."@types/untildify-3.0.0" 36925 + sources."@types/wrap-ansi-3.0.0" 36926 + sources."@types/write-file-atomic-2.1.1" 36927 + sources."agent-base-4.2.1" 36928 + sources."ansi-align-2.0.0" 35183 36929 sources."ansi-escapes-3.1.0" 35184 36930 sources."ansi-regex-3.0.0" 35185 36931 sources."ansi-styles-3.2.1" 35186 - sources."anymatch-1.3.2" 35187 - sources."archiver-2.1.1" 35188 - sources."archiver-utils-1.3.0" 35189 - sources."arr-diff-2.0.0" 35190 - sources."arr-flatten-1.1.0" 35191 - sources."array-flatten-1.1.1" 35192 - sources."array-unique-0.2.1" 35193 - sources."async-2.6.1" 35194 - sources."async-each-1.0.1" 36932 + sources."ast-types-0.11.5" 35195 36933 sources."async-limiter-1.0.0" 35196 36934 sources."asynckit-0.4.0" 35197 36935 sources."balanced-match-1.0.0" 35198 - sources."base64-js-1.3.0" 35199 - sources."basic-auth-1.1.0" 35200 - sources."binary-extensions-1.11.0" 35201 - sources."bl-1.2.2" 35202 - (sources."body-5.1.0" // { 35203 - dependencies = [ 35204 - sources."bytes-1.0.0" 35205 - sources."raw-body-1.1.7" 35206 - sources."string_decoder-0.10.31" 35207 - ]; 35208 - }) 35209 - (sources."body-parser-1.18.3" // { 35210 - dependencies = [ 35211 - sources."debug-2.6.9" 35212 - ]; 35213 - }) 36936 + sources."boxen-1.3.0" 35214 36937 sources."brace-expansion-1.1.11" 35215 - sources."braces-1.8.5" 35216 - sources."buffer-5.1.0" 35217 - sources."buffer-alloc-1.2.0" 35218 - sources."buffer-alloc-unsafe-1.1.0" 35219 - sources."buffer-crc32-0.2.13" 35220 - sources."buffer-fill-1.0.0" 35221 36938 sources."bytes-3.0.0" 36939 + sources."camelcase-4.1.0" 36940 + sources."capture-stack-trace-1.0.0" 35222 36941 sources."chalk-2.4.1" 35223 - sources."chardet-0.4.2" 35224 - sources."chokidar-1.7.0" 36942 + sources."chardet-0.5.0" 35225 36943 sources."chownr-1.0.1" 35226 36944 sources."ci-info-1.1.3" 36945 + sources."cli-boxes-1.0.0" 35227 36946 sources."cli-cursor-2.1.0" 35228 36947 sources."cli-width-2.2.0" 36948 + sources."co-4.6.0" 35229 36949 sources."color-convert-1.9.2" 35230 36950 sources."color-name-1.1.1" 35231 36951 sources."combined-stream-1.0.6" 35232 36952 sources."component-emitter-1.2.1" 35233 - sources."compress-commons-1.2.2" 35234 36953 sources."concat-map-0.0.1" 35235 - sources."content-disposition-0.5.2" 35236 - sources."content-type-1.0.4" 35237 - sources."continuable-cache-0.3.1" 35238 - sources."cookie-0.3.1" 35239 - sources."cookie-signature-1.0.6" 36954 + sources."configstore-3.1.2" 35240 36955 sources."cookiejar-2.1.2" 35241 36956 sources."core-util-is-1.0.2" 35242 - sources."crc-3.7.0" 35243 - sources."crc32-stream-2.0.0" 36957 + sources."create-error-class-3.0.2" 35244 36958 sources."cross-spawn-5.1.0" 35245 - sources."dargs-5.1.0" 36959 + sources."crypto-random-string-1.0.0" 36960 + sources."data-uri-to-buffer-1.2.0" 35246 36961 sources."debug-3.1.0" 36962 + sources."deep-extend-0.6.0" 36963 + sources."deep-is-0.1.3" 36964 + sources."degenerator-1.0.4" 35247 36965 sources."delayed-stream-1.0.0" 35248 36966 sources."depd-1.1.2" 35249 - sources."destroy-1.0.4" 35250 36967 sources."diff-3.5.0" 35251 - sources."ee-first-1.1.1" 36968 + sources."dot-prop-4.2.0" 36969 + sources."duplexer2-0.1.4" 36970 + sources."duplexer3-0.1.4" 35252 36971 sources."elementtree-0.1.7" 35253 - sources."encodeurl-1.0.2" 35254 - sources."end-of-stream-1.4.1" 35255 - sources."error-7.0.2" 35256 - sources."escape-html-1.0.3" 36972 + sources."es6-promise-4.2.4" 36973 + sources."es6-promisify-5.0.0" 35257 36974 sources."escape-string-regexp-1.0.5" 35258 - sources."etag-1.8.1" 35259 - sources."eventemitter3-3.1.0" 35260 - sources."expand-brackets-0.1.5" 35261 - sources."expand-range-1.8.2" 35262 - (sources."express-4.16.3" // { 36975 + sources."escodegen-1.11.0" 36976 + sources."esprima-3.1.3" 36977 + sources."estraverse-4.2.0" 36978 + sources."esutils-2.0.2" 36979 + sources."execa-0.7.0" 36980 + sources."extend-3.0.2" 36981 + sources."external-editor-3.0.0" 36982 + sources."fast-levenshtein-2.0.6" 36983 + sources."figures-2.0.0" 36984 + sources."file-uri-to-path-1.0.0" 36985 + sources."form-data-2.3.2" 36986 + sources."formidable-1.2.1" 36987 + sources."fs-minipass-1.2.5" 36988 + sources."fs.realpath-1.0.0" 36989 + (sources."ftp-0.3.10" // { 35263 36990 dependencies = [ 35264 - sources."body-parser-1.18.2" 35265 - sources."debug-2.6.9" 35266 - (sources."http-errors-1.6.2" // { 35267 - dependencies = [ 35268 - sources."depd-1.1.1" 35269 - sources."setprototypeof-1.0.3" 35270 - ]; 35271 - }) 35272 - sources."iconv-lite-0.4.19" 35273 - sources."qs-6.5.1" 35274 - sources."raw-body-2.3.2" 35275 - sources."safe-buffer-5.1.1" 35276 - sources."statuses-1.4.0" 36991 + sources."isarray-0.0.1" 36992 + sources."readable-stream-1.1.14" 36993 + sources."string_decoder-0.10.31" 35277 36994 ]; 35278 36995 }) 35279 - sources."extend-3.0.1" 35280 - sources."external-editor-2.2.0" 35281 - sources."extglob-0.3.2" 35282 - sources."faye-websocket-0.10.0" 35283 - sources."figures-2.0.0" 35284 - sources."filename-regex-2.0.1" 35285 - sources."fill-range-2.2.4" 35286 - (sources."finalhandler-1.1.1" // { 36996 + sources."get-stream-3.0.0" 36997 + (sources."get-uri-2.0.2" // { 35287 36998 dependencies = [ 35288 36999 sources."debug-2.6.9" 35289 - sources."statuses-1.4.0" 35290 37000 ]; 35291 37001 }) 35292 - sources."follow-redirects-1.5.1" 35293 - sources."for-in-1.0.2" 35294 - sources."for-own-0.1.5" 35295 - sources."form-data-2.3.2" 35296 - sources."formidable-1.2.1" 35297 - sources."forwarded-0.1.2" 35298 - sources."fresh-0.5.2" 35299 - sources."fs-constants-1.0.0" 35300 - sources."fs-minipass-1.2.5" 35301 - sources."fs.realpath-1.0.0" 35302 - sources."fsevents-1.2.4" 35303 37002 sources."glob-7.1.2" 35304 - sources."glob-base-0.3.0" 35305 - sources."glob-parent-2.0.0" 37003 + sources."global-dirs-0.1.1" 37004 + sources."got-6.7.1" 35306 37005 sources."graceful-fs-4.1.11" 35307 37006 sources."has-flag-3.0.0" 35308 37007 sources."http-errors-1.6.3" 35309 - sources."http-parser-js-0.4.13" 35310 - sources."http-proxy-1.17.0" 35311 - (sources."http-proxy-middleware-0.17.4" // { 35312 - dependencies = [ 35313 - sources."is-extglob-2.1.1" 35314 - sources."is-glob-3.1.0" 35315 - ]; 35316 - }) 37008 + sources."http-proxy-agent-2.1.0" 37009 + sources."https-proxy-agent-2.2.1" 35317 37010 sources."iconv-lite-0.4.23" 35318 - sources."ieee754-1.1.12" 37011 + sources."import-lazy-2.1.0" 37012 + sources."imurmurhash-0.1.4" 35319 37013 sources."inflight-1.0.6" 35320 37014 sources."inherits-2.0.3" 35321 - sources."inquirer-3.3.0" 35322 - sources."ipaddr.js-1.6.0" 35323 - sources."is-binary-path-1.0.1" 35324 - sources."is-buffer-1.1.6" 35325 - sources."is-dotfile-1.0.3" 35326 - sources."is-equal-shallow-0.1.3" 35327 - sources."is-extendable-0.1.1" 35328 - sources."is-extglob-1.0.0" 37015 + sources."ini-1.3.5" 37016 + sources."inquirer-6.0.0" 37017 + sources."ip-1.1.5" 37018 + sources."is-ci-1.1.0" 35329 37019 sources."is-fullwidth-code-point-2.0.0" 35330 - sources."is-glob-2.0.1" 35331 - sources."is-number-2.1.0" 35332 - sources."is-posix-bracket-0.1.1" 35333 - sources."is-primitive-2.0.0" 37020 + sources."is-installed-globally-0.1.0" 37021 + sources."is-npm-1.0.0" 37022 + sources."is-obj-1.0.1" 37023 + sources."is-path-inside-1.0.1" 35334 37024 sources."is-promise-2.1.0" 37025 + sources."is-redirect-1.0.0" 37026 + sources."is-retry-allowed-1.1.0" 37027 + sources."is-stream-1.1.0" 35335 37028 sources."is-wsl-1.1.0" 35336 37029 sources."isarray-1.0.0" 35337 37030 sources."isexe-2.0.0" 35338 - sources."isobject-2.1.0" 35339 - sources."kind-of-3.2.2" 35340 - sources."lazystream-1.0.0" 37031 + sources."klaw-2.1.1" 37032 + sources."latest-version-3.1.0" 35341 37033 (sources."leek-0.0.24" // { 35342 37034 dependencies = [ 35343 37035 sources."debug-2.6.9" 35344 37036 ]; 35345 37037 }) 35346 - sources."livereload-js-2.3.0" 37038 + sources."levn-0.3.0" 35347 37039 sources."lodash-4.17.10" 35348 37040 sources."lodash._baseassign-3.2.0" 35349 37041 sources."lodash._basecopy-3.0.1" ··· 35356 37048 sources."lodash.isarray-3.0.4" 35357 37049 sources."lodash.keys-3.1.2" 35358 37050 sources."lodash.restparam-3.6.1" 37051 + sources."lowercase-keys-1.0.1" 35359 37052 sources."lru-cache-4.1.3" 35360 37053 sources."macos-release-1.1.0" 35361 - sources."math-random-1.0.1" 35362 - sources."media-typer-0.3.0" 35363 - sources."merge-descriptors-1.0.1" 37054 + sources."make-dir-1.3.0" 35364 37055 sources."methods-1.1.2" 35365 - sources."micromatch-2.3.11" 35366 37056 sources."mime-1.6.0" 35367 - sources."mime-db-1.33.0" 35368 - sources."mime-types-2.1.18" 37057 + sources."mime-db-1.35.0" 37058 + sources."mime-types-2.1.19" 35369 37059 sources."mimic-fn-1.2.0" 35370 37060 sources."minimatch-3.0.4" 35371 37061 sources."minimist-1.2.0" ··· 35382 37072 }) 35383 37073 sources."ms-2.0.0" 35384 37074 sources."mute-stream-0.0.7" 35385 - sources."nan-2.10.0" 35386 37075 sources."ncp-2.0.0" 35387 - sources."negotiator-0.6.1" 35388 37076 sources."netmask-1.0.6" 35389 - sources."normalize-path-2.1.1" 35390 - sources."object-assign-4.1.1" 35391 - sources."object.omit-2.0.1" 35392 - sources."on-finished-2.3.0" 37077 + sources."npm-run-path-2.0.2" 35393 37078 sources."once-1.4.0" 35394 37079 sources."onetime-2.0.1" 35395 37080 sources."opn-5.3.0" 37081 + sources."optionator-0.8.2" 35396 37082 sources."os-name-2.0.1" 35397 37083 sources."os-tmpdir-1.0.2" 35398 - sources."parse-glob-3.0.4" 35399 - sources."parseurl-1.3.2" 37084 + sources."p-finally-1.0.0" 37085 + sources."pac-proxy-agent-2.0.2" 37086 + sources."pac-resolver-3.0.0" 37087 + sources."package-json-4.0.1" 35400 37088 sources."path-is-absolute-1.0.1" 35401 - sources."path-to-regexp-0.1.7" 35402 - sources."preserve-0.2.0" 37089 + sources."path-is-inside-1.0.2" 37090 + sources."path-key-2.0.1" 37091 + sources."pify-3.0.0" 37092 + sources."prelude-ls-1.1.2" 37093 + sources."prepend-http-1.0.4" 35403 37094 sources."process-nextick-args-2.0.0" 35404 - sources."proxy-addr-2.0.3" 37095 + sources."proxy-agent-2.3.1" 37096 + sources."proxy-from-env-1.0.0" 35405 37097 sources."pseudomap-1.0.2" 35406 37098 sources."qs-6.5.2" 35407 - (sources."randomatic-3.0.0" // { 35408 - dependencies = [ 35409 - sources."is-number-4.0.0" 35410 - sources."kind-of-6.0.2" 35411 - ]; 35412 - }) 35413 - sources."range-parser-1.2.0" 35414 37099 sources."raw-body-2.3.3" 37100 + sources."rc-1.2.8" 35415 37101 sources."readable-stream-2.3.6" 35416 - sources."readdirp-2.1.0" 35417 - sources."regex-cache-0.4.4" 35418 - sources."remove-trailing-separator-1.1.0" 35419 - sources."repeat-element-1.1.2" 35420 - sources."repeat-string-1.6.1" 35421 - sources."requires-port-1.0.0" 37102 + sources."registry-auth-token-3.3.2" 37103 + sources."registry-url-3.1.0" 35422 37104 sources."restore-cursor-2.0.0" 35423 37105 sources."rimraf-2.6.2" 35424 37106 sources."rsvp-3.6.2" 35425 37107 sources."run-async-2.3.0" 35426 - sources."rx-lite-4.0.8" 35427 - sources."rx-lite-aggregates-4.0.8" 37108 + sources."rxjs-6.2.2" 35428 37109 sources."safe-buffer-5.1.2" 35429 - sources."safe-json-parse-1.0.1" 35430 37110 sources."safer-buffer-2.1.2" 35431 37111 sources."sax-1.1.4" 35432 37112 sources."semver-5.5.0" 35433 - (sources."send-0.16.2" // { 35434 - dependencies = [ 35435 - sources."debug-2.6.9" 35436 - sources."mime-1.4.1" 35437 - sources."statuses-1.4.0" 35438 - ]; 35439 - }) 35440 - sources."serve-static-1.13.2" 35441 - sources."set-immediate-shim-1.0.1" 37113 + sources."semver-diff-2.1.0" 35442 37114 sources."setprototypeof-1.1.0" 35443 37115 sources."shebang-command-1.2.0" 35444 37116 sources."shebang-regex-1.0.0" 35445 37117 sources."signal-exit-3.0.2" 35446 37118 sources."slice-ansi-1.0.0" 37119 + sources."smart-buffer-1.1.15" 37120 + sources."socks-1.1.10" 37121 + sources."socks-proxy-agent-3.0.1" 37122 + sources."source-map-0.6.1" 37123 + sources."split2-2.2.0" 35447 37124 sources."ssh-config-1.1.3" 35448 37125 sources."statuses-1.5.0" 35449 - sources."string-template-0.2.1" 37126 + sources."stream-combiner2-1.1.1" 35450 37127 sources."string-width-2.1.1" 35451 37128 sources."string_decoder-1.1.1" 35452 37129 sources."strip-ansi-4.0.0" 37130 + sources."strip-eof-1.0.0" 37131 + sources."strip-json-comments-2.0.1" 35453 37132 sources."superagent-3.8.3" 37133 + sources."superagent-proxy-1.0.3" 35454 37134 sources."supports-color-5.4.0" 35455 - (sources."tar-4.4.4" // { 37135 + (sources."tar-4.4.6" // { 35456 37136 dependencies = [ 35457 37137 sources."yallist-3.0.2" 35458 37138 ]; 35459 37139 }) 35460 - sources."tar-stream-1.6.1" 37140 + sources."term-size-1.2.0" 35461 37141 sources."through-2.3.8" 35462 - sources."tiny-lr-1.1.1" 37142 + sources."through2-2.0.3" 37143 + sources."thunkify-2.1.2" 37144 + sources."timed-out-4.0.1" 35463 37145 sources."tmp-0.0.33" 35464 - sources."to-buffer-1.1.1" 35465 37146 sources."tslib-1.9.3" 35466 - sources."type-is-1.6.16" 35467 - sources."ultron-1.1.1" 37147 + sources."type-check-0.3.2" 37148 + sources."unique-string-1.0.0" 35468 37149 sources."unpipe-1.0.0" 35469 37150 sources."untildify-3.0.3" 37151 + sources."unzip-response-2.0.1" 37152 + sources."update-notifier-2.5.0" 37153 + sources."url-parse-lax-1.0.0" 35470 37154 sources."util-deprecate-1.0.2" 35471 - sources."utils-merge-1.0.1" 35472 37155 sources."uuid-3.3.2" 35473 - sources."vary-1.1.2" 35474 - sources."websocket-driver-0.7.0" 35475 - sources."websocket-extensions-0.1.3" 35476 37156 sources."which-1.3.1" 37157 + sources."widest-line-2.0.0" 35477 37158 sources."win-release-1.1.1" 37159 + sources."wordwrap-1.0.0" 35478 37160 sources."wrap-ansi-3.0.1" 35479 37161 sources."wrappy-1.0.2" 35480 - sources."ws-3.3.3" 37162 + sources."write-file-atomic-2.3.0" 37163 + sources."ws-6.0.0" 37164 + sources."xdg-basedir-3.0.0" 37165 + sources."xregexp-2.0.0" 35481 37166 sources."xtend-4.0.1" 35482 37167 sources."yallist-2.1.2" 35483 - sources."zip-stream-1.2.0" 35484 37168 ]; 35485 37169 buildInputs = globalBuildInputs; 35486 37170 meta = { ··· 35494 37178 ios-deploy = nodeEnv.buildNodePackage { 35495 37179 name = "ios-deploy"; 35496 37180 packageName = "ios-deploy"; 35497 - version = "1.9.2"; 37181 + version = "1.9.3"; 35498 37182 src = fetchurl { 35499 - url = "https://registry.npmjs.org/ios-deploy/-/ios-deploy-1.9.2.tgz"; 35500 - sha1 = "c2f4c46b06db4771939b29f980c7c1a8906b47a2"; 37183 + url = "https://registry.npmjs.org/ios-deploy/-/ios-deploy-1.9.3.tgz"; 37184 + sha512 = "i/8DxXzcL2feqqL6DjUfjqUHyWVmHYNkzZFTyf6yoC4glrI3jQ+8Hhg63vzw/5OoFXN7OyXqjkshAj9c1EsVSw=="; 35501 37185 }; 35502 37186 buildInputs = globalBuildInputs; 35503 37187 meta = { 35504 37188 description = "launch iOS apps iOS devices from the command line (Xcode 7)"; 35505 - homepage = "https://github.com/phonegap/ios-deploy#readme"; 37189 + homepage = "https://github.com/ios-control/ios-deploy#readme"; 35506 37190 license = "GPLv3"; 35507 37191 }; 35508 37192 production = true; ··· 35669 37353 javascript-typescript-langserver = nodeEnv.buildNodePackage { 35670 37354 name = "javascript-typescript-langserver"; 35671 37355 packageName = "javascript-typescript-langserver"; 35672 - version = "2.10.0"; 37356 + version = "2.9.4"; 35673 37357 src = fetchurl { 35674 - url = "https://registry.npmjs.org/javascript-typescript-langserver/-/javascript-typescript-langserver-2.10.0.tgz"; 35675 - sha512 = "y8IOlo8Ml/CFuvr8pFdaMpNV43W5eZhTl5UZuRxKGxX08PSi3OZsYjr5gMYsKT5ZzMNk/U+MqZXJNh6Ccm30hQ=="; 37358 + url = "https://registry.npmjs.org/javascript-typescript-langserver/-/javascript-typescript-langserver-2.9.4.tgz"; 37359 + sha512 = "kJTsyRj6KZZ5yVvoFyaxMkBOpiJbQeaFXihDJqWlKIYLwBL1SbkBdFOWPbfY9hf7N7gT6ifsqAhYberaqBZ66A=="; 35676 37360 }; 35677 37361 dependencies = [ 35678 37362 sources."ansi-color-0.2.1" ··· 35731 37415 sources."typescript-2.8.3" 35732 37416 sources."uuid-3.3.2" 35733 37417 sources."vscode-jsonrpc-3.6.2" 35734 - sources."vscode-languageserver-4.3.0" 35735 - sources."vscode-languageserver-protocol-3.9.0" 35736 - sources."vscode-languageserver-types-3.9.0" 37418 + sources."vscode-languageserver-4.4.0" 37419 + sources."vscode-languageserver-protocol-3.10.0" 37420 + sources."vscode-languageserver-types-3.10.0" 35737 37421 sources."vscode-uri-1.0.5" 35738 37422 sources."wrappy-1.0.2" 35739 37423 sources."xorshift-0.2.1" ··· 35814 37498 jshint = nodeEnv.buildNodePackage { 35815 37499 name = "jshint"; 35816 37500 packageName = "jshint"; 35817 - version = "2.9.5"; 37501 + version = "2.9.6"; 35818 37502 src = fetchurl { 35819 - url = "https://registry.npmjs.org/jshint/-/jshint-2.9.5.tgz"; 35820 - sha1 = "1e7252915ce681b40827ee14248c46d34e9aa62c"; 37503 + url = "https://registry.npmjs.org/jshint/-/jshint-2.9.6.tgz"; 37504 + sha512 = "KO9SIAKTlJQOM4lE64GQUtGBRpTOuvbrRrSZw3AhUxMNG266nX9hK2cKA4SBhXOj0irJGyNyGSLT62HGOVDEOA=="; 35821 37505 }; 35822 37506 dependencies = [ 37507 + sources."ajv-5.5.2" 37508 + sources."asn1-0.2.4" 37509 + sources."assert-plus-1.0.0" 37510 + sources."async-1.0.0" 37511 + sources."asynckit-0.4.0" 37512 + sources."aws-sign2-0.7.0" 37513 + sources."aws4-1.7.0" 35823 37514 sources."balanced-match-1.0.0" 37515 + sources."bcrypt-pbkdf-1.0.2" 35824 37516 sources."brace-expansion-1.1.11" 37517 + sources."buffer-from-1.1.1" 37518 + sources."caseless-0.12.0" 35825 37519 sources."cli-1.0.1" 37520 + sources."co-4.6.0" 37521 + sources."colors-1.0.3" 37522 + sources."combined-stream-1.0.6" 35826 37523 sources."concat-map-0.0.1" 37524 + (sources."concat-stream-1.6.2" // { 37525 + dependencies = [ 37526 + sources."isarray-1.0.0" 37527 + sources."readable-stream-2.3.6" 37528 + sources."string_decoder-1.1.1" 37529 + ]; 37530 + }) 35827 37531 sources."console-browserify-1.1.0" 35828 37532 sources."core-util-is-1.0.2" 37533 + sources."cycle-1.0.3" 37534 + sources."dashdash-1.14.1" 35829 37535 sources."date-now-0.1.4" 37536 + sources."debug-2.6.9" 37537 + sources."delayed-stream-1.0.0" 35830 37538 (sources."dom-serializer-0.1.0" // { 35831 37539 dependencies = [ 35832 37540 sources."domelementtype-1.1.3" ··· 35836 37544 sources."domelementtype-1.3.0" 35837 37545 sources."domhandler-2.3.0" 35838 37546 sources."domutils-1.5.1" 37547 + sources."ecc-jsbn-0.1.2" 35839 37548 sources."entities-1.0.0" 37549 + sources."es6-promise-4.2.4" 35840 37550 sources."exit-0.1.2" 37551 + sources."extend-3.0.2" 37552 + sources."extract-zip-1.6.7" 37553 + sources."extsprintf-1.3.0" 37554 + sources."eyes-0.1.8" 37555 + sources."fast-deep-equal-1.1.0" 37556 + sources."fast-json-stable-stringify-2.0.0" 37557 + sources."fd-slicer-1.0.1" 37558 + sources."forever-agent-0.6.1" 37559 + sources."form-data-2.3.2" 37560 + sources."fs-extra-1.0.0" 35841 37561 sources."fs.realpath-1.0.0" 37562 + sources."getpass-0.1.7" 35842 37563 sources."glob-7.1.2" 37564 + sources."graceful-fs-4.1.11" 37565 + sources."har-schema-2.0.0" 37566 + sources."har-validator-5.0.3" 37567 + sources."hasha-2.2.0" 35843 37568 sources."htmlparser2-3.8.3" 37569 + sources."http-signature-1.2.0" 35844 37570 sources."inflight-1.0.6" 35845 37571 sources."inherits-2.0.3" 37572 + sources."is-stream-1.1.0" 37573 + sources."is-typedarray-1.0.0" 35846 37574 sources."isarray-0.0.1" 35847 - sources."lodash-3.7.0" 37575 + sources."isexe-2.0.0" 37576 + sources."isstream-0.1.2" 37577 + sources."jsbn-0.1.1" 37578 + sources."json-schema-0.2.3" 37579 + sources."json-schema-traverse-0.3.1" 37580 + sources."json-stringify-safe-5.0.1" 37581 + sources."jsonfile-2.4.0" 37582 + sources."jsprim-1.4.1" 37583 + sources."kew-0.7.0" 37584 + sources."klaw-1.3.1" 37585 + sources."lodash-4.17.10" 37586 + sources."mime-db-1.35.0" 37587 + sources."mime-types-2.1.19" 35848 37588 sources."minimatch-3.0.4" 37589 + sources."minimist-0.0.8" 37590 + sources."mkdirp-0.5.1" 37591 + sources."ms-2.0.0" 37592 + sources."oauth-sign-0.8.2" 35849 37593 sources."once-1.4.0" 35850 37594 sources."path-is-absolute-1.0.1" 37595 + sources."pend-1.2.0" 37596 + sources."performance-now-2.1.0" 37597 + sources."phantom-4.0.12" 37598 + sources."phantomjs-prebuilt-2.1.16" 37599 + sources."pinkie-2.0.4" 37600 + sources."pinkie-promise-2.0.1" 37601 + sources."process-nextick-args-2.0.0" 37602 + sources."progress-1.1.8" 37603 + sources."punycode-1.4.1" 37604 + sources."qs-6.5.2" 35851 37605 sources."readable-stream-1.1.14" 37606 + sources."request-2.87.0" 37607 + sources."request-progress-2.0.1" 37608 + sources."safe-buffer-5.1.2" 37609 + sources."safer-buffer-2.1.2" 35852 37610 sources."shelljs-0.3.0" 37611 + sources."split-1.0.1" 37612 + sources."sshpk-1.14.2" 37613 + sources."stack-trace-0.0.10" 35853 37614 sources."string_decoder-0.10.31" 35854 37615 sources."strip-json-comments-1.0.4" 37616 + sources."throttleit-1.0.0" 37617 + sources."through-2.3.8" 37618 + sources."tough-cookie-2.3.4" 37619 + sources."tunnel-agent-0.6.0" 37620 + sources."tweetnacl-0.14.5" 37621 + sources."typedarray-0.0.6" 37622 + sources."unicode-5.2.0-0.7.5" 37623 + sources."util-deprecate-1.0.2" 37624 + sources."uuid-3.3.2" 37625 + sources."verror-1.10.0" 37626 + sources."which-1.3.1" 37627 + sources."winston-2.4.3" 35855 37628 sources."wrappy-1.0.2" 37629 + sources."yauzl-2.4.1" 35856 37630 ]; 35857 37631 buildInputs = globalBuildInputs; 35858 37632 meta = { ··· 35980 37754 json-refs = nodeEnv.buildNodePackage { 35981 37755 name = "json-refs"; 35982 37756 packageName = "json-refs"; 35983 - version = "3.0.5"; 37757 + version = "3.0.6"; 35984 37758 src = fetchurl { 35985 - url = "https://registry.npmjs.org/json-refs/-/json-refs-3.0.5.tgz"; 35986 - sha512 = "PxRt8e2ktX3ktNSGqfH+6ghfwXUjQ9pS/asLBSS4CSf1Jl4811WCvZL2YPvmdaWzi7LBAd/Y6lVg1BMnph51nw=="; 37759 + url = "https://registry.npmjs.org/json-refs/-/json-refs-3.0.6.tgz"; 37760 + sha512 = "umW/uhtvq2YO+MRtHXUiSIlaoslME3xjnpQJ5rkCQoF5RpDfuBqkbO22W3H4Q16VDOTECKHceqYQzef7sT/Hig=="; 35987 37761 }; 35988 37762 dependencies = [ 35989 37763 sources."argparse-1.0.10" ··· 35996 37770 sources."debug-3.1.0" 35997 37771 sources."delayed-stream-1.0.0" 35998 37772 sources."esprima-4.0.1" 35999 - sources."extend-3.0.1" 37773 + sources."extend-3.0.2" 36000 37774 sources."form-data-2.3.2" 36001 37775 sources."formidable-1.2.1" 36002 37776 sources."graphlib-2.1.5" ··· 36006 37780 sources."lodash-4.17.10" 36007 37781 sources."methods-1.1.2" 36008 37782 sources."mime-1.6.0" 36009 - sources."mime-db-1.33.0" 36010 - sources."mime-types-2.1.18" 37783 + sources."mime-db-1.35.0" 37784 + sources."mime-types-2.1.19" 36011 37785 sources."ms-2.0.0" 36012 37786 sources."native-promise-only-0.8.1" 36013 37787 sources."path-loader-1.0.4" ··· 36047 37821 sources."ansi-regex-3.0.0" 36048 37822 sources."ansi-styles-3.2.1" 36049 37823 sources."array-flatten-1.1.1" 36050 - sources."asn1-0.2.3" 37824 + sources."asn1-0.2.4" 36051 37825 sources."assert-plus-1.0.0" 36052 37826 sources."asynckit-0.4.0" 36053 37827 sources."aws-sign2-0.7.0" 36054 37828 sources."aws4-1.7.0" 36055 - sources."basic-auth-2.0.0" 37829 + (sources."basic-auth-2.0.0" // { 37830 + dependencies = [ 37831 + sources."safe-buffer-5.1.1" 37832 + ]; 37833 + }) 36056 37834 sources."bcrypt-pbkdf-1.0.2" 36057 37835 sources."body-parser-1.18.3" 36058 37836 sources."boxen-1.3.0" ··· 36069 37847 sources."color-convert-1.9.2" 36070 37848 sources."color-name-1.1.1" 36071 37849 sources."combined-stream-1.0.6" 36072 - (sources."compressible-2.0.14" // { 36073 - dependencies = [ 36074 - sources."mime-db-1.35.0" 36075 - ]; 36076 - }) 36077 - sources."compression-1.7.2" 37850 + sources."compressible-2.0.14" 37851 + sources."compression-1.7.3" 36078 37852 sources."configstore-3.1.2" 36079 37853 sources."connect-pause-0.1.1" 36080 37854 sources."content-disposition-0.5.2" ··· 36095 37869 sources."destroy-1.0.4" 36096 37870 sources."dot-prop-4.2.0" 36097 37871 sources."duplexer3-0.1.4" 36098 - sources."ecc-jsbn-0.1.1" 37872 + sources."ecc-jsbn-0.1.2" 36099 37873 sources."ee-first-1.1.1" 36100 37874 sources."encodeurl-1.0.2" 36101 37875 sources."errorhandler-1.5.0" ··· 36115 37889 sources."iconv-lite-0.4.19" 36116 37890 sources."qs-6.5.1" 36117 37891 sources."raw-body-2.3.2" 37892 + sources."safe-buffer-5.1.1" 36118 37893 sources."statuses-1.4.0" 36119 37894 ]; 36120 37895 }) ··· 36123 37898 sources."path-to-regexp-1.7.0" 36124 37899 ]; 36125 37900 }) 36126 - sources."extend-3.0.1" 37901 + sources."extend-3.0.2" 36127 37902 sources."extsprintf-1.3.0" 36128 37903 sources."fast-deep-equal-1.1.0" 36129 37904 sources."fast-json-stable-stringify-2.0.0" ··· 36154 37929 sources."inherits-2.0.3" 36155 37930 sources."ini-1.3.5" 36156 37931 sources."invert-kv-1.0.0" 36157 - sources."ipaddr.js-1.6.0" 37932 + sources."ipaddr.js-1.8.0" 36158 37933 sources."is-ci-1.1.0" 36159 37934 sources."is-fullwidth-code-point-2.0.0" 36160 37935 sources."is-installed-globally-0.1.0" ··· 36169 37944 sources."isarray-0.0.1" 36170 37945 sources."isexe-2.0.0" 36171 37946 sources."isstream-0.1.2" 36172 - sources."jju-1.3.0" 37947 + sources."jju-1.4.0" 36173 37948 sources."jsbn-0.1.1" 36174 37949 sources."json-parse-helpfulerror-1.0.3" 36175 37950 sources."json-schema-0.2.3" ··· 36191 37966 sources."method-override-2.3.10" 36192 37967 sources."methods-1.1.2" 36193 37968 sources."mime-1.4.1" 36194 - sources."mime-db-1.33.0" 36195 - sources."mime-types-2.1.18" 37969 + sources."mime-db-1.35.0" 37970 + sources."mime-types-2.1.19" 36196 37971 sources."mimic-fn-1.2.0" 36197 37972 sources."minimist-1.2.0" 36198 37973 sources."morgan-1.9.0" ··· 36221 37996 sources."please-upgrade-node-3.1.1" 36222 37997 sources."pluralize-7.0.0" 36223 37998 sources."prepend-http-1.0.4" 36224 - sources."proxy-addr-2.0.3" 37999 + sources."proxy-addr-2.0.4" 36225 38000 sources."pseudomap-1.0.2" 36226 38001 sources."punycode-1.4.1" 36227 38002 sources."qs-6.5.2" ··· 36233 38008 sources."request-2.87.0" 36234 38009 sources."require-directory-2.1.1" 36235 38010 sources."require-main-filename-1.0.1" 36236 - sources."safe-buffer-5.1.1" 38011 + sources."safe-buffer-5.1.2" 36237 38012 sources."safer-buffer-2.1.2" 36238 38013 sources."semver-5.5.0" 36239 38014 sources."semver-compare-1.0.0" ··· 36325 38100 karma = nodeEnv.buildNodePackage { 36326 38101 name = "karma"; 36327 38102 packageName = "karma"; 36328 - version = "2.0.4"; 38103 + version = "2.0.5"; 36329 38104 src = fetchurl { 36330 - url = "https://registry.npmjs.org/karma/-/karma-2.0.4.tgz"; 36331 - sha512 = "32yhTwoi6BZgJZhR78GwhzyFABbYG/1WwQqYgY7Vh96Demvua2jM3+FyRltIMTUH/Kd5xaQvDw2L7jTvkYFeXg=="; 38105 + url = "https://registry.npmjs.org/karma/-/karma-2.0.5.tgz"; 38106 + sha512 = "rECezBeY7mjzGUWhFlB7CvPHgkHJLXyUmWg+6vHCEsdWNUTnmiS6jRrIMcJEWgU2DUGZzGWG0bTRVky8fsDTOA=="; 36332 38107 }; 36333 38108 dependencies = [ 36334 38109 sources."accepts-1.3.5" ··· 36352 38127 sources."array-slice-0.2.3" 36353 38128 sources."array-unique-0.3.2" 36354 38129 sources."arraybuffer.slice-0.0.7" 36355 - sources."asn1-0.2.3" 38130 + sources."asn1-0.2.4" 36356 38131 sources."assert-plus-1.0.0" 36357 38132 sources."assign-symbols-1.0.0" 36358 38133 sources."ast-types-0.11.5" ··· 36399 38174 sources."is-extendable-0.1.1" 36400 38175 ]; 36401 38176 }) 38177 + sources."buffer-alloc-1.2.0" 38178 + sources."buffer-alloc-unsafe-1.1.0" 38179 + sources."buffer-fill-1.0.0" 36402 38180 sources."buffer-more-ints-0.0.2" 36403 38181 sources."buildmail-4.0.1" 36404 38182 sources."bytes-3.0.0" ··· 36427 38205 }) 36428 38206 sources."co-4.6.0" 36429 38207 sources."collection-visit-1.0.0" 36430 - sources."colors-1.3.0" 38208 + sources."colors-1.3.1" 36431 38209 sources."combine-lists-1.0.1" 36432 38210 sources."combined-stream-1.0.6" 36433 38211 sources."commander-2.16.0" ··· 36456 38234 sources."di-0.0.1" 36457 38235 sources."dom-serialize-2.2.1" 36458 38236 sources."double-ended-queue-2.1.0-0" 36459 - sources."ecc-jsbn-0.1.1" 38237 + sources."ecc-jsbn-0.1.2" 36460 38238 sources."ee-first-1.1.1" 36461 38239 sources."encodeurl-1.0.2" 36462 38240 (sources."engine.io-3.1.5" // { ··· 36511 38289 sources."repeat-string-0.2.2" 36512 38290 ]; 36513 38291 }) 36514 - sources."extend-3.0.1" 38292 + sources."extend-3.0.2" 36515 38293 sources."extend-shallow-3.0.2" 36516 38294 (sources."extglob-2.0.4" // { 36517 38295 dependencies = [ ··· 36536 38314 sources."statuses-1.3.1" 36537 38315 ]; 36538 38316 }) 36539 - (sources."follow-redirects-1.5.1" // { 38317 + (sources."follow-redirects-1.5.2" // { 36540 38318 dependencies = [ 36541 38319 sources."debug-3.1.0" 36542 38320 ]; ··· 36626 38404 sources."is-typedarray-1.0.0" 36627 38405 sources."is-windows-1.0.2" 36628 38406 sources."isarray-1.0.0" 36629 - sources."isbinaryfile-3.0.2" 38407 + sources."isbinaryfile-3.0.3" 36630 38408 sources."isobject-3.0.1" 36631 38409 sources."isstream-0.1.2" 36632 38410 sources."jsbn-0.1.1" ··· 36676 38454 sources."media-typer-0.3.0" 36677 38455 sources."micromatch-3.1.10" 36678 38456 sources."mime-1.6.0" 36679 - sources."mime-db-1.33.0" 36680 - sources."mime-types-2.1.18" 38457 + sources."mime-db-1.35.0" 38458 + sources."mime-types-2.1.19" 36681 38459 sources."minimatch-3.0.4" 36682 38460 sources."minimist-0.0.8" 36683 38461 sources."mixin-deep-1.3.1" ··· 36884 38662 sources."to-regex-3.0.2" 36885 38663 sources."to-regex-range-2.1.1" 36886 38664 sources."tough-cookie-2.3.4" 36887 - sources."tsscmp-1.0.5" 38665 + sources."tsscmp-1.0.6" 36888 38666 sources."tunnel-agent-0.6.0" 36889 38667 sources."tweetnacl-0.14.5" 36890 38668 sources."type-check-0.3.2" ··· 36961 38739 sources."body-parser-1.13.3" 36962 38740 sources."bytes-2.1.0" 36963 38741 sources."commander-2.6.0" 36964 - (sources."compressible-2.0.14" // { 36965 - dependencies = [ 36966 - sources."mime-db-1.35.0" 36967 - ]; 36968 - }) 38742 + sources."compressible-2.0.14" 36969 38743 sources."compression-1.5.2" 36970 38744 sources."connect-2.30.2" 36971 38745 sources."connect-restreamer-1.0.3" ··· 37017 38791 }) 37018 38792 sources."methods-1.1.2" 37019 38793 sources."mime-1.3.4" 37020 - sources."mime-db-1.33.0" 37021 - sources."mime-types-2.1.18" 38794 + sources."mime-db-1.35.0" 38795 + sources."mime-types-2.1.19" 37022 38796 sources."minimist-0.0.8" 37023 38797 sources."mkdirp-0.5.1" 37024 38798 sources."morgan-1.6.1" ··· 37128 38902 sources."define-properties-1.1.2" 37129 38903 sources."duplexify-3.6.0" 37130 38904 sources."end-of-stream-1.4.1" 37131 - sources."extend-3.0.1" 38905 + sources."extend-3.0.2" 37132 38906 sources."flush-write-stream-1.0.3" 37133 38907 sources."foreach-2.0.5" 37134 38908 sources."fs-mkdirp-stream-1.0.0" ··· 37215 38989 sources."ajv-5.5.2" 37216 38990 sources."ansi-regex-2.1.1" 37217 38991 sources."ansi-styles-3.2.0" 37218 - sources."asn1-0.2.3" 38992 + sources."asn1-0.2.4" 37219 38993 sources."assert-plus-1.0.0" 37220 38994 sources."async-1.5.2" 37221 38995 sources."asynckit-0.4.0" ··· 37242 39016 sources."code-point-at-1.1.0" 37243 39017 sources."color-convert-1.9.2" 37244 39018 sources."color-name-1.1.1" 37245 - sources."colors-1.3.0" 39019 + sources."colors-1.3.1" 37246 39020 sources."combined-stream-1.0.6" 37247 39021 sources."concat-map-0.0.1" 37248 39022 sources."core-util-is-1.0.2" ··· 37270 39044 sources."domelementtype-1.3.0" 37271 39045 sources."domhandler-2.3.0" 37272 39046 sources."domutils-1.5.1" 37273 - sources."ecc-jsbn-0.1.1" 39047 + sources."ecc-jsbn-0.1.2" 37274 39048 sources."entities-1.1.1" 37275 39049 sources."escape-string-regexp-1.0.5" 37276 39050 sources."escodegen-1.11.0" ··· 37278 39052 sources."estraverse-4.2.0" 37279 39053 sources."esutils-2.0.2" 37280 39054 sources."execa-0.7.0" 37281 - sources."extend-3.0.1" 39055 + sources."extend-3.0.2" 37282 39056 sources."extsprintf-1.3.0" 37283 39057 sources."eyes-0.1.8" 37284 39058 sources."fast-deep-equal-1.1.0" ··· 37328 39102 sources."log-symbols-2.2.0" 37329 39103 sources."lru-cache-4.1.3" 37330 39104 sources."mem-1.1.0" 37331 - sources."mime-db-1.33.0" 37332 - sources."mime-types-2.1.18" 39105 + sources."mime-db-1.35.0" 39106 + sources."mime-types-2.1.19" 37333 39107 sources."mimic-fn-1.2.0" 37334 39108 sources."minimatch-3.0.4" 37335 39109 sources."minimist-0.0.8" ··· 37365 39139 sources."prelude-ls-1.1.2" 37366 39140 sources."prompt-1.0.0" 37367 39141 sources."pseudomap-1.0.2" 37368 - sources."psl-1.1.28" 39142 + sources."psl-1.1.29" 37369 39143 sources."punycode-1.4.1" 37370 39144 sources."qs-6.5.2" 37371 39145 sources."read-1.0.7" ··· 37462 39236 lerna = nodeEnv.buildNodePackage { 37463 39237 name = "lerna"; 37464 39238 packageName = "lerna"; 37465 - version = "2.11.0"; 39239 + version = "3.0.0-rc.0"; 37466 39240 src = fetchurl { 37467 - url = "https://registry.npmjs.org/lerna/-/lerna-2.11.0.tgz"; 37468 - sha512 = "kgM6zwe2P2tR30MYvgiLLW+9buFCm6E7o8HnRlhTgm70WVBvXVhydqv+q/MF2HrVZkCawfVtCfetyQmtd4oHhQ=="; 39241 + url = "https://registry.npmjs.org/lerna/-/lerna-3.0.0-rc.0.tgz"; 39242 + sha512 = "fj5Ku6vGgJAzdnpXWE3Stlgnex9ZfaHBQvMQzts13qZ57cJNCzEq5AQPVOOFWE6qqqiABLQfE5T2+Yg/IEqWNQ=="; 37469 39243 }; 37470 39244 dependencies = [ 39245 + sources."@lerna/add-3.0.0-rc.0" 39246 + sources."@lerna/batch-packages-3.0.0-rc.0" 39247 + sources."@lerna/bootstrap-3.0.0-rc.0" 39248 + sources."@lerna/changed-3.0.0-rc.0" 39249 + sources."@lerna/child-process-3.0.0-rc.0" 39250 + sources."@lerna/clean-3.0.0-rc.0" 39251 + sources."@lerna/cli-3.0.0-rc.0" 39252 + sources."@lerna/collect-updates-3.0.0-rc.0" 39253 + sources."@lerna/command-3.0.0-rc.0" 39254 + sources."@lerna/conventional-commits-3.0.0-rc.0" 39255 + sources."@lerna/create-3.0.0-rc.0" 39256 + sources."@lerna/create-symlink-3.0.0-rc.0" 39257 + sources."@lerna/diff-3.0.0-rc.0" 39258 + sources."@lerna/exec-3.0.0-rc.0" 39259 + sources."@lerna/filter-options-3.0.0-rc.0" 39260 + sources."@lerna/filter-packages-3.0.0-rc.0" 39261 + sources."@lerna/get-npm-exec-opts-3.0.0-rc.0" 39262 + sources."@lerna/global-options-3.0.0-rc.0" 39263 + sources."@lerna/import-3.0.0-rc.0" 39264 + sources."@lerna/init-3.0.0-rc.0" 39265 + sources."@lerna/link-3.0.0-rc.0" 39266 + sources."@lerna/list-3.0.0-rc.0" 39267 + sources."@lerna/npm-conf-3.0.0-rc.0" 39268 + sources."@lerna/npm-dist-tag-3.0.0-rc.0" 39269 + sources."@lerna/npm-install-3.0.0-rc.0" 39270 + sources."@lerna/npm-publish-3.0.0-rc.0" 39271 + sources."@lerna/npm-run-script-3.0.0-rc.0" 39272 + sources."@lerna/output-3.0.0-rc.0" 39273 + sources."@lerna/package-3.0.0-rc.0" 39274 + sources."@lerna/package-graph-3.0.0-rc.0" 39275 + sources."@lerna/project-3.0.0-rc.0" 39276 + sources."@lerna/prompt-3.0.0-rc.0" 39277 + sources."@lerna/publish-3.0.0-rc.0" 39278 + sources."@lerna/resolve-symlink-3.0.0-rc.0" 39279 + sources."@lerna/rimraf-dir-3.0.0-rc.0" 39280 + sources."@lerna/run-3.0.0-rc.0" 39281 + sources."@lerna/run-lifecycle-3.0.0-rc.0" 39282 + sources."@lerna/run-parallel-batches-3.0.0-rc.0" 39283 + sources."@lerna/symlink-binary-3.0.0-rc.0" 39284 + sources."@lerna/symlink-dependencies-3.0.0-rc.0" 39285 + sources."@lerna/validation-error-3.0.0-rc.0" 39286 + sources."@lerna/write-log-file-3.0.0-rc.0" 39287 + sources."@mrmlnc/readdir-enhanced-2.2.1" 39288 + sources."@nodelib/fs.stat-1.1.0" 37471 39289 sources."JSONStream-1.3.3" 37472 - sources."add-stream-1.0.0" 37473 - sources."align-text-0.1.4" 39290 + sources."abbrev-1.1.1" 39291 + sources."ajv-4.11.8" 39292 + (sources."align-text-0.1.4" // { 39293 + dependencies = [ 39294 + sources."kind-of-3.2.2" 39295 + ]; 39296 + }) 37474 39297 sources."amdefine-1.0.1" 37475 39298 sources."ansi-escapes-3.1.0" 37476 - sources."ansi-regex-2.1.1" 39299 + sources."ansi-regex-3.0.0" 37477 39300 sources."ansi-styles-3.2.1" 37478 39301 sources."aproba-1.2.0" 37479 39302 sources."are-we-there-yet-1.1.5" 39303 + sources."argparse-1.0.10" 39304 + sources."arr-diff-4.0.0" 39305 + sources."arr-flatten-1.1.0" 39306 + sources."arr-union-3.1.0" 39307 + sources."array-differ-1.0.0" 37480 39308 sources."array-find-index-1.0.2" 37481 39309 sources."array-ify-1.0.0" 37482 39310 sources."array-union-1.0.2" 37483 39311 sources."array-uniq-1.0.3" 39312 + sources."array-unique-0.3.2" 37484 39313 sources."arrify-1.0.1" 39314 + sources."asap-2.0.6" 39315 + sources."asn1-0.2.4" 39316 + sources."assert-plus-0.2.0" 39317 + sources."assign-symbols-1.0.0" 37485 39318 sources."async-1.5.2" 39319 + sources."asynckit-0.4.0" 39320 + sources."atob-2.1.1" 39321 + sources."aws-sign2-0.6.0" 39322 + sources."aws4-1.7.0" 37486 39323 sources."balanced-match-1.0.0" 39324 + (sources."base-0.11.2" // { 39325 + dependencies = [ 39326 + sources."define-property-1.0.0" 39327 + ]; 39328 + }) 39329 + sources."bcrypt-pbkdf-1.0.2" 39330 + sources."block-stream-0.0.9" 39331 + sources."boom-2.10.1" 37487 39332 sources."brace-expansion-1.1.11" 37488 - sources."buffer-from-1.1.0" 37489 - sources."builtin-modules-1.1.1" 37490 - sources."byline-5.0.0" 37491 - sources."camelcase-1.2.1" 37492 - (sources."camelcase-keys-2.1.0" // { 39333 + (sources."braces-2.3.2" // { 37493 39334 dependencies = [ 37494 - sources."camelcase-2.1.1" 39335 + sources."extend-shallow-2.0.1" 37495 39336 ]; 37496 39337 }) 39338 + sources."buffer-from-1.1.1" 39339 + sources."builtin-modules-1.1.1" 39340 + sources."builtins-1.0.3" 39341 + sources."byline-5.0.0" 39342 + sources."cache-base-1.0.1" 39343 + sources."call-me-maybe-1.0.1" 39344 + sources."camelcase-4.1.0" 39345 + sources."camelcase-keys-4.2.0" 37497 39346 sources."capture-stack-trace-1.0.0" 39347 + sources."caseless-0.12.0" 37498 39348 sources."center-align-0.1.3" 37499 39349 sources."chalk-2.4.1" 37500 39350 sources."chardet-0.4.2" 37501 39351 sources."ci-info-1.1.3" 39352 + (sources."class-utils-0.3.6" // { 39353 + dependencies = [ 39354 + sources."define-property-0.2.5" 39355 + (sources."is-accessor-descriptor-0.1.6" // { 39356 + dependencies = [ 39357 + sources."kind-of-3.2.2" 39358 + ]; 39359 + }) 39360 + (sources."is-data-descriptor-0.1.4" // { 39361 + dependencies = [ 39362 + sources."kind-of-3.2.2" 39363 + ]; 39364 + }) 39365 + sources."is-descriptor-0.1.6" 39366 + sources."kind-of-5.1.0" 39367 + ]; 39368 + }) 37502 39369 sources."cli-cursor-2.1.0" 37503 39370 sources."cli-width-2.2.0" 37504 39371 (sources."cliui-2.1.0" // { ··· 37508 39375 }) 37509 39376 sources."clone-1.0.4" 37510 39377 sources."cmd-shim-2.0.2" 39378 + sources."co-4.6.0" 37511 39379 sources."code-point-at-1.1.0" 39380 + sources."collection-visit-1.0.0" 37512 39381 sources."color-convert-1.9.2" 37513 39382 sources."color-name-1.1.1" 37514 - sources."columnify-1.5.4" 37515 - sources."command-join-2.0.0" 37516 - sources."compare-func-1.3.2" 39383 + (sources."columnify-1.5.4" // { 39384 + dependencies = [ 39385 + sources."ansi-regex-2.1.1" 39386 + sources."strip-ansi-3.0.1" 39387 + ]; 39388 + }) 39389 + sources."combined-stream-1.0.6" 39390 + (sources."compare-func-1.3.2" // { 39391 + dependencies = [ 39392 + sources."dot-prop-3.0.0" 39393 + ]; 39394 + }) 39395 + sources."component-emitter-1.2.1" 37517 39396 sources."concat-map-0.0.1" 37518 39397 sources."concat-stream-1.6.2" 39398 + sources."config-chain-1.1.11" 37519 39399 sources."console-control-strings-1.1.0" 37520 - sources."conventional-changelog-1.1.24" 37521 39400 sources."conventional-changelog-angular-1.6.6" 37522 - sources."conventional-changelog-atom-0.2.8" 37523 - sources."conventional-changelog-cli-1.3.22" 37524 - sources."conventional-changelog-codemirror-0.3.8" 37525 39401 (sources."conventional-changelog-core-2.0.11" // { 37526 39402 dependencies = [ 37527 39403 sources."load-json-file-1.1.0" 39404 + sources."parse-json-2.2.0" 39405 + sources."path-type-1.1.0" 39406 + sources."pify-2.3.0" 37528 39407 sources."read-pkg-1.1.0" 39408 + sources."strip-bom-2.0.0" 37529 39409 ]; 37530 39410 }) 37531 - sources."conventional-changelog-ember-0.3.12" 37532 - sources."conventional-changelog-eslint-1.0.9" 37533 - sources."conventional-changelog-express-0.3.6" 37534 - sources."conventional-changelog-jquery-0.1.0" 37535 - sources."conventional-changelog-jscs-0.1.0" 37536 - sources."conventional-changelog-jshint-0.3.8" 37537 39411 sources."conventional-changelog-preset-loader-1.1.8" 37538 39412 sources."conventional-changelog-writer-3.0.9" 37539 39413 sources."conventional-commits-filter-1.1.6" 37540 39414 sources."conventional-commits-parser-2.1.7" 37541 - (sources."conventional-recommended-bump-1.2.1" // { 37542 - dependencies = [ 37543 - sources."meow-3.7.0" 37544 - sources."minimist-1.2.0" 37545 - ]; 37546 - }) 39415 + sources."conventional-recommended-bump-2.0.9" 39416 + sources."copy-descriptor-0.1.1" 37547 39417 sources."core-util-is-1.0.2" 39418 + sources."cosmiconfig-5.0.5" 37548 39419 sources."create-error-class-3.0.2" 37549 - sources."cross-spawn-5.1.0" 39420 + sources."cross-spawn-6.0.5" 39421 + sources."cryptiles-2.0.5" 37550 39422 sources."currently-unhandled-0.4.1" 37551 39423 sources."dargs-4.1.0" 39424 + (sources."dashdash-1.14.1" // { 39425 + dependencies = [ 39426 + sources."assert-plus-1.0.0" 39427 + ]; 39428 + }) 37552 39429 sources."dateformat-3.0.3" 39430 + sources."debug-2.6.9" 39431 + sources."debuglog-1.0.1" 37553 39432 sources."decamelize-1.2.0" 37554 - sources."decamelize-keys-1.1.0" 39433 + (sources."decamelize-keys-1.1.0" // { 39434 + dependencies = [ 39435 + sources."map-obj-1.0.1" 39436 + ]; 39437 + }) 39438 + sources."decode-uri-component-0.2.0" 37555 39439 sources."dedent-0.7.0" 37556 39440 sources."deep-extend-0.6.0" 37557 39441 sources."defaults-1.0.3" 39442 + sources."define-property-2.0.2" 39443 + sources."delayed-stream-1.0.0" 37558 39444 sources."delegates-1.0.0" 37559 39445 sources."detect-indent-5.0.0" 37560 - sources."dot-prop-3.0.0" 39446 + sources."dezalgo-1.0.3" 39447 + sources."dir-glob-2.0.0" 39448 + sources."dot-prop-4.2.0" 37561 39449 sources."duplexer-0.1.1" 37562 39450 sources."duplexer3-0.1.4" 39451 + sources."ecc-jsbn-0.1.2" 37563 39452 sources."error-ex-1.3.2" 37564 39453 sources."escape-string-regexp-1.0.5" 37565 - sources."execa-0.8.0" 39454 + sources."esprima-4.0.1" 39455 + sources."execa-0.10.0" 39456 + (sources."expand-brackets-2.1.4" // { 39457 + dependencies = [ 39458 + sources."define-property-0.2.5" 39459 + sources."extend-shallow-2.0.1" 39460 + (sources."is-accessor-descriptor-0.1.6" // { 39461 + dependencies = [ 39462 + sources."kind-of-3.2.2" 39463 + ]; 39464 + }) 39465 + (sources."is-data-descriptor-0.1.4" // { 39466 + dependencies = [ 39467 + sources."kind-of-3.2.2" 39468 + ]; 39469 + }) 39470 + sources."is-descriptor-0.1.6" 39471 + sources."kind-of-5.1.0" 39472 + ]; 39473 + }) 39474 + sources."extend-3.0.2" 39475 + (sources."extend-shallow-3.0.2" // { 39476 + dependencies = [ 39477 + sources."is-extendable-1.0.1" 39478 + ]; 39479 + }) 37566 39480 sources."external-editor-2.2.0" 39481 + (sources."extglob-2.0.4" // { 39482 + dependencies = [ 39483 + sources."define-property-1.0.0" 39484 + sources."extend-shallow-2.0.1" 39485 + ]; 39486 + }) 39487 + sources."extsprintf-1.3.0" 39488 + (sources."fast-glob-2.2.2" // { 39489 + dependencies = [ 39490 + sources."is-glob-4.0.0" 39491 + ]; 39492 + }) 37567 39493 sources."figures-2.0.0" 39494 + (sources."fill-range-4.0.0" // { 39495 + dependencies = [ 39496 + sources."extend-shallow-2.0.1" 39497 + ]; 39498 + }) 37568 39499 sources."find-up-2.1.0" 37569 - sources."fs-extra-4.0.3" 39500 + sources."for-in-1.0.2" 39501 + sources."forever-agent-0.6.1" 39502 + sources."form-data-2.1.4" 39503 + sources."fragment-cache-0.2.1" 39504 + sources."fs-extra-6.0.1" 37570 39505 sources."fs.realpath-1.0.0" 39506 + sources."fstream-1.0.11" 37571 39507 (sources."gauge-2.7.4" // { 37572 39508 dependencies = [ 39509 + sources."ansi-regex-2.1.1" 37573 39510 sources."is-fullwidth-code-point-1.0.0" 37574 39511 sources."string-width-1.0.2" 39512 + sources."strip-ansi-3.0.1" 37575 39513 ]; 37576 39514 }) 37577 39515 sources."get-caller-file-1.0.3" 37578 39516 (sources."get-pkg-repo-1.4.0" // { 37579 39517 dependencies = [ 39518 + sources."camelcase-2.1.1" 39519 + sources."camelcase-keys-2.1.0" 39520 + sources."indent-string-2.1.0" 39521 + sources."map-obj-1.0.1" 37580 39522 sources."meow-3.7.0" 37581 39523 sources."minimist-1.2.0" 39524 + sources."redent-1.0.0" 39525 + sources."strip-indent-1.0.1" 39526 + sources."trim-newlines-1.0.0" 37582 39527 ]; 37583 39528 }) 37584 39529 sources."get-port-3.2.0" 37585 39530 sources."get-stdin-4.0.1" 37586 39531 sources."get-stream-3.0.0" 39532 + sources."get-value-2.0.6" 39533 + (sources."getpass-0.1.7" // { 39534 + dependencies = [ 39535 + sources."assert-plus-1.0.0" 39536 + ]; 39537 + }) 37587 39538 sources."git-raw-commits-1.3.6" 37588 - sources."git-remote-origin-url-2.0.0" 39539 + (sources."git-remote-origin-url-2.0.0" // { 39540 + dependencies = [ 39541 + sources."pify-2.3.0" 39542 + ]; 39543 + }) 37589 39544 sources."git-semver-tags-1.3.6" 37590 39545 sources."gitconfiglocal-1.0.0" 37591 39546 sources."glob-7.1.2" 37592 39547 sources."glob-parent-3.1.0" 37593 - sources."globby-6.1.0" 39548 + sources."glob-to-regexp-0.3.0" 39549 + sources."globby-8.0.1" 37594 39550 sources."got-6.7.1" 37595 39551 sources."graceful-fs-4.1.11" 37596 - sources."handlebars-4.0.11" 39552 + (sources."handlebars-4.0.11" // { 39553 + dependencies = [ 39554 + sources."source-map-0.4.4" 39555 + ]; 39556 + }) 39557 + sources."har-schema-1.0.5" 39558 + sources."har-validator-4.2.1" 37597 39559 sources."has-flag-3.0.0" 37598 39560 sources."has-unicode-2.0.1" 39561 + sources."has-value-1.0.0" 39562 + (sources."has-values-1.0.0" // { 39563 + dependencies = [ 39564 + sources."kind-of-4.0.0" 39565 + ]; 39566 + }) 39567 + sources."hawk-3.1.3" 39568 + sources."hoek-2.16.3" 37599 39569 sources."hosted-git-info-2.7.1" 39570 + sources."http-signature-1.1.1" 37600 39571 sources."iconv-lite-0.4.23" 39572 + sources."ignore-3.3.10" 39573 + sources."import-local-1.0.0" 37601 39574 sources."imurmurhash-0.1.4" 37602 - sources."indent-string-2.1.0" 39575 + sources."indent-string-3.2.0" 37603 39576 sources."inflight-1.0.6" 37604 39577 sources."inherits-2.0.3" 37605 39578 sources."ini-1.3.5" 37606 - (sources."inquirer-3.3.0" // { 37607 - dependencies = [ 37608 - sources."ansi-regex-3.0.0" 37609 - sources."strip-ansi-4.0.0" 37610 - ]; 37611 - }) 39579 + sources."init-package-json-1.10.3" 39580 + sources."inquirer-5.2.0" 37612 39581 sources."invert-kv-1.0.0" 39582 + sources."is-accessor-descriptor-1.0.0" 37613 39583 sources."is-arrayish-0.2.1" 37614 39584 sources."is-buffer-1.1.6" 37615 39585 sources."is-builtin-module-1.0.0" 37616 39586 sources."is-ci-1.1.0" 39587 + sources."is-data-descriptor-1.0.0" 39588 + sources."is-descriptor-1.0.2" 39589 + sources."is-directory-0.3.1" 39590 + sources."is-extendable-0.1.1" 37617 39591 sources."is-extglob-2.1.1" 37618 39592 sources."is-finite-1.0.2" 37619 39593 sources."is-fullwidth-code-point-2.0.0" 37620 39594 sources."is-glob-3.1.0" 39595 + (sources."is-number-3.0.0" // { 39596 + dependencies = [ 39597 + sources."kind-of-3.2.2" 39598 + ]; 39599 + }) 37621 39600 sources."is-obj-1.0.1" 37622 39601 sources."is-plain-obj-1.1.0" 39602 + sources."is-plain-object-2.0.4" 37623 39603 sources."is-promise-2.1.0" 37624 39604 sources."is-redirect-1.0.0" 37625 39605 sources."is-retry-allowed-1.1.0" 37626 39606 sources."is-stream-1.1.0" 37627 39607 sources."is-subset-0.1.1" 37628 39608 sources."is-text-path-1.0.1" 39609 + sources."is-typedarray-1.0.0" 37629 39610 sources."is-utf8-0.2.1" 39611 + sources."is-windows-1.0.2" 37630 39612 sources."isarray-1.0.0" 37631 39613 sources."isexe-2.0.0" 39614 + sources."isobject-3.0.1" 39615 + sources."isstream-0.1.2" 39616 + sources."js-yaml-3.12.0" 39617 + sources."jsbn-0.1.1" 37632 39618 sources."json-parse-better-errors-1.0.2" 39619 + sources."json-schema-0.2.3" 39620 + sources."json-stable-stringify-1.0.1" 37633 39621 sources."json-stringify-safe-5.0.1" 37634 39622 sources."jsonfile-4.0.0" 39623 + sources."jsonify-0.0.0" 37635 39624 sources."jsonparse-1.3.1" 37636 - sources."kind-of-3.2.2" 37637 - sources."lazy-cache-1.0.4" 37638 - sources."lcid-1.0.0" 37639 - (sources."load-json-file-4.0.0" // { 39625 + (sources."jsprim-1.4.1" // { 37640 39626 dependencies = [ 37641 - sources."parse-json-4.0.0" 37642 - sources."pify-3.0.0" 37643 - sources."strip-bom-3.0.0" 39627 + sources."assert-plus-1.0.0" 37644 39628 ]; 37645 39629 }) 39630 + sources."kind-of-6.0.2" 39631 + sources."lazy-cache-1.0.4" 39632 + sources."lcid-1.0.0" 39633 + sources."load-json-file-4.0.0" 37646 39634 sources."locate-path-2.0.0" 37647 39635 sources."lodash-4.17.10" 37648 39636 sources."lodash._reinterpolate-3.0.0" ··· 37652 39640 sources."loud-rejection-1.6.0" 37653 39641 sources."lowercase-keys-1.0.1" 37654 39642 sources."lru-cache-4.1.3" 37655 - (sources."make-dir-1.3.0" // { 37656 - dependencies = [ 37657 - sources."pify-3.0.0" 37658 - ]; 37659 - }) 37660 - sources."map-obj-1.0.1" 39643 + sources."make-dir-1.3.0" 39644 + sources."map-cache-0.2.2" 39645 + sources."map-obj-2.0.0" 39646 + sources."map-visit-1.0.0" 37661 39647 sources."mem-1.1.0" 37662 39648 (sources."meow-4.0.1" // { 37663 39649 dependencies = [ 37664 - sources."camelcase-4.1.0" 37665 - sources."camelcase-keys-4.2.0" 37666 - sources."indent-string-3.2.0" 37667 - sources."map-obj-2.0.0" 37668 39650 sources."minimist-1.2.0" 37669 39651 sources."read-pkg-up-3.0.0" 37670 - sources."redent-2.0.0" 37671 - sources."strip-indent-2.0.0" 37672 - sources."trim-newlines-2.0.0" 37673 39652 ]; 37674 39653 }) 39654 + sources."merge2-1.2.2" 39655 + sources."micromatch-3.1.10" 39656 + sources."mime-db-1.35.0" 39657 + sources."mime-types-2.1.19" 37675 39658 sources."mimic-fn-1.2.0" 37676 39659 sources."minimatch-3.0.4" 37677 - sources."minimist-0.0.8" 39660 + sources."minimist-0.1.0" 37678 39661 sources."minimist-options-3.0.2" 37679 - sources."mkdirp-0.5.1" 39662 + (sources."mixin-deep-1.3.1" // { 39663 + dependencies = [ 39664 + sources."is-extendable-1.0.1" 39665 + ]; 39666 + }) 39667 + (sources."mkdirp-0.5.1" // { 39668 + dependencies = [ 39669 + sources."minimist-0.0.8" 39670 + ]; 39671 + }) 37680 39672 sources."modify-values-1.0.1" 37681 39673 sources."moment-2.22.2" 39674 + sources."ms-2.0.0" 39675 + sources."multimatch-2.1.0" 37682 39676 sources."mute-stream-0.0.7" 39677 + sources."nanomatch-1.2.13" 39678 + sources."nice-try-1.0.4" 39679 + (sources."node-gyp-3.7.0" // { 39680 + dependencies = [ 39681 + sources."semver-5.3.0" 39682 + ]; 39683 + }) 39684 + sources."nopt-3.0.6" 37683 39685 sources."normalize-package-data-2.4.0" 39686 + sources."npm-lifecycle-2.0.3" 39687 + sources."npm-package-arg-6.1.0" 37684 39688 sources."npm-run-path-2.0.2" 37685 39689 sources."npmlog-4.1.2" 37686 39690 sources."number-is-nan-1.0.1" 39691 + sources."oauth-sign-0.8.2" 37687 39692 sources."object-assign-4.1.1" 39693 + (sources."object-copy-0.1.0" // { 39694 + dependencies = [ 39695 + sources."define-property-0.2.5" 39696 + sources."is-accessor-descriptor-0.1.6" 39697 + sources."is-data-descriptor-0.1.4" 39698 + (sources."is-descriptor-0.1.6" // { 39699 + dependencies = [ 39700 + sources."kind-of-5.1.0" 39701 + ]; 39702 + }) 39703 + sources."kind-of-3.2.2" 39704 + ]; 39705 + }) 39706 + sources."object-visit-1.0.1" 39707 + sources."object.pick-1.3.0" 37688 39708 sources."once-1.4.0" 37689 39709 sources."onetime-2.0.1" 37690 - sources."optimist-0.6.1" 39710 + (sources."optimist-0.6.1" // { 39711 + dependencies = [ 39712 + sources."minimist-0.0.10" 39713 + ]; 39714 + }) 39715 + sources."os-homedir-1.0.2" 37691 39716 (sources."os-locale-2.1.0" // { 37692 39717 dependencies = [ 39718 + sources."cross-spawn-5.1.0" 37693 39719 sources."execa-0.7.0" 37694 39720 ]; 37695 39721 }) 37696 39722 sources."os-tmpdir-1.0.2" 39723 + sources."osenv-0.1.5" 37697 39724 sources."p-finally-1.0.0" 37698 39725 sources."p-limit-1.3.0" 37699 39726 sources."p-locate-2.0.0" 39727 + sources."p-map-1.2.0" 39728 + sources."p-map-series-1.0.0" 39729 + sources."p-reduce-1.0.0" 37700 39730 sources."p-try-1.0.0" 39731 + sources."p-waterfall-1.0.0" 37701 39732 sources."package-json-4.0.1" 37702 39733 sources."parse-github-repo-url-1.4.1" 37703 - sources."parse-json-2.2.0" 39734 + sources."parse-json-4.0.0" 39735 + sources."pascalcase-0.1.1" 37704 39736 sources."path-dirname-1.0.2" 37705 39737 sources."path-exists-3.0.0" 37706 39738 sources."path-is-absolute-1.0.1" 37707 39739 sources."path-key-2.0.1" 37708 - sources."path-type-1.1.0" 37709 - sources."pify-2.3.0" 39740 + sources."path-type-3.0.0" 39741 + sources."performance-now-0.2.0" 39742 + sources."pify-3.0.0" 37710 39743 sources."pinkie-2.0.4" 37711 39744 sources."pinkie-promise-2.0.1" 39745 + sources."pkg-dir-2.0.0" 39746 + sources."posix-character-classes-0.1.1" 37712 39747 sources."prepend-http-1.0.4" 37713 39748 sources."process-nextick-args-2.0.0" 39749 + sources."promzard-0.3.0" 39750 + sources."proto-list-1.2.4" 37714 39751 sources."pseudomap-1.0.2" 39752 + sources."punycode-1.4.1" 37715 39753 sources."q-1.5.1" 39754 + sources."qs-6.4.0" 37716 39755 sources."quick-lru-1.1.0" 37717 39756 (sources."rc-1.2.8" // { 37718 39757 dependencies = [ 37719 39758 sources."minimist-1.2.0" 37720 39759 ]; 37721 39760 }) 39761 + sources."read-1.0.7" 37722 39762 sources."read-cmd-shim-1.0.1" 37723 - (sources."read-pkg-3.0.0" // { 37724 - dependencies = [ 37725 - sources."path-type-3.0.0" 37726 - sources."pify-3.0.0" 37727 - ]; 37728 - }) 39763 + sources."read-package-json-2.0.13" 39764 + sources."read-package-tree-5.2.1" 39765 + sources."read-pkg-3.0.0" 37729 39766 (sources."read-pkg-up-1.0.1" // { 37730 39767 dependencies = [ 37731 39768 sources."find-up-1.1.2" 37732 39769 sources."load-json-file-1.1.0" 39770 + sources."parse-json-2.2.0" 37733 39771 sources."path-exists-2.1.0" 39772 + sources."path-type-1.1.0" 39773 + sources."pify-2.3.0" 37734 39774 sources."read-pkg-1.1.0" 39775 + sources."strip-bom-2.0.0" 37735 39776 ]; 37736 39777 }) 37737 39778 sources."readable-stream-2.3.6" 37738 - sources."redent-1.0.0" 39779 + sources."readdir-scoped-modules-1.0.2" 39780 + sources."redent-2.0.0" 39781 + sources."regex-not-1.0.2" 37739 39782 sources."registry-auth-token-3.3.2" 37740 39783 sources."registry-url-3.1.0" 39784 + sources."repeat-element-1.1.2" 37741 39785 sources."repeat-string-1.6.1" 37742 39786 sources."repeating-2.0.1" 39787 + sources."request-2.81.0" 37743 39788 sources."require-directory-2.1.1" 37744 39789 sources."require-main-filename-1.0.1" 39790 + (sources."resolve-cwd-2.0.0" // { 39791 + dependencies = [ 39792 + sources."resolve-from-3.0.0" 39793 + ]; 39794 + }) 39795 + sources."resolve-from-4.0.0" 39796 + sources."resolve-url-0.2.1" 37745 39797 sources."restore-cursor-2.0.0" 39798 + sources."ret-0.1.15" 37746 39799 sources."right-align-0.1.3" 37747 39800 sources."rimraf-2.6.2" 37748 39801 sources."run-async-2.3.0" 37749 - sources."rx-lite-4.0.8" 37750 - sources."rx-lite-aggregates-4.0.8" 39802 + sources."rxjs-5.5.11" 37751 39803 sources."safe-buffer-5.1.2" 39804 + sources."safe-regex-1.1.0" 37752 39805 sources."safer-buffer-2.1.2" 37753 39806 sources."semver-5.5.0" 37754 39807 sources."set-blocking-2.0.0" 39808 + (sources."set-value-2.0.0" // { 39809 + dependencies = [ 39810 + sources."extend-shallow-2.0.1" 39811 + ]; 39812 + }) 37755 39813 sources."shebang-command-1.2.0" 37756 39814 sources."shebang-regex-1.0.0" 37757 39815 sources."signal-exit-3.0.2" 37758 39816 sources."slash-1.0.0" 39817 + sources."slide-1.1.6" 39818 + (sources."snapdragon-0.8.2" // { 39819 + dependencies = [ 39820 + sources."define-property-0.2.5" 39821 + sources."extend-shallow-2.0.1" 39822 + (sources."is-accessor-descriptor-0.1.6" // { 39823 + dependencies = [ 39824 + sources."kind-of-3.2.2" 39825 + ]; 39826 + }) 39827 + (sources."is-data-descriptor-0.1.4" // { 39828 + dependencies = [ 39829 + sources."kind-of-3.2.2" 39830 + ]; 39831 + }) 39832 + sources."is-descriptor-0.1.6" 39833 + sources."kind-of-5.1.0" 39834 + ]; 39835 + }) 39836 + (sources."snapdragon-node-2.1.1" // { 39837 + dependencies = [ 39838 + sources."define-property-1.0.0" 39839 + ]; 39840 + }) 39841 + (sources."snapdragon-util-3.0.1" // { 39842 + dependencies = [ 39843 + sources."kind-of-3.2.2" 39844 + ]; 39845 + }) 39846 + sources."sntp-1.0.9" 37759 39847 sources."sort-keys-2.0.0" 37760 - sources."source-map-0.4.4" 39848 + sources."source-map-0.5.7" 39849 + sources."source-map-resolve-0.5.2" 39850 + sources."source-map-url-0.4.0" 37761 39851 sources."spdx-correct-3.0.0" 37762 39852 sources."spdx-exceptions-2.1.0" 37763 39853 sources."spdx-expression-parse-3.0.0" 37764 39854 sources."spdx-license-ids-3.0.0" 37765 39855 sources."split-1.0.1" 39856 + sources."split-string-3.1.0" 37766 39857 sources."split2-2.2.0" 37767 - (sources."string-width-2.1.1" // { 39858 + sources."sprintf-js-1.0.3" 39859 + (sources."sshpk-1.14.2" // { 37768 39860 dependencies = [ 37769 - sources."ansi-regex-3.0.0" 37770 - sources."strip-ansi-4.0.0" 39861 + sources."assert-plus-1.0.0" 37771 39862 ]; 37772 39863 }) 37773 - sources."string_decoder-1.1.1" 37774 - sources."strip-ansi-3.0.1" 37775 - sources."strip-bom-2.0.0" 37776 - sources."strip-eof-1.0.0" 37777 - sources."strip-indent-1.0.1" 37778 - sources."strip-json-comments-2.0.1" 37779 - (sources."strong-log-transformer-1.0.6" // { 39864 + (sources."static-extend-0.1.2" // { 37780 39865 dependencies = [ 37781 - sources."minimist-0.1.0" 39866 + sources."define-property-0.2.5" 39867 + (sources."is-accessor-descriptor-0.1.6" // { 39868 + dependencies = [ 39869 + sources."kind-of-3.2.2" 39870 + ]; 39871 + }) 39872 + (sources."is-data-descriptor-0.1.4" // { 39873 + dependencies = [ 39874 + sources."kind-of-3.2.2" 39875 + ]; 39876 + }) 39877 + sources."is-descriptor-0.1.6" 39878 + sources."kind-of-5.1.0" 37782 39879 ]; 37783 39880 }) 39881 + sources."string-width-2.1.1" 39882 + sources."string_decoder-1.1.1" 39883 + sources."stringstream-0.0.6" 39884 + sources."strip-ansi-4.0.0" 39885 + sources."strip-bom-3.0.0" 39886 + sources."strip-eof-1.0.0" 39887 + sources."strip-indent-2.0.0" 39888 + sources."strip-json-comments-2.0.1" 39889 + sources."strong-log-transformer-1.0.6" 37784 39890 sources."supports-color-5.4.0" 39891 + sources."symbol-observable-1.0.1" 39892 + sources."tar-2.2.1" 37785 39893 sources."temp-dir-1.0.0" 37786 - (sources."temp-write-3.4.0" // { 37787 - dependencies = [ 37788 - sources."pify-3.0.0" 37789 - sources."uuid-3.3.2" 37790 - ]; 37791 - }) 37792 - sources."tempfile-1.1.1" 39894 + sources."temp-write-3.4.0" 37793 39895 sources."text-extensions-1.7.0" 37794 39896 sources."through-2.3.8" 37795 39897 sources."through2-2.0.3" 37796 39898 sources."timed-out-4.0.1" 37797 39899 sources."tmp-0.0.33" 37798 - sources."trim-newlines-1.0.0" 39900 + (sources."to-object-path-0.3.0" // { 39901 + dependencies = [ 39902 + sources."kind-of-3.2.2" 39903 + ]; 39904 + }) 39905 + sources."to-regex-3.0.2" 39906 + sources."to-regex-range-2.1.1" 39907 + sources."tough-cookie-2.3.4" 39908 + sources."trim-newlines-2.0.0" 37799 39909 sources."trim-off-newlines-1.0.1" 39910 + sources."tunnel-agent-0.6.0" 39911 + sources."tweetnacl-0.14.5" 37800 39912 sources."typedarray-0.0.6" 37801 39913 (sources."uglify-js-2.8.29" // { 37802 39914 dependencies = [ 37803 - sources."source-map-0.5.7" 39915 + sources."camelcase-1.2.1" 37804 39916 sources."yargs-3.10.0" 37805 39917 ]; 37806 39918 }) 37807 39919 sources."uglify-to-browserify-1.0.2" 39920 + sources."uid-number-0.0.6" 39921 + sources."umask-1.1.0" 39922 + (sources."union-value-1.0.0" // { 39923 + dependencies = [ 39924 + sources."extend-shallow-2.0.1" 39925 + sources."set-value-0.4.3" 39926 + ]; 39927 + }) 37808 39928 sources."universalify-0.1.2" 39929 + (sources."unset-value-1.0.0" // { 39930 + dependencies = [ 39931 + (sources."has-value-0.3.1" // { 39932 + dependencies = [ 39933 + sources."isobject-2.1.0" 39934 + ]; 39935 + }) 39936 + sources."has-values-0.1.4" 39937 + ]; 39938 + }) 37809 39939 sources."unzip-response-2.0.1" 39940 + sources."urix-0.1.0" 37810 39941 sources."url-parse-lax-1.0.0" 39942 + sources."use-3.1.1" 37811 39943 sources."util-deprecate-1.0.2" 37812 - sources."uuid-2.0.3" 39944 + sources."uuid-3.3.2" 37813 39945 sources."validate-npm-package-license-3.0.3" 39946 + sources."validate-npm-package-name-3.0.0" 39947 + (sources."verror-1.10.0" // { 39948 + dependencies = [ 39949 + sources."assert-plus-1.0.0" 39950 + ]; 39951 + }) 37814 39952 sources."wcwidth-1.0.1" 37815 39953 sources."which-1.3.1" 37816 39954 sources."which-module-2.0.0" ··· 37819 39957 sources."wordwrap-0.0.3" 37820 39958 (sources."wrap-ansi-2.1.0" // { 37821 39959 dependencies = [ 39960 + sources."ansi-regex-2.1.1" 37822 39961 sources."is-fullwidth-code-point-1.0.0" 37823 39962 sources."string-width-1.0.2" 39963 + sources."strip-ansi-3.0.1" 37824 39964 ]; 37825 39965 }) 37826 39966 sources."wrappy-1.0.2" 37827 39967 sources."write-file-atomic-2.3.0" 37828 - (sources."write-json-file-2.3.0" // { 37829 - dependencies = [ 37830 - sources."pify-3.0.0" 37831 - ]; 37832 - }) 39968 + sources."write-json-file-2.3.0" 37833 39969 sources."write-pkg-3.2.0" 39970 + sources."xregexp-4.0.0" 37834 39971 sources."xtend-4.0.1" 37835 - sources."y18n-3.2.1" 39972 + sources."y18n-4.0.0" 37836 39973 sources."yallist-2.1.2" 37837 - (sources."yargs-8.0.2" // { 37838 - dependencies = [ 37839 - sources."camelcase-4.1.0" 37840 - (sources."cliui-3.2.0" // { 37841 - dependencies = [ 37842 - sources."string-width-1.0.2" 37843 - ]; 37844 - }) 37845 - sources."is-fullwidth-code-point-1.0.0" 37846 - sources."load-json-file-2.0.0" 37847 - sources."path-type-2.0.0" 37848 - sources."read-pkg-2.0.0" 37849 - sources."read-pkg-up-2.0.0" 37850 - sources."strip-bom-3.0.0" 37851 - ]; 37852 - }) 37853 - (sources."yargs-parser-7.0.0" // { 39974 + (sources."yargs-12.0.1" // { 37854 39975 dependencies = [ 37855 - sources."camelcase-4.1.0" 39976 + sources."cliui-4.1.0" 39977 + sources."decamelize-2.0.0" 39978 + sources."find-up-3.0.0" 39979 + sources."locate-path-3.0.0" 39980 + sources."p-limit-2.0.0" 39981 + sources."p-locate-3.0.0" 39982 + sources."p-try-2.0.0" 37856 39983 ]; 37857 39984 }) 39985 + sources."yargs-parser-10.1.0" 37858 39986 ]; 37859 39987 buildInputs = globalBuildInputs; 37860 39988 meta = { 37861 - description = "Tool for managing JavaScript projects with multiple packages"; 39989 + description = "A tool for managing JavaScript projects with multiple packages."; 37862 39990 homepage = https://lernajs.io/; 37863 39991 license = "MIT"; 37864 39992 }; ··· 37868 39996 less = nodeEnv.buildNodePackage { 37869 39997 name = "less"; 37870 39998 packageName = "less"; 37871 - version = "3.7.1"; 39999 + version = "3.8.0"; 37872 40000 src = fetchurl { 37873 - url = "https://registry.npmjs.org/less/-/less-3.7.1.tgz"; 37874 - sha512 = "Cmf5XJlzNklkBC8eAa+Ef16AHUBAkApHNAw3x9Vmn84h2BvGrri5Id7kf6H1n6SN74Fc0WdHIRPlFMxsl0eJkA=="; 40001 + url = "https://registry.npmjs.org/less/-/less-3.8.0.tgz"; 40002 + sha512 = "746DPDyL+Wsjo7h/Z3t+A3Mg/mpDTaxW4puZyLhCQJjWJJvHggN735orjuCLIYgo7jKqv1zWLiQrxkuUOg5oGA=="; 37875 40003 }; 37876 40004 dependencies = [ 37877 40005 sources."ajv-5.5.2" 37878 40006 sources."asap-2.0.6" 37879 - sources."asn1-0.2.3" 40007 + sources."asn1-0.2.4" 37880 40008 sources."assert-plus-1.0.0" 37881 40009 sources."asynckit-0.4.0" 37882 40010 sources."aws-sign2-0.7.0" ··· 37888 40016 sources."core-util-is-1.0.2" 37889 40017 sources."dashdash-1.14.1" 37890 40018 sources."delayed-stream-1.0.0" 37891 - sources."ecc-jsbn-0.1.1" 40019 + sources."ecc-jsbn-0.1.2" 37892 40020 sources."errno-0.1.7" 37893 - sources."extend-3.0.1" 40021 + sources."extend-3.0.2" 37894 40022 sources."extsprintf-1.3.0" 37895 40023 sources."fast-deep-equal-1.1.0" 37896 40024 sources."fast-json-stable-stringify-2.0.0" ··· 37910 40038 sources."json-stringify-safe-5.0.1" 37911 40039 sources."jsprim-1.4.1" 37912 40040 sources."mime-1.6.0" 37913 - sources."mime-db-1.33.0" 37914 - sources."mime-types-2.1.18" 40041 + sources."mime-db-1.35.0" 40042 + sources."mime-types-2.1.19" 37915 40043 sources."minimist-0.0.8" 37916 40044 sources."mkdirp-0.5.1" 37917 40045 sources."oauth-sign-0.8.2" ··· 37992 40120 sources."brace-expansion-1.1.11" 37993 40121 sources."braces-1.8.5" 37994 40122 sources."chokidar-1.7.0" 37995 - sources."colors-1.3.0" 40123 + sources."colors-1.3.1" 37996 40124 sources."concat-map-0.0.1" 37997 40125 sources."connect-3.5.1" 37998 40126 sources."core-util-is-1.0.2" ··· 38047 40175 sources."math-random-1.0.1" 38048 40176 sources."micromatch-2.3.11" 38049 40177 sources."mime-1.4.1" 38050 - sources."mime-db-1.33.0" 38051 - sources."mime-types-2.1.18" 40178 + sources."mime-db-1.35.0" 40179 + sources."mime-types-2.1.19" 38052 40180 sources."minimatch-3.0.4" 38053 40181 (sources."morgan-1.9.0" // { 38054 40182 dependencies = [ ··· 38143 40271 sources."array-flatten-1.1.1" 38144 40272 sources."array-unique-0.2.1" 38145 40273 sources."arraybuffer.slice-0.0.7" 38146 - sources."asn1-0.2.3" 40274 + sources."asn1-0.2.4" 38147 40275 sources."assert-plus-1.0.0" 38148 40276 sources."async-each-1.0.1" 38149 40277 sources."async-limiter-1.0.0" ··· 38181 40309 sources."delayed-stream-1.0.0" 38182 40310 sources."depd-1.1.2" 38183 40311 sources."destroy-1.0.4" 38184 - sources."ecc-jsbn-0.1.1" 40312 + sources."ecc-jsbn-0.1.2" 38185 40313 sources."ee-first-1.1.1" 38186 40314 sources."emoji-regex-6.1.1" 38187 40315 sources."encodeurl-1.0.2" ··· 38217 40345 sources."statuses-1.4.0" 38218 40346 ]; 38219 40347 }) 38220 - sources."extend-3.0.1" 40348 + sources."extend-3.0.2" 38221 40349 sources."extglob-0.3.2" 38222 40350 sources."extsprintf-1.3.0" 38223 40351 sources."fast-deep-equal-1.1.0" ··· 38256 40384 sources."indexof-0.0.1" 38257 40385 sources."inherits-2.0.3" 38258 40386 sources."innertext-1.0.3" 38259 - sources."ipaddr.js-1.6.0" 40387 + sources."ipaddr.js-1.8.0" 38260 40388 sources."is-binary-path-1.0.1" 38261 40389 sources."is-buffer-1.1.6" 38262 40390 sources."is-dotfile-1.0.3" ··· 38279 40407 sources."jsprim-1.4.1" 38280 40408 sources."kind-of-3.2.2" 38281 40409 sources."linkify-it-2.0.3" 38282 - sources."markdown-it-8.4.1" 40410 + sources."markdown-it-8.4.2" 38283 40411 sources."markdown-it-emoji-1.4.0" 38284 40412 sources."markdown-it-github-headings-1.1.1" 38285 40413 sources."markdown-it-task-checkbox-1.0.6" ··· 38290 40418 sources."methods-1.1.2" 38291 40419 sources."micromatch-2.3.11" 38292 40420 sources."mime-1.4.1" 38293 - sources."mime-db-1.33.0" 38294 - sources."mime-types-2.1.18" 40421 + sources."mime-db-1.35.0" 40422 + sources."mime-types-2.1.19" 38295 40423 sources."minimatch-3.0.4" 38296 40424 sources."minimist-1.2.0" 38297 40425 sources."ms-2.0.0" ··· 38312 40440 sources."performance-now-2.1.0" 38313 40441 sources."preserve-0.2.0" 38314 40442 sources."process-nextick-args-2.0.0" 38315 - sources."proxy-addr-2.0.3" 40443 + sources."proxy-addr-2.0.4" 38316 40444 sources."punycode-1.4.1" 38317 40445 sources."qs-6.5.2" 38318 40446 (sources."randomatic-3.0.0" // { ··· 38426 40554 meguca = nodeEnv.buildNodePackage { 38427 40555 name = "meguca"; 38428 40556 packageName = "meguca"; 38429 - version = "1.0.8"; 40557 + version = "1.0.9"; 38430 40558 src = fetchurl { 38431 - url = "https://registry.npmjs.org/meguca/-/meguca-1.0.8.tgz"; 38432 - sha512 = "6hEfEe5385DL95w4YPo68Y/DzSGo7vyw9/ckHsAMk/qO+GBcbI1pGRVkx0oJQtTdJ7mGSVc+gcVj09sj9auTQg=="; 40559 + url = "https://registry.npmjs.org/meguca/-/meguca-1.0.9.tgz"; 40560 + sha512 = "Q2O9s9cqu19UfhsA6+XDnuuYflxFKck5TvvYF2LMhtKWVVmIGuqVZiDAhx1XV3qO22B5A0vjU4gckaeQLALmPQ=="; 38433 40561 }; 38434 40562 dependencies = [ 38435 40563 (sources."@gulp-sourcemaps/identity-map-1.0.2" // { ··· 38482 40610 sources."array-uniq-1.0.3" 38483 40611 sources."array-unique-0.3.2" 38484 40612 sources."asap-2.0.6" 38485 - sources."asn1-0.2.3" 40613 + sources."asn1-0.2.4" 38486 40614 sources."assert-plus-0.2.0" 38487 40615 sources."assign-symbols-1.0.0" 38488 40616 sources."asynckit-0.4.0" ··· 38592 40720 sources."string_decoder-1.1.1" 38593 40721 ]; 38594 40722 }) 38595 - sources."ecc-jsbn-0.1.1" 40723 + sources."ecc-jsbn-0.1.2" 38596 40724 sources."end-of-stream-0.1.5" 38597 40725 sources."errno-0.1.7" 38598 40726 sources."es5-ext-0.10.45" ··· 38620 40748 ]; 38621 40749 }) 38622 40750 sources."expand-tilde-2.0.2" 38623 - sources."extend-3.0.1" 40751 + sources."extend-3.0.2" 38624 40752 (sources."extend-shallow-3.0.2" // { 38625 40753 dependencies = [ 38626 40754 sources."is-extendable-1.0.1" ··· 38698 40826 sources."through2-2.0.3" 38699 40827 ]; 38700 40828 }) 38701 - (sources."gulp-jsonminify-1.1.0" // { 38702 - dependencies = [ 38703 - sources."arr-diff-1.1.0" 38704 - sources."arr-union-2.1.0" 38705 - sources."array-slice-0.2.3" 38706 - sources."extend-shallow-1.1.4" 38707 - sources."kind-of-1.1.0" 38708 - sources."plugin-error-0.1.2" 38709 - ]; 38710 - }) 38711 40829 (sources."gulp-less-3.5.0" // { 38712 40830 dependencies = [ 38713 40831 sources."arr-diff-1.1.0" ··· 38754 40872 sources."vinyl-fs-3.0.3" 38755 40873 ]; 38756 40874 }) 38757 - (sources."gulp-uglify-3.0.0" // { 40875 + (sources."gulp-uglify-3.0.1" // { 38758 40876 dependencies = [ 38759 40877 sources."lodash-4.17.10" 38760 40878 sources."readable-stream-2.3.6" ··· 38825 40943 sources."json-stable-stringify-1.0.1" 38826 40944 sources."json-stringify-safe-5.0.1" 38827 40945 sources."jsonify-0.0.0" 38828 - sources."jsonminify-0.2.3" 38829 40946 (sources."jsprim-1.4.1" // { 38830 40947 dependencies = [ 38831 40948 sources."assert-plus-1.0.0" ··· 38881 40998 sources."memoizee-0.4.12" 38882 40999 sources."micromatch-3.1.10" 38883 41000 sources."mime-1.6.0" 38884 - sources."mime-db-1.33.0" 38885 - sources."mime-types-2.1.18" 41001 + sources."mime-db-1.35.0" 41002 + sources."mime-types-2.1.19" 38886 41003 sources."minimatch-2.0.10" 38887 41004 sources."minimist-1.2.0" 38888 41005 (sources."mixin-deep-1.3.1" // { ··· 39085 41202 sources."tunnel-agent-0.6.0" 39086 41203 sources."tweetnacl-0.14.5" 39087 41204 sources."typescript-2.7.2" 39088 - (sources."uglify-js-3.4.4" // { 41205 + (sources."uglify-js-3.4.6" // { 39089 41206 dependencies = [ 39090 41207 sources."source-map-0.6.1" 39091 41208 ]; ··· 39215 41332 sources."debug-3.1.0" 39216 41333 sources."delayed-stream-1.0.0" 39217 41334 sources."esprima-4.0.1" 39218 - sources."extend-3.0.1" 41335 + sources."extend-3.0.2" 39219 41336 sources."form-data-2.3.2" 39220 41337 sources."formidable-1.2.1" 39221 41338 sources."graphlib-2.1.5" ··· 39226 41343 sources."lodash-4.17.10" 39227 41344 sources."methods-1.1.2" 39228 41345 sources."mime-1.6.0" 39229 - sources."mime-db-1.33.0" 39230 - sources."mime-types-2.1.18" 41346 + sources."mime-db-1.35.0" 41347 + sources."mime-types-2.1.19" 39231 41348 sources."ms-2.0.0" 39232 41349 sources."native-promise-only-0.8.1" 39233 41350 sources."path-loader-1.0.4" ··· 39286 41403 sources."ansi-regex-2.1.1" 39287 41404 sources."aproba-1.2.0" 39288 41405 sources."are-we-there-yet-1.1.5" 39289 - sources."asn1-0.2.3" 41406 + sources."asn1-0.2.4" 39290 41407 sources."assert-plus-1.0.0" 39291 41408 sources."asynckit-0.4.0" 39292 41409 sources."aws-sign2-0.7.0" 39293 41410 sources."aws4-1.7.0" 39294 41411 sources."base64-js-1.2.3" 39295 41412 sources."bcrypt-pbkdf-1.0.2" 39296 - sources."buffer-from-1.1.0" 41413 + sources."buffer-from-1.1.1" 39297 41414 sources."builtin-modules-1.1.1" 39298 41415 sources."builtins-1.0.3" 39299 41416 sources."caseless-0.12.0" ··· 39307 41424 sources."dashdash-1.14.1" 39308 41425 sources."delayed-stream-1.0.0" 39309 41426 sources."delegates-1.0.0" 39310 - sources."ecc-jsbn-0.1.1" 39311 - sources."extend-3.0.1" 41427 + sources."ecc-jsbn-0.1.2" 41428 + sources."extend-3.0.2" 39312 41429 sources."extsprintf-1.3.0" 39313 41430 sources."fast-deep-equal-1.1.0" 39314 41431 sources."fast-json-stable-stringify-2.0.0" ··· 39347 41464 sources."json-stringify-safe-5.0.1" 39348 41465 sources."jsonfile-1.0.1" 39349 41466 sources."jsprim-1.4.1" 39350 - sources."mime-db-1.33.0" 39351 - sources."mime-types-2.1.18" 41467 + sources."mime-db-1.35.0" 41468 + sources."mime-types-2.1.19" 39352 41469 sources."minimist-0.0.8" 39353 41470 sources."minipass-2.3.3" 39354 41471 sources."minizlib-1.1.0" ··· 39439 41556 sources."ansi-regex-2.1.1" 39440 41557 sources."aproba-1.2.0" 39441 41558 sources."are-we-there-yet-1.1.5" 39442 - sources."asn1-0.2.3" 41559 + sources."asn1-0.2.4" 39443 41560 sources."assert-plus-0.2.0" 39444 41561 sources."asynckit-0.4.0" 39445 41562 sources."aws-sign2-0.6.0" ··· 39464 41581 }) 39465 41582 sources."delayed-stream-1.0.0" 39466 41583 sources."delegates-1.0.0" 39467 - sources."ecc-jsbn-0.1.1" 39468 - sources."extend-3.0.1" 41584 + sources."ecc-jsbn-0.1.2" 41585 + sources."extend-3.0.2" 39469 41586 sources."extsprintf-1.3.0" 39470 41587 sources."forever-agent-0.6.1" 39471 41588 sources."form-data-2.1.4" ··· 39502 41619 sources."assert-plus-1.0.0" 39503 41620 ]; 39504 41621 }) 39505 - sources."mime-db-1.33.0" 39506 - sources."mime-types-2.1.18" 41622 + sources."mime-db-1.35.0" 41623 + sources."mime-types-2.1.19" 39507 41624 sources."minimatch-3.0.4" 39508 41625 sources."minimist-0.0.8" 39509 41626 sources."mkdirp-0.5.1" ··· 39598 41715 sources."are-we-there-yet-1.1.5" 39599 41716 sources."array-find-index-1.0.2" 39600 41717 sources."array-flatten-1.1.1" 39601 - sources."asn1-0.2.3" 41718 + sources."asn1-0.2.4" 39602 41719 sources."assert-plus-0.2.0" 39603 41720 sources."async-0.9.2" 39604 41721 sources."asynckit-0.4.0" ··· 39608 41725 sources."base64-js-0.0.8" 39609 41726 sources."bcrypt-pbkdf-1.0.2" 39610 41727 sources."biased-opener-0.2.8" 39611 - sources."big-integer-1.6.32" 41728 + sources."big-integer-1.6.34" 39612 41729 sources."block-stream-0.0.9" 39613 41730 sources."body-parser-1.18.2" 39614 41731 sources."boom-2.10.1" ··· 39647 41764 sources."depd-1.1.2" 39648 41765 sources."destroy-1.0.4" 39649 41766 sources."detect-libc-1.0.3" 39650 - sources."ecc-jsbn-0.1.1" 41767 + sources."ecc-jsbn-0.1.2" 39651 41768 sources."ee-first-1.1.1" 39652 41769 sources."encodeurl-1.0.2" 39653 41770 sources."error-ex-1.3.2" 39654 41771 sources."escape-html-1.0.3" 39655 41772 sources."etag-1.8.1" 39656 41773 sources."express-4.16.3" 39657 - sources."extend-3.0.1" 41774 + sources."extend-3.0.2" 39658 41775 sources."extsprintf-1.3.0" 39659 41776 sources."finalhandler-1.1.1" 39660 41777 sources."find-up-1.1.2" ··· 39689 41806 sources."inherits-2.0.3" 39690 41807 sources."ini-1.3.5" 39691 41808 sources."invert-kv-1.0.0" 39692 - sources."ipaddr.js-1.6.0" 41809 + sources."ipaddr.js-1.8.0" 39693 41810 sources."is-arrayish-0.2.1" 39694 41811 sources."is-builtin-module-1.0.0" 39695 41812 sources."is-finite-1.0.2" ··· 39719 41836 sources."merge-descriptors-1.0.1" 39720 41837 sources."methods-1.1.2" 39721 41838 sources."mime-1.4.1" 39722 - sources."mime-db-1.33.0" 39723 - sources."mime-types-2.1.18" 41839 + sources."mime-db-1.35.0" 41840 + sources."mime-types-2.1.19" 39724 41841 sources."minimatch-3.0.4" 39725 41842 sources."minimist-1.2.0" 39726 41843 (sources."mkdirp-0.5.1" // { ··· 39763 41880 sources."pinkie-promise-2.0.1" 39764 41881 sources."plist-1.2.0" 39765 41882 sources."process-nextick-args-2.0.0" 39766 - sources."proxy-addr-2.0.3" 41883 + sources."proxy-addr-2.0.4" 39767 41884 sources."punycode-1.4.1" 39768 41885 sources."qs-6.5.1" 39769 41886 sources."range-parser-1.2.0" ··· 39923 42040 sources."needle-2.2.1" 39924 42041 sources."nopt-4.0.1" 39925 42042 sources."npm-bundled-1.0.3" 39926 - sources."npm-packlist-1.1.10" 42043 + sources."npm-packlist-1.1.11" 39927 42044 sources."npmlog-4.1.2" 39928 42045 sources."number-is-nan-1.0.1" 39929 42046 sources."object-assign-4.1.1" ··· 39950 42067 sources."string_decoder-1.1.1" 39951 42068 sources."strip-ansi-3.0.1" 39952 42069 sources."strip-json-comments-2.0.1" 39953 - sources."tar-4.4.4" 42070 + sources."tar-4.4.6" 39954 42071 sources."util-deprecate-1.0.2" 39955 42072 sources."wide-align-1.1.3" 39956 42073 sources."wrappy-1.0.2" ··· 39968 42085 nodemon = nodeEnv.buildNodePackage { 39969 42086 name = "nodemon"; 39970 42087 packageName = "nodemon"; 39971 - version = "1.18.2"; 42088 + version = "1.18.3"; 39972 42089 src = fetchurl { 39973 - url = "https://registry.npmjs.org/nodemon/-/nodemon-1.18.2.tgz"; 39974 - sha512 = "FKuvzVurERMgX231T9KexWWWopjd93vapFY8rLn2JlPZ58uCW2s7U8utKElpGUEAqU5Y33///KFza5O9ndVRHQ=="; 42090 + url = "https://registry.npmjs.org/nodemon/-/nodemon-1.18.3.tgz"; 42091 + sha512 = "XdVfAjGlDKU2nqoGgycxTndkJ5fdwvWJ/tlMGk2vHxMZBrSPVh86OM6z7viAv8BBJWjMgeuYQBofzr6LUoi+7g=="; 39975 42092 }; 39976 42093 dependencies = [ 39977 42094 sources."abbrev-1.1.1" ··· 40342 42459 sources."argparse-1.0.10" 40343 42460 sources."array-flatten-1.1.1" 40344 42461 sources."array-indexofobject-0.0.1" 40345 - sources."asn1-0.2.3" 42462 + sources."asn1-0.2.4" 40346 42463 sources."assert-plus-1.0.0" 40347 42464 sources."async-0.1.22" 40348 42465 sources."async-limiter-1.0.0" ··· 40359 42476 sources."body-parser-1.18.3" 40360 42477 sources."boolbase-1.0.0" 40361 42478 sources."brace-expansion-1.1.11" 40362 - sources."buffer-from-1.1.0" 42479 + sources."buffer-from-1.1.1" 40363 42480 (sources."buildmail-2.0.0" // { 40364 42481 dependencies = [ 40365 42482 sources."needle-0.10.0" ··· 40420 42537 sources."domhandler-2.4.2" 40421 42538 sources."domutils-1.5.1" 40422 42539 sources."duplexify-3.6.0" 40423 - sources."ecc-jsbn-0.1.1" 42540 + sources."ecc-jsbn-0.1.2" 40424 42541 sources."ee-first-1.1.1" 40425 42542 sources."encodeurl-1.0.2" 40426 42543 sources."encoding-0.1.12" ··· 40446 42563 ]; 40447 42564 }) 40448 42565 sources."express-session-1.15.6" 40449 - sources."extend-3.0.1" 42566 + sources."extend-3.0.2" 40450 42567 sources."extsprintf-1.3.0" 40451 42568 sources."fast-deep-equal-1.1.0" 40452 42569 sources."fast-json-stable-stringify-2.0.0" ··· 40501 42618 sources."inflight-1.0.6" 40502 42619 sources."inherits-2.0.3" 40503 42620 sources."ini-1.3.5" 40504 - sources."ipaddr.js-1.6.0" 42621 + sources."ipaddr.js-1.8.0" 40505 42622 sources."is-absolute-1.0.0" 40506 42623 sources."is-extglob-2.1.1" 40507 42624 sources."is-fullwidth-code-point-1.0.0" ··· 40558 42675 sources."merge-descriptors-1.0.1" 40559 42676 sources."methods-1.1.2" 40560 42677 sources."mime-1.4.1" 40561 - sources."mime-db-1.33.0" 40562 - sources."mime-types-2.1.18" 42678 + sources."mime-db-1.35.0" 42679 + sources."mime-types-2.1.19" 40563 42680 (sources."mimelib-0.3.1" // { 40564 42681 dependencies = [ 40565 42682 sources."addressparser-1.0.1" ··· 40633 42750 sources."performance-now-2.1.0" 40634 42751 sources."poplib-0.1.7" 40635 42752 sources."process-nextick-args-2.0.0" 40636 - sources."proxy-addr-2.0.3" 42753 + sources."proxy-addr-2.0.4" 40637 42754 sources."pseudomap-1.0.2" 40638 42755 sources."pump-3.0.0" 40639 42756 (sources."pumpify-1.5.1" // { ··· 40870 42987 npm = nodeEnv.buildNodePackage { 40871 42988 name = "npm"; 40872 42989 packageName = "npm"; 40873 - version = "6.2.0"; 42990 + version = "6.3.0"; 40874 42991 src = fetchurl { 40875 - url = "https://registry.npmjs.org/npm/-/npm-6.2.0.tgz"; 40876 - sha512 = "GnlNsOnxwVJX4WSfyQY0gY3LnUX2cc46XU0eu1g+WSuZgDRUGmw8tuptitJu6byp0RWGT8ZEAKajblwdhQHN8A=="; 42992 + url = "https://registry.npmjs.org/npm/-/npm-6.3.0.tgz"; 42993 + sha512 = "oDtLFo3wXue/xe3pU/oks9VHS5501OAWlYrZrApZkFv7l2LXk+9CfPMbjbfZWK7Jqlc1jbNcJMkB6KZC7K/vEA=="; 40877 42994 }; 40878 42995 buildInputs = globalBuildInputs; 40879 42996 meta = { ··· 40900 43017 sources."aproba-1.2.0" 40901 43018 sources."are-we-there-yet-1.1.5" 40902 43019 sources."argparse-0.1.15" 40903 - sources."asn1-0.2.3" 43020 + sources."asn1-0.2.4" 40904 43021 sources."assert-plus-1.0.0" 40905 43022 sources."asynckit-0.4.0" 40906 43023 sources."aws-sign2-0.7.0" ··· 40927 43044 sources."dashdash-1.14.1" 40928 43045 sources."delayed-stream-1.0.0" 40929 43046 sources."delegates-1.0.0" 40930 - sources."ecc-jsbn-0.1.1" 40931 - sources."extend-3.0.1" 43047 + sources."ecc-jsbn-0.1.2" 43048 + sources."extend-3.0.2" 40932 43049 sources."extsprintf-1.3.0" 40933 43050 sources."fast-deep-equal-1.1.0" 40934 43051 sources."fast-json-stable-stringify-2.0.0" ··· 40970 43087 sources."json-stringify-safe-5.0.1" 40971 43088 sources."jsonfile-1.0.1" 40972 43089 sources."jsprim-1.4.1" 40973 - sources."mime-db-1.33.0" 40974 - sources."mime-types-2.1.18" 43090 + sources."mime-db-1.35.0" 43091 + sources."mime-types-2.1.19" 40975 43092 sources."minimatch-3.0.4" 40976 43093 sources."minimist-0.0.8" 40977 43094 sources."mkdirp-0.3.5" ··· 41112 43229 sources."is-retry-allowed-1.1.0" 41113 43230 sources."is-stream-1.1.0" 41114 43231 sources."isexe-2.0.0" 41115 - sources."jju-1.3.0" 43232 + sources."jju-1.4.0" 41116 43233 sources."js-yaml-3.12.0" 41117 43234 sources."json-parse-helpfulerror-1.0.3" 41118 43235 sources."json5-0.5.1" ··· 41219 43336 sources."code-point-at-1.1.0" 41220 43337 sources."color-convert-1.9.2" 41221 43338 sources."color-name-1.1.1" 41222 - sources."colors-1.3.0" 43339 + sources."colors-1.3.1" 41223 43340 sources."cross-spawn-5.1.0" 41224 43341 sources."cvss-1.0.3" 41225 43342 sources."debug-3.1.0" ··· 41361 43478 sources."vscode-languageclient-4.0.1" 41362 43479 sources."vscode-languageserver-4.0.0" 41363 43480 sources."vscode-languageserver-protocol-3.6.0" 41364 - sources."vscode-languageserver-types-3.9.0" 43481 + sources."vscode-languageserver-types-3.10.0" 41365 43482 sources."vscode-uri-1.0.3" 41366 43483 sources."wrappy-1.0.2" 41367 43484 ]; ··· 41392 43509 sources."argparse-1.0.10" 41393 43510 sources."array-flatten-1.1.1" 41394 43511 sources."asap-2.0.6" 41395 - sources."asn1-0.2.3" 43512 + sources."asn1-0.2.4" 41396 43513 sources."assert-plus-1.0.0" 41397 43514 sources."async-0.9.2" 41398 43515 sources."asynckit-0.4.0" ··· 41431 43548 }) 41432 43549 sources."co-4.6.0" 41433 43550 sources."code-point-at-1.1.0" 41434 - sources."colors-1.3.0" 43551 + sources."colors-1.3.1" 41435 43552 sources."combined-stream-1.0.6" 41436 - (sources."compressible-2.0.14" // { 41437 - dependencies = [ 41438 - sources."mime-db-1.35.0" 41439 - ]; 41440 - }) 41441 - sources."compression-1.7.2" 43553 + sources."compressible-2.0.14" 43554 + sources."compression-1.7.3" 41442 43555 sources."concat-map-0.0.1" 41443 43556 sources."connect-busboy-0.0.2" 41444 43557 sources."content-disposition-0.5.2" ··· 41460 43573 sources."dom-storage-2.1.0" 41461 43574 sources."domino-1.0.30" 41462 43575 sources."dtrace-provider-0.8.7" 41463 - sources."ecc-jsbn-0.1.1" 43576 + sources."ecc-jsbn-0.1.2" 41464 43577 sources."ee-first-1.1.1" 41465 43578 sources."encodeurl-1.0.2" 41466 43579 sources."entities-1.1.1" ··· 41481 43594 sources."iconv-lite-0.4.19" 41482 43595 sources."qs-6.5.1" 41483 43596 sources."raw-body-2.3.2" 43597 + sources."safe-buffer-5.1.1" 41484 43598 sources."statuses-1.4.0" 41485 43599 ]; 41486 43600 }) 41487 43601 sources."express-handlebars-3.0.0" 41488 - sources."extend-3.0.1" 43602 + sources."extend-3.0.2" 41489 43603 sources."extsprintf-1.3.0" 41490 43604 sources."fast-deep-equal-1.1.0" 41491 43605 sources."fast-json-stable-stringify-2.0.0" ··· 41524 43638 sources."inflight-1.0.6" 41525 43639 sources."inherits-2.0.3" 41526 43640 sources."invert-kv-1.0.0" 41527 - sources."ipaddr.js-1.6.0" 43641 + sources."ipaddr.js-1.8.0" 41528 43642 sources."is-arguments-1.0.2" 41529 43643 sources."is-arrayish-0.2.1" 41530 43644 sources."is-buffer-1.1.6" ··· 41581 43695 sources."merge-descriptors-1.0.1" 41582 43696 sources."methods-1.1.2" 41583 43697 sources."mime-1.4.1" 41584 - sources."mime-db-1.33.0" 41585 - sources."mime-types-2.1.18" 43698 + sources."mime-db-1.35.0" 43699 + sources."mime-types-2.1.19" 41586 43700 sources."minimatch-3.0.4" 41587 43701 sources."minimist-0.0.10" 41588 43702 (sources."mkdirp-0.5.1" // { ··· 41627 43741 sources."prfun-2.1.5" 41628 43742 sources."process-nextick-args-2.0.0" 41629 43743 sources."promise-7.3.1" 41630 - sources."proxy-addr-2.0.3" 43744 + sources."proxy-addr-2.0.4" 41631 43745 sources."punycode-1.4.1" 41632 43746 sources."qs-6.5.2" 41633 43747 sources."range-parser-1.2.0" ··· 41641 43755 sources."require-main-filename-1.0.1" 41642 43756 sources."right-align-0.1.3" 41643 43757 sources."rimraf-2.4.5" 41644 - sources."safe-buffer-5.1.1" 43758 + sources."safe-buffer-5.1.2" 41645 43759 sources."safe-json-stringify-1.2.0" 41646 43760 sources."safer-buffer-2.1.2" 41647 43761 sources."semver-5.5.0" ··· 41653 43767 (sources."serve-favicon-2.5.0" // { 41654 43768 dependencies = [ 41655 43769 sources."ms-2.1.1" 43770 + sources."safe-buffer-5.1.1" 41656 43771 ]; 41657 43772 }) 41658 43773 sources."serve-static-1.13.2" ··· 41726 43841 sha512 = "spB+D+GXdM9JcPeWG8bpnWTxfXr/KwyyZ0OjNlpyw62ffxlCsbNhwaSmhXDpDC3wh4HuQejdYc1DlU+zTXL+WA=="; 41727 43842 }; 41728 43843 dependencies = [ 41729 - sources."addr-to-ip-port-1.4.3" 43844 + sources."addr-to-ip-port-1.5.1" 41730 43845 sources."airplay-protocol-2.0.2" 41731 43846 (sources."airplayer-2.0.0" // { 41732 43847 dependencies = [ ··· 41742 43857 sources."balanced-match-1.0.0" 41743 43858 sources."base64-js-0.0.8" 41744 43859 sources."bencode-2.0.0" 41745 - sources."big-integer-1.6.32" 43860 + sources."big-integer-1.6.34" 41746 43861 sources."bitfield-0.1.0" 41747 43862 (sources."bittorrent-dht-6.4.2" // { 41748 43863 dependencies = [ ··· 41766 43881 sources."buffer-equal-0.0.1" 41767 43882 sources."buffer-equals-1.0.4" 41768 43883 sources."buffer-fill-1.0.0" 41769 - sources."buffer-from-1.1.0" 43884 + sources."buffer-from-1.1.1" 41770 43885 sources."buffer-indexof-1.1.1" 41771 43886 sources."builtin-modules-1.1.1" 41772 43887 sources."camelcase-2.1.1" ··· 41840 43955 sources."internal-ip-1.2.0" 41841 43956 sources."ip-1.1.5" 41842 43957 sources."ip-set-1.0.1" 41843 - sources."ipaddr.js-1.8.0" 43958 + sources."ipaddr.js-1.8.1" 41844 43959 sources."is-arrayish-0.2.1" 41845 43960 sources."is-builtin-module-1.0.0" 41846 43961 sources."is-finite-1.0.2" ··· 41860 43975 sources."lodash-3.10.1" 41861 43976 sources."loud-rejection-1.6.0" 41862 43977 sources."lru-2.0.1" 41863 - sources."magnet-uri-5.1.8" 43978 + sources."magnet-uri-5.2.3" 41864 43979 sources."map-obj-1.0.1" 41865 43980 sources."meow-3.7.0" 41866 43981 sources."mime-2.3.1" ··· 41966 44081 sources."speedometer-0.1.4" 41967 44082 sources."stream-buffers-2.2.0" 41968 44083 sources."string-width-1.0.2" 41969 - sources."string2compact-1.2.5" 44084 + sources."string2compact-1.3.0" 41970 44085 sources."string_decoder-1.1.1" 41971 44086 sources."strip-ansi-3.0.1" 41972 44087 sources."strip-bom-2.0.0" ··· 42027 44142 }; 42028 44143 dependencies = [ 42029 44144 sources."accepts-1.2.13" 42030 - sources."addr-to-ip-port-1.4.3" 44145 + sources."addr-to-ip-port-1.5.1" 42031 44146 sources."after-0.8.2" 42032 44147 sources."arraybuffer.slice-0.0.6" 42033 44148 sources."async-0.2.10" 42034 - sources."aws-sign-0.2.0" 44149 + sources."aws-sign-0.2.1" 42035 44150 sources."backo2-1.0.2" 42036 44151 sources."balanced-match-1.0.0" 42037 44152 sources."base64-arraybuffer-0.1.5" ··· 42065 44180 sources."buffer-equal-0.0.1" 42066 44181 sources."buffer-equals-1.0.4" 42067 44182 sources."buffer-fill-1.0.0" 42068 - sources."buffer-from-1.1.0" 44183 + sources."buffer-from-1.1.1" 42069 44184 sources."bytes-2.1.0" 42070 44185 sources."callsite-1.0.0" 42071 44186 sources."combined-stream-0.0.7" ··· 42074 44189 sources."component-bind-1.0.0" 42075 44190 sources."component-emitter-1.2.1" 42076 44191 sources."component-inherit-0.0.3" 42077 - (sources."compressible-2.0.14" // { 42078 - dependencies = [ 42079 - sources."mime-db-1.35.0" 42080 - ]; 42081 - }) 44192 + sources."compressible-2.0.14" 42082 44193 sources."compression-1.5.2" 42083 44194 sources."concat-map-0.0.1" 42084 44195 (sources."connect-2.30.2" // { ··· 42203 44314 }) 42204 44315 sources."methods-1.1.2" 42205 44316 sources."mime-1.3.4" 42206 - sources."mime-db-1.33.0" 42207 - sources."mime-types-2.1.18" 44317 + sources."mime-db-1.35.0" 44318 + sources."mime-types-2.1.19" 42208 44319 sources."mimic-response-1.0.1" 42209 44320 sources."minimatch-3.0.4" 42210 44321 sources."minimist-0.0.8" ··· 42349 44460 sources."speedometer-0.1.4" 42350 44461 sources."statuses-1.5.0" 42351 44462 sources."stream-counter-0.2.0" 42352 - sources."string2compact-1.2.5" 44463 + sources."string2compact-1.3.0" 42353 44464 sources."string_decoder-0.10.31" 42354 44465 sources."thirty-two-0.0.2" 42355 44466 sources."thunky-1.0.2" ··· 42403 44514 dependencies = [ 42404 44515 sources."ansi-regex-2.1.1" 42405 44516 sources."ansi-styles-2.2.1" 42406 - sources."asn1-0.2.3" 44517 + sources."asn1-0.2.4" 42407 44518 sources."assert-plus-0.2.0" 42408 44519 sources."async-2.6.1" 42409 44520 sources."aws-sign2-0.6.0" ··· 42427 44538 }) 42428 44539 sources."debug-0.7.4" 42429 44540 sources."delayed-stream-1.0.0" 42430 - sources."ecc-jsbn-0.1.1" 44541 + sources."ecc-jsbn-0.1.2" 42431 44542 sources."escape-string-regexp-1.0.5" 42432 - sources."extend-3.0.1" 44543 + sources."extend-3.0.2" 42433 44544 sources."extract-zip-1.5.0" 42434 44545 sources."extsprintf-1.3.0" 42435 44546 sources."fd-slicer-1.0.1" ··· 42475 44586 sources."kew-0.7.0" 42476 44587 sources."klaw-1.3.1" 42477 44588 sources."lodash-4.17.10" 42478 - sources."mime-db-1.33.0" 42479 - sources."mime-types-2.1.18" 44589 + sources."mime-db-1.35.0" 44590 + sources."mime-types-2.1.19" 42480 44591 sources."minimatch-3.0.4" 42481 44592 sources."minimist-0.0.8" 42482 44593 sources."mkdirp-0.5.0" ··· 42533 44644 prettier = nodeEnv.buildNodePackage { 42534 44645 name = "prettier"; 42535 44646 packageName = "prettier"; 42536 - version = "1.13.7"; 44647 + version = "1.14.0"; 42537 44648 src = fetchurl { 42538 - url = "https://registry.npmjs.org/prettier/-/prettier-1.13.7.tgz"; 42539 - sha512 = "KIU72UmYPGk4MujZGYMFwinB7lOf2LsDNGSOC8ufevsrPLISrZbNJlWstRi3m0AMuszbH+EFSQ/r6w56RSPK6w=="; 44649 + url = "https://registry.npmjs.org/prettier/-/prettier-1.14.0.tgz"; 44650 + sha512 = "KtQ2EGaUwf2EyDfp1fxyEb0PqGKakVm0WyXwDt6u+cAoxbO2Z2CwKvOe3+b4+F2IlO9lYHi1kqFuRM70ddBnow=="; 42540 44651 }; 42541 44652 buildInputs = globalBuildInputs; 42542 44653 meta = { ··· 42626 44737 sources."browserify-zlib-0.1.4" 42627 44738 sources."buffer-4.9.1" 42628 44739 sources."buffer-crc32-0.2.13" 42629 - sources."buffer-from-1.1.0" 44740 + sources."buffer-from-1.1.1" 42630 44741 sources."buffer-xor-1.0.3" 42631 44742 sources."builtin-status-codes-3.0.0" 42632 44743 sources."cache-base-1.0.1" ··· 42651 44762 ]; 42652 44763 }) 42653 44764 sources."collection-visit-1.0.0" 42654 - sources."colors-1.3.0" 44765 + sources."colors-1.3.1" 42655 44766 sources."combine-source-map-0.8.0" 42656 44767 sources."component-emitter-1.2.1" 42657 44768 sources."concat-map-0.0.1" ··· 43035 45146 sources."are-we-there-yet-1.1.5" 43036 45147 sources."array-flatten-1.1.1" 43037 45148 sources."asap-2.0.6" 43038 - sources."asn1-0.2.3" 45149 + sources."asn1-0.2.4" 43039 45150 sources."assert-plus-0.2.0" 43040 45151 sources."asynckit-0.4.0" 43041 45152 sources."aws-sign2-0.6.0" ··· 43059 45170 sources."center-align-0.1.3" 43060 45171 sources."character-parser-2.2.0" 43061 45172 sources."chownr-1.0.1" 43062 - sources."clean-css-4.1.11" 45173 + (sources."clean-css-4.2.0" // { 45174 + dependencies = [ 45175 + sources."source-map-0.6.1" 45176 + ]; 45177 + }) 43063 45178 sources."cliui-2.1.0" 43064 45179 sources."co-4.6.0" 43065 45180 sources."code-point-at-1.1.0" ··· 43088 45203 sources."depd-1.1.2" 43089 45204 sources."destroy-1.0.4" 43090 45205 sources."doctypes-1.1.0" 43091 - sources."ecc-jsbn-0.1.1" 45206 + sources."ecc-jsbn-0.1.2" 43092 45207 sources."ee-first-1.1.1" 43093 45208 sources."encodeurl-1.0.2" 43094 45209 sources."end-of-stream-1.4.1" ··· 43113 45228 sources."statuses-1.4.0" 43114 45229 ]; 43115 45230 }) 43116 - sources."extend-3.0.1" 45231 + sources."extend-3.0.2" 43117 45232 sources."extsprintf-1.3.0" 43118 45233 (sources."finalhandler-1.1.1" // { 43119 45234 dependencies = [ ··· 43148 45263 sources."inherits-2.0.3" 43149 45264 sources."ini-1.3.5" 43150 45265 sources."int64-buffer-0.1.10" 43151 - sources."ipaddr.js-1.6.0" 45266 + sources."ipaddr.js-1.8.0" 43152 45267 sources."is-3.2.1" 43153 45268 sources."is-buffer-1.1.6" 43154 45269 (sources."is-expression-3.0.0" // { ··· 43185 45300 sources."merge-descriptors-1.0.1" 43186 45301 sources."methods-1.1.2" 43187 45302 sources."mime-1.4.1" 43188 - sources."mime-db-1.33.0" 43189 - sources."mime-types-2.1.18" 45303 + sources."mime-db-1.35.0" 45304 + sources."mime-types-2.1.19" 43190 45305 sources."minimist-0.0.8" 43191 45306 sources."mkdirp-0.5.1" 43192 45307 sources."morgan-1.9.0" ··· 43217 45332 }) 43218 45333 sources."process-nextick-args-2.0.0" 43219 45334 sources."promise-7.3.1" 43220 - sources."proxy-addr-2.0.3" 45335 + sources."proxy-addr-2.0.4" 43221 45336 sources."prr-1.0.1" 43222 45337 sources."pug-2.0.3" 43223 45338 sources."pug-attrs-2.0.3" ··· 43459 45574 }; 43460 45575 dependencies = [ 43461 45576 sources."ajv-5.5.2" 43462 - sources."asn1-0.2.3" 45577 + sources."asn1-0.2.4" 43463 45578 sources."assert-plus-1.0.0" 43464 45579 sources."asynckit-0.4.0" 43465 45580 sources."aws-sdk-1.18.0" ··· 43486 45601 sources."dashdash-1.14.1" 43487 45602 sources."debug-3.1.0" 43488 45603 sources."delayed-stream-1.0.0" 43489 - sources."ecc-jsbn-0.1.1" 45604 + sources."ecc-jsbn-0.1.2" 43490 45605 sources."events.node-0.4.9" 43491 45606 (sources."everyauth-0.4.5" // { 43492 45607 dependencies = [ ··· 43505 45620 sources."commander-1.3.2" 43506 45621 ]; 43507 45622 }) 43508 - sources."extend-3.0.1" 45623 + sources."extend-3.0.2" 43509 45624 sources."extsprintf-1.3.0" 43510 45625 sources."fast-deep-equal-1.1.0" 43511 45626 sources."fast-json-stable-stringify-2.0.0" ··· 43530 45645 sources."keypress-0.1.0" 43531 45646 sources."methods-0.1.0" 43532 45647 sources."mime-1.2.11" 43533 - sources."mime-db-1.33.0" 43534 - sources."mime-types-2.1.18" 45648 + sources."mime-db-1.35.0" 45649 + sources."mime-types-2.1.19" 43535 45650 sources."mkdirp-0.3.5" 43536 45651 sources."ms-2.0.0" 43537 45652 sources."multiparty-2.2.0" ··· 43599 45714 serve = nodeEnv.buildNodePackage { 43600 45715 name = "serve"; 43601 45716 packageName = "serve"; 43602 - version = "9.2.0"; 45717 + version = "9.4.0"; 43603 45718 src = fetchurl { 43604 - url = "https://registry.npmjs.org/serve/-/serve-9.2.0.tgz"; 43605 - sha512 = "Of6n6QupoV+ybolrWS1e18Truux7VeYUa52XAo8no2dYKDAT+pWZZmrxf4RdCqoVTMfNWhvv8pjDnf8y1m3HkQ=="; 45719 + url = "https://registry.npmjs.org/serve/-/serve-9.4.0.tgz"; 45720 + sha512 = "a5TpnFytY2r59g0M3L9g2HvlLBcTHeevR8gTnDkzMWECfV2c8tUCEGC9tl3YYWM7xucdkUmov+xyKjWamQQJ7Q=="; 43606 45721 }; 43607 45722 dependencies = [ 43608 - sources."@zeit/schemas-1.6.0" 45723 + sources."@zeit/schemas-1.7.0" 43609 45724 sources."ajv-6.5.2" 43610 45725 sources."ansi-align-2.0.0" 43611 45726 sources."ansi-regex-3.0.0" ··· 43667 45782 sources."registry-auth-token-3.3.2" 43668 45783 sources."registry-url-3.1.0" 43669 45784 sources."safe-buffer-5.1.2" 43670 - sources."serve-handler-3.3.0" 45785 + sources."serve-handler-3.6.0" 43671 45786 sources."shebang-command-1.2.0" 43672 45787 sources."shebang-regex-1.0.0" 43673 45788 sources."signal-exit-3.0.2" ··· 43709 45824 sources."ajv-5.5.2" 43710 45825 sources."array-flatten-1.1.1" 43711 45826 sources."arraybuffer.slice-0.0.6" 43712 - sources."asn1-0.2.3" 45827 + sources."asn1-0.2.4" 43713 45828 sources."assert-plus-1.0.0" 43714 45829 sources."asynckit-0.4.0" 43715 45830 sources."aws-sign2-0.7.0" ··· 43750 45865 sources."domhandler-2.2.1" 43751 45866 sources."domutils-1.4.3" 43752 45867 sources."duplexer-0.1.1" 43753 - sources."ecc-jsbn-0.1.1" 45868 + sources."ecc-jsbn-0.1.2" 43754 45869 sources."ee-first-1.1.1" 43755 45870 sources."emitter-http://github.com/component/emitter/archive/1.0.1.tar.gz" 43756 45871 sources."encodeurl-1.0.2" ··· 43770 45885 sources."etag-1.8.1" 43771 45886 sources."event-stream-3.3.4" 43772 45887 sources."express-4.16.3" 43773 - sources."extend-3.0.1" 45888 + sources."extend-3.0.2" 43774 45889 sources."extsprintf-1.3.0" 43775 45890 sources."fast-deep-equal-1.1.0" 43776 45891 sources."fast-json-stable-stringify-2.0.0" ··· 43797 45912 sources."iconv-lite-0.4.19" 43798 45913 sources."indexof-0.0.1" 43799 45914 sources."inherits-2.0.3" 43800 - sources."ipaddr.js-1.6.0" 45915 + sources."ipaddr.js-1.8.0" 43801 45916 sources."irc-replies-2.0.1" 43802 45917 sources."is-typedarray-1.0.0" 43803 45918 sources."isarray-0.0.1" ··· 43815 45930 sources."merge-descriptors-1.0.1" 43816 45931 sources."methods-1.1.2" 43817 45932 sources."mime-1.4.1" 43818 - sources."mime-db-1.33.0" 43819 - sources."mime-types-2.1.18" 45933 + sources."mime-db-1.35.0" 45934 + sources."mime-types-2.1.19" 43820 45935 sources."minimist-0.0.8" 43821 45936 sources."mkdirp-0.5.1" 43822 45937 sources."moment-2.7.0" ··· 43835 45950 sources."path-to-regexp-0.1.7" 43836 45951 sources."pause-stream-0.0.11" 43837 45952 sources."performance-now-2.1.0" 43838 - sources."proxy-addr-2.0.3" 45953 + sources."proxy-addr-2.0.4" 43839 45954 sources."punycode-1.4.1" 43840 45955 sources."qs-6.5.1" 43841 45956 sources."range-parser-1.2.0" ··· 43933 46048 sources."argparse-1.0.10" 43934 46049 sources."array-flatten-2.1.1" 43935 46050 sources."array-uniq-1.0.3" 43936 - sources."asn1-0.2.3" 46051 + sources."asn1-0.2.4" 43937 46052 sources."assert-plus-1.0.0" 43938 46053 sources."async-0.9.2" 43939 46054 sources."asynckit-0.4.0" ··· 43944 46059 (sources."body-parser-1.18.3" // { 43945 46060 dependencies = [ 43946 46061 sources."bytes-3.0.0" 46062 + sources."http-errors-1.6.3" 43947 46063 sources."iconv-lite-0.4.23" 43948 46064 sources."qs-6.5.2" 43949 46065 sources."raw-body-2.3.3" 46066 + sources."setprototypeof-1.1.0" 46067 + sources."statuses-1.5.0" 43950 46068 ]; 43951 46069 }) 43952 46070 sources."brace-expansion-1.1.11" ··· 43959 46077 sources."color-name-1.1.1" 43960 46078 sources."combined-stream-1.0.6" 43961 46079 sources."commander-2.16.0" 43962 - (sources."compressible-2.0.14" // { 43963 - dependencies = [ 43964 - sources."mime-db-1.35.0" 43965 - ]; 43966 - }) 43967 - (sources."compression-1.7.2" // { 46080 + sources."compressible-2.0.14" 46081 + (sources."compression-1.7.3" // { 43968 46082 dependencies = [ 43969 46083 sources."bytes-3.0.0" 43970 46084 ]; ··· 43991 46105 sources."domhandler-2.4.2" 43992 46106 sources."domutils-1.7.0" 43993 46107 sources."dtrace-provider-0.8.7" 43994 - sources."ecc-jsbn-0.1.1" 46108 + sources."ecc-jsbn-0.1.2" 43995 46109 sources."ee-first-1.1.1" 43996 46110 sources."encodeurl-1.0.2" 43997 46111 sources."entities-1.1.1" ··· 44002 46116 sources."etag-1.8.1" 44003 46117 sources."express-5.0.0-alpha.6" 44004 46118 sources."express-json5-0.1.0" 44005 - sources."extend-3.0.1" 46119 + sources."extend-3.0.2" 44006 46120 sources."extsprintf-1.3.0" 44007 46121 sources."fast-deep-equal-1.1.0" 44008 46122 sources."fast-json-stable-stringify-2.0.0" ··· 44028 46142 sources."readable-stream-2.3.6" 44029 46143 ]; 44030 46144 }) 44031 - (sources."http-errors-1.6.3" // { 46145 + (sources."http-errors-1.7.0" // { 44032 46146 dependencies = [ 44033 46147 sources."setprototypeof-1.1.0" 44034 46148 sources."statuses-1.5.0" ··· 44042 46156 sources."is-typedarray-1.0.0" 44043 46157 sources."isarray-1.0.0" 44044 46158 sources."isstream-0.1.2" 44045 - sources."jju-1.3.0" 46159 + sources."jju-1.4.0" 44046 46160 sources."js-yaml-3.12.0" 44047 46161 sources."jsbn-0.1.1" 44048 46162 sources."json-schema-0.2.3" ··· 44065 46179 sources."merge-descriptors-1.0.1" 44066 46180 sources."methods-1.1.2" 44067 46181 sources."mime-1.3.4" 44068 - sources."mime-db-1.33.0" 44069 - sources."mime-types-2.1.18" 46182 + sources."mime-db-1.35.0" 46183 + sources."mime-types-2.1.19" 44070 46184 sources."minimatch-1.0.0" 44071 46185 sources."minimist-0.0.8" 44072 46186 sources."mkdirp-0.5.1" ··· 44116 46230 sources."utils-merge-1.0.1" 44117 46231 ]; 44118 46232 }) 44119 - sources."safe-buffer-5.1.1" 46233 + sources."safe-buffer-5.1.2" 44120 46234 sources."safe-json-stringify-1.2.0" 44121 46235 sources."safer-buffer-2.1.2" 44122 - sources."sanitize-html-1.18.2" 46236 + sources."sanitize-html-1.18.4" 44123 46237 sources."semver-4.3.6" 44124 - sources."send-0.15.6" 46238 + (sources."send-0.15.6" // { 46239 + dependencies = [ 46240 + (sources."http-errors-1.6.3" // { 46241 + dependencies = [ 46242 + sources."statuses-1.5.0" 46243 + ]; 46244 + }) 46245 + sources."setprototypeof-1.1.0" 46246 + ]; 46247 + }) 44125 46248 sources."serve-static-1.12.6" 44126 46249 sources."setprototypeof-1.0.3" 44127 46250 sources."sigmund-1.0.1" ··· 44134 46257 sources."string_decoder-1.1.1" 44135 46258 sources."supports-color-5.4.0" 44136 46259 sources."through-2.3.8" 46260 + sources."toidentifier-1.0.0" 44137 46261 sources."tough-cookie-2.3.4" 44138 46262 sources."tunnel-agent-0.6.0" 44139 46263 sources."tweetnacl-0.14.5" ··· 44233 46357 sources."ctype-0.5.3" 44234 46358 sources."dashdash-1.7.3" 44235 46359 sources."dtrace-provider-0.6.0" 44236 - sources."ecc-jsbn-0.1.1" 46360 + sources."ecc-jsbn-0.2.0" 44237 46361 sources."escape-regexp-component-1.0.2" 44238 46362 sources."extsprintf-1.2.0" 44239 46363 sources."formidable-1.2.1" ··· 44282 46406 sources."rimraf-2.4.5" 44283 46407 sources."safe-buffer-5.1.2" 44284 46408 sources."safe-json-stringify-1.2.0" 46409 + sources."safer-buffer-2.1.2" 44285 46410 sources."semver-4.3.6" 44286 46411 (sources."smartdc-auth-2.3.1" // { 44287 46412 dependencies = [ ··· 44311 46436 sources."spdy-1.32.5" 44312 46437 (sources."sshpk-1.7.1" // { 44313 46438 dependencies = [ 44314 - sources."asn1-0.2.3" 46439 + sources."asn1-0.2.4" 44315 46440 sources."assert-plus-0.2.0" 44316 46441 (sources."dashdash-1.14.1" // { 44317 46442 dependencies = [ ··· 44378 46503 sources."has-cors-1.1.0" 44379 46504 sources."indexof-0.0.1" 44380 46505 sources."isarray-2.0.1" 44381 - sources."mime-db-1.33.0" 44382 - sources."mime-types-2.1.18" 46506 + sources."mime-db-1.35.0" 46507 + sources."mime-types-2.1.19" 44383 46508 sources."ms-2.0.0" 44384 46509 sources."negotiator-0.6.1" 44385 46510 sources."object-component-0.0.3" ··· 44476 46601 sha1 = "6c6a0d14684f0341e5ba013eed30302545532bc6"; 44477 46602 }; 44478 46603 dependencies = [ 44479 - sources."extend-3.0.1" 46604 + sources."extend-3.0.2" 44480 46605 ]; 44481 46606 buildInputs = globalBuildInputs; 44482 46607 meta = { ··· 44653 46778 sources."amdefine-1.0.1" 44654 46779 sources."ansi-regex-2.1.1" 44655 46780 sources."ansi-styles-2.2.1" 44656 - sources."asn1-0.2.3" 46781 + sources."asn1-0.2.4" 44657 46782 sources."assert-plus-0.2.0" 44658 46783 sources."async-2.1.2" 44659 46784 sources."asynckit-0.4.0" ··· 44685 46810 sources."decamelize-1.2.0" 44686 46811 sources."delayed-stream-1.0.0" 44687 46812 sources."diff-3.2.0" 44688 - sources."ecc-jsbn-0.1.1" 46813 + sources."ecc-jsbn-0.1.2" 44689 46814 sources."escape-string-regexp-1.0.5" 44690 - sources."extend-3.0.1" 46815 + sources."extend-3.0.2" 44691 46816 sources."extsprintf-1.3.0" 44692 46817 sources."eyes-0.1.8" 44693 46818 (sources."fields-0.1.24" // { ··· 44737 46862 sources."lodash-4.17.10" 44738 46863 sources."longest-1.0.1" 44739 46864 sources."longjohn-0.2.11" 44740 - sources."mime-db-1.33.0" 44741 - sources."mime-types-2.1.18" 46865 + sources."mime-db-1.35.0" 46866 + sources."mime-types-2.1.19" 44742 46867 sources."minimist-0.0.10" 44743 46868 sources."moment-2.16.0" 44744 46869 (sources."node-appc-0.2.44" // { ··· 44824 46949 typescript = nodeEnv.buildNodePackage { 44825 46950 name = "typescript"; 44826 46951 packageName = "typescript"; 44827 - version = "2.9.2"; 46952 + version = "3.0.1"; 44828 46953 src = fetchurl { 44829 - url = "https://registry.npmjs.org/typescript/-/typescript-2.9.2.tgz"; 44830 - sha512 = "Gr4p6nFNaoufRIY4NMdpQRNmgxVIGMs4Fcu/ujdYk3nAZqk7supzBE9idmvfZIlH/Cuj//dvi+019qEue9lV0w=="; 46954 + url = "https://registry.npmjs.org/typescript/-/typescript-3.0.1.tgz"; 46955 + sha512 = "zQIMOmC+372pC/CCVLqnQ0zSBiY7HHodU7mpQdjiZddek4GMj31I3dUJ7gAs9o65X7mnRma6OokOkc6f9jjfBg=="; 44831 46956 }; 44832 46957 buildInputs = globalBuildInputs; 44833 46958 meta = { ··· 44867 46992 ]; 44868 46993 }) 44869 46994 sources."brace-expansion-1.1.11" 44870 - sources."buffer-from-1.1.0" 46995 + sources."buffer-from-1.1.1" 44871 46996 sources."camelcase-4.1.0" 44872 46997 sources."capture-stack-trace-1.0.0" 44873 46998 sources."chalk-1.1.3" ··· 44899 47024 sources."escape-string-regexp-1.0.5" 44900 47025 sources."execa-0.7.0" 44901 47026 sources."exit-hook-1.1.1" 44902 - sources."extend-3.0.1" 47027 + sources."extend-3.0.2" 44903 47028 sources."form-data-2.3.2" 44904 47029 sources."fs.realpath-1.0.0" 44905 47030 sources."function-bind-1.1.1" ··· 44950 47075 sources."make-dir-1.3.0" 44951 47076 sources."make-error-1.3.4" 44952 47077 sources."make-error-cause-1.2.2" 44953 - sources."mime-db-1.33.0" 44954 - sources."mime-types-2.1.18" 47078 + sources."mime-db-1.35.0" 47079 + sources."mime-types-2.1.19" 44955 47080 sources."minimatch-3.0.4" 44956 47081 sources."minimist-1.2.0" 44957 47082 (sources."mkdirp-0.5.1" // { ··· 44985 47110 sources."process-nextick-args-2.0.0" 44986 47111 sources."promise-finally-3.0.0" 44987 47112 sources."pseudomap-1.0.2" 44988 - sources."psl-1.1.28" 47113 + sources."psl-1.1.29" 44989 47114 sources."punycode-1.4.1" 44990 47115 sources."rc-1.2.8" 44991 47116 sources."readable-stream-2.3.6" ··· 45058 47183 uglify-js = nodeEnv.buildNodePackage { 45059 47184 name = "uglify-js"; 45060 47185 packageName = "uglify-js"; 45061 - version = "3.4.4"; 47186 + version = "3.4.6"; 45062 47187 src = fetchurl { 45063 - url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.4.4.tgz"; 45064 - sha512 = "RiB1kNcC9RMyqwRrjXC+EjgLoXULoDnCaOnEDzUCHkBN0bHwmtF5rzDMiDWU29gu0kXCRRWwtcTAVFWRECmU2Q=="; 47188 + url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.4.6.tgz"; 47189 + sha512 = "O1D7L6WcOzS1qW2ehopEm4cWm5yA6bQBozlks8jO8ODxYCy4zv+bR/la4Lwp01tpkYGNonnpXvUpYtrvSu8Yzg=="; 45065 47190 }; 45066 47191 dependencies = [ 45067 47192 sources."commander-2.16.0" ··· 45079 47204 ungit = nodeEnv.buildNodePackage { 45080 47205 name = "ungit"; 45081 47206 packageName = "ungit"; 45082 - version = "1.4.29"; 47207 + version = "1.4.31"; 45083 47208 src = fetchurl { 45084 - url = "https://registry.npmjs.org/ungit/-/ungit-1.4.29.tgz"; 45085 - sha512 = "0aahbSMJj2FX4rpU6Rkp0eeW7SGKvWA8zGECRCJdfZ5wMAxFRzwddincC/8FOAIReM2jng6d75XeNrNsQdMB7w=="; 47209 + url = "https://registry.npmjs.org/ungit/-/ungit-1.4.31.tgz"; 47210 + sha512 = "ppS9UXM6/Gb3UT9JOydlxHnk409A+tVRjwrPYvkOL7QzytE+tvD7L6qu0pExES6bl9mvoNitvNVHMTFayXsNJg=="; 45086 47211 }; 45087 47212 dependencies = [ 45088 47213 sources."abbrev-1.1.1" ··· 45100 47225 }) 45101 47226 sources."array-flatten-1.1.1" 45102 47227 sources."arraybuffer.slice-0.0.7" 45103 - sources."asn1-0.2.3" 47228 + sources."asn1-0.2.4" 45104 47229 sources."assert-plus-1.0.0" 45105 47230 sources."async-0.9.2" 45106 47231 sources."async-limiter-1.0.0" ··· 45118 47243 sources."blueimp-md5-2.10.0" 45119 47244 sources."body-parser-1.18.3" 45120 47245 sources."brace-expansion-1.1.11" 45121 - sources."buffer-from-1.1.0" 47246 + sources."buffer-from-1.1.1" 45122 47247 sources."builtin-modules-1.1.1" 45123 47248 sources."builtins-1.0.3" 45124 47249 sources."bytes-3.0.0" ··· 45139 47264 sources."color-3.0.0" 45140 47265 sources."color-convert-1.9.2" 45141 47266 sources."color-name-1.1.1" 45142 - sources."color-string-1.5.2" 47267 + sources."color-string-1.5.3" 45143 47268 sources."colors-1.0.3" 45144 47269 sources."combined-stream-0.0.7" 45145 47270 sources."component-bind-1.0.0" ··· 45177 47302 sources."diff2html-2.3.3" 45178 47303 sources."dnd-page-scroll-0.0.4" 45179 47304 sources."eachr-3.2.0" 45180 - sources."ecc-jsbn-0.1.1" 47305 + sources."ecc-jsbn-0.1.2" 45181 47306 sources."editions-1.3.4" 45182 47307 sources."ee-first-1.1.1" 45183 47308 sources."encodeurl-1.0.2" ··· 45267 47392 sources."inherits-2.0.3" 45268 47393 sources."ini-1.3.5" 45269 47394 sources."invert-kv-1.0.0" 45270 - sources."ipaddr.js-1.6.0" 47395 + sources."ipaddr.js-1.8.0" 45271 47396 sources."is-arrayish-0.3.2" 45272 47397 sources."is-builtin-module-1.0.0" 45273 47398 sources."is-fullwidth-code-point-1.0.0" ··· 45309 47434 sources."merge-descriptors-1.0.1" 45310 47435 sources."methods-1.1.2" 45311 47436 sources."mime-1.4.1" 45312 - sources."mime-db-1.33.0" 45313 - sources."mime-types-2.1.18" 47437 + sources."mime-db-1.35.0" 47438 + sources."mime-types-2.1.19" 45314 47439 sources."mimic-fn-1.2.0" 45315 47440 sources."minimatch-3.0.4" 45316 47441 sources."minimist-0.0.8" ··· 45357 47482 sources."pause-0.0.1" 45358 47483 sources."performance-now-2.1.0" 45359 47484 sources."process-nextick-args-2.0.0" 45360 - sources."proxy-addr-2.0.3" 47485 + sources."proxy-addr-2.0.4" 45361 47486 sources."pseudomap-1.0.2" 45362 47487 sources."punycode-1.4.1" 45363 47488 sources."qs-6.5.2" 45364 47489 sources."random-bytes-1.0.0" 45365 47490 sources."range-parser-1.2.0" 45366 - sources."raven-js-3.26.3" 47491 + sources."raven-js-3.26.4" 45367 47492 sources."raw-body-2.3.3" 45368 47493 (sources."rc-1.2.8" // { 45369 47494 dependencies = [ ··· 45376 47501 dependencies = [ 45377 47502 sources."combined-stream-1.0.6" 45378 47503 sources."delayed-stream-1.0.0" 45379 - sources."extend-3.0.1" 47504 + sources."extend-3.0.2" 45380 47505 sources."form-data-2.3.2" 45381 47506 ]; 45382 47507 }) ··· 45441 47566 sources."cookiejar-2.1.2" 45442 47567 sources."debug-3.1.0" 45443 47568 sources."delayed-stream-1.0.0" 45444 - sources."extend-3.0.1" 47569 + sources."extend-3.0.2" 45445 47570 sources."form-data-2.3.2" 45446 47571 sources."formidable-1.2.1" 45447 47572 sources."isarray-1.0.0" ··· 45535 47660 sources."array-union-1.0.2" 45536 47661 sources."array-uniq-1.0.3" 45537 47662 sources."arrify-1.0.1" 45538 - sources."asn1-0.2.3" 47663 + sources."asn1-0.2.4" 45539 47664 sources."assert-plus-1.0.0" 45540 47665 sources."async-2.6.1" 45541 47666 sources."asynckit-0.4.0" ··· 45603 47728 sources."download-5.0.3" 45604 47729 sources."download-git-repo-1.0.2" 45605 47730 sources."duplexer3-0.1.4" 45606 - sources."ecc-jsbn-0.1.1" 47731 + sources."ecc-jsbn-0.1.2" 45607 47732 sources."enable-1.3.2" 45608 47733 sources."end-of-stream-1.4.1" 45609 47734 sources."escape-string-regexp-1.0.5" 45610 47735 sources."esprima-4.0.1" 45611 - sources."extend-3.0.1" 47736 + sources."extend-3.0.2" 45612 47737 sources."extend-shallow-2.0.1" 45613 47738 sources."external-editor-3.0.0" 45614 47739 sources."extsprintf-1.3.0" ··· 45699 47824 sources."supports-color-2.0.0" 45700 47825 ]; 45701 47826 }) 45702 - sources."mime-db-1.33.0" 45703 - sources."mime-types-2.1.18" 47827 + sources."mime-db-1.35.0" 47828 + sources."mime-types-2.1.19" 45704 47829 sources."mimic-fn-1.2.0" 45705 47830 sources."minimatch-3.0.4" 45706 47831 sources."minimist-0.0.8" ··· 45824 47949 sources."adm-zip-0.4.11" 45825 47950 sources."ansi-regex-2.1.1" 45826 47951 sources."ansi-styles-2.2.1" 45827 - sources."asn1-0.2.3" 47952 + sources."asn1-0.2.4" 45828 47953 sources."assert-plus-0.2.0" 45829 47954 sources."async-2.6.1" 45830 47955 sources."aws-sign2-0.6.0" ··· 45853 47978 }) 45854 47979 sources."debug-0.7.4" 45855 47980 sources."delayed-stream-1.0.0" 45856 - sources."ecc-jsbn-0.1.1" 47981 + sources."ecc-jsbn-0.1.2" 45857 47982 sources."escape-string-regexp-1.0.5" 45858 - sources."extend-3.0.1" 47983 + sources."extend-3.0.2" 45859 47984 (sources."extract-zip-1.5.0" // { 45860 47985 dependencies = [ 45861 47986 sources."mkdirp-0.5.0" ··· 45907 48032 sources."kew-0.1.7" 45908 48033 sources."klaw-1.3.1" 45909 48034 sources."lodash-4.17.10" 45910 - sources."mime-db-1.33.0" 45911 - sources."mime-types-2.1.18" 48035 + sources."mime-db-1.35.0" 48036 + sources."mime-types-2.1.19" 45912 48037 sources."minimatch-3.0.4" 45913 48038 sources."minimist-0.0.8" 45914 48039 sources."mkdirp-0.3.5" ··· 45978 48103 webpack = nodeEnv.buildNodePackage { 45979 48104 name = "webpack"; 45980 48105 packageName = "webpack"; 45981 - version = "4.16.0"; 48106 + version = "4.16.4"; 45982 48107 src = fetchurl { 45983 - url = "https://registry.npmjs.org/webpack/-/webpack-4.16.0.tgz"; 45984 - sha512 = "oNx9djAd6uAcccyfqN3hyXLNMjZHiRySZmBQ4c8FNmf1SNJGhx7n9TSvHNyXxgToRdH65g/Q97s94Ip9N6F7xg=="; 48108 + url = "https://registry.npmjs.org/webpack/-/webpack-4.16.4.tgz"; 48109 + sha512 = "RqUfwp4qMqv3oFwBQQOoK69C2tdu2FHJEqPABPqgjGDvOIOLqkTOhmmdJjpiRabzNAAH1ahmkA3z4xowlHN+VA=="; 45985 48110 }; 45986 48111 dependencies = [ 45987 48112 sources."@webassemblyjs/ast-1.5.13" ··· 46051 48176 sources."browserify-sign-4.0.4" 46052 48177 sources."browserify-zlib-0.2.0" 46053 48178 sources."buffer-4.9.1" 46054 - sources."buffer-from-1.1.0" 48179 + sources."buffer-from-1.1.1" 46055 48180 sources."buffer-xor-1.0.3" 46056 48181 sources."builtin-status-codes-3.0.0" 46057 48182 sources."cacache-10.0.4" ··· 46106 48231 sources."end-of-stream-1.4.1" 46107 48232 sources."enhanced-resolve-4.1.0" 46108 48233 sources."errno-0.1.7" 46109 - sources."eslint-scope-3.7.3" 48234 + sources."eslint-scope-4.0.0" 46110 48235 sources."esrecurse-4.2.1" 46111 48236 sources."estraverse-4.2.0" 46112 48237 sources."events-1.1.1" ··· 46359 48484 ]; 46360 48485 }) 46361 48486 sources."stream-browserify-2.0.1" 46362 - sources."stream-each-1.2.2" 48487 + sources."stream-each-1.2.3" 46363 48488 sources."stream-http-2.8.3" 46364 48489 sources."stream-shift-1.0.0" 46365 48490 sources."string_decoder-1.1.1" ··· 46447 48572 sha512 = "NnBAGkD64CRsl9edM9q0QU+ku6nCX32nM0U+YC8Gs/36c8y+5m9Tya3mWIux3oZKZ54yGiVtnok4tUpqDE5tMA=="; 46448 48573 }; 46449 48574 dependencies = [ 46450 - sources."addr-to-ip-port-1.4.3" 48575 + sources."addr-to-ip-port-1.5.1" 46451 48576 sources."airplay-js-0.3.0" 46452 - sources."ansi-regex-2.1.1" 46453 - sources."aproba-1.2.0" 46454 - sources."are-we-there-yet-1.1.5" 46455 48577 sources."ascli-0.3.0" 46456 48578 sources."async-limiter-1.0.0" 46457 48579 sources."balanced-match-1.0.0" 46458 48580 sources."bencode-2.0.0" 46459 48581 sources."binary-search-1.3.4" 46460 - sources."bindings-1.3.0" 46461 48582 sources."bitfield-2.0.0" 46462 48583 (sources."bittorrent-dht-8.4.0" // { 46463 48584 dependencies = [ 46464 48585 sources."debug-3.1.0" 46465 48586 ]; 46466 48587 }) 46467 - sources."bittorrent-peerid-1.2.0" 46468 - (sources."bittorrent-protocol-2.4.2" // { 48588 + sources."bittorrent-peerid-1.3.0" 48589 + (sources."bittorrent-protocol-3.0.1" // { 46469 48590 dependencies = [ 46470 48591 sources."debug-3.1.0" 46471 48592 ]; 46472 48593 }) 46473 - (sources."bittorrent-tracker-9.9.1" // { 48594 + (sources."bittorrent-tracker-9.10.0" // { 46474 48595 dependencies = [ 46475 48596 sources."debug-3.1.0" 46476 48597 sources."simple-get-3.0.2" 46477 48598 ]; 46478 48599 }) 46479 - sources."bl-1.2.2" 46480 48600 sources."blob-to-buffer-1.2.8" 46481 48601 sources."block-stream2-1.1.0" 46482 48602 sources."bn.js-4.11.8" ··· 46486 48606 sources."buffer-alloc-unsafe-1.1.0" 46487 48607 sources."buffer-equals-1.0.4" 46488 48608 sources."buffer-fill-1.0.0" 46489 - sources."buffer-from-1.1.0" 48609 + sources."buffer-from-1.1.1" 46490 48610 sources."buffer-indexof-1.1.1" 46491 - sources."bufferutil-3.0.5" 48611 + sources."bufferutil-4.0.0" 46492 48612 sources."bufferview-1.0.1" 46493 48613 sources."bytebuffer-3.5.5" 46494 48614 sources."castv2-0.1.9" 46495 48615 sources."castv2-client-1.2.0" 46496 - sources."chownr-1.0.1" 46497 48616 (sources."chromecasts-1.9.1" // { 46498 48617 dependencies = [ 46499 48618 sources."mime-1.6.0" ··· 46502 48621 sources."chunk-store-stream-2.1.0" 46503 48622 sources."clivas-0.2.0" 46504 48623 sources."closest-to-2.0.0" 46505 - sources."code-point-at-1.1.0" 46506 48624 sources."colour-0.7.1" 46507 48625 sources."compact2string-1.4.0" 46508 48626 sources."concat-map-0.0.1" 46509 48627 sources."concat-stream-1.6.2" 46510 - sources."console-control-strings-1.1.0" 46511 48628 sources."core-util-is-1.0.2" 46512 - sources."create-torrent-3.32.0" 48629 + sources."create-torrent-3.32.1" 46513 48630 sources."debug-2.6.9" 46514 48631 sources."decompress-response-3.3.0" 46515 - sources."deep-extend-0.6.0" 46516 48632 sources."defined-1.0.0" 46517 - sources."delegates-1.0.0" 46518 - sources."detect-libc-1.0.3" 46519 48633 (sources."dlnacasts-0.1.0" // { 46520 48634 dependencies = [ 46521 48635 sources."mime-1.6.0" ··· 46531 48645 sources."elementtree-0.1.7" 46532 48646 sources."end-of-stream-1.4.1" 46533 48647 sources."executable-4.1.1" 46534 - sources."expand-template-1.1.1" 46535 48648 sources."filestream-4.1.3" 46536 48649 sources."flatten-1.0.2" 46537 48650 (sources."fs-chunk-store-1.7.0" // { ··· 46539 48652 sources."thunky-1.0.2" 46540 48653 ]; 46541 48654 }) 46542 - sources."fs-constants-1.0.0" 46543 48655 sources."fs.realpath-1.0.0" 46544 - sources."gauge-2.7.4" 46545 48656 sources."get-browser-rtc-1.0.2" 46546 48657 sources."get-stdin-6.0.0" 46547 - sources."github-from-package-0.0.0" 46548 48658 sources."glob-7.1.2" 46549 - sources."has-unicode-2.0.1" 46550 48659 sources."he-1.1.1" 46551 48660 sources."immediate-chunk-store-1.0.8" 46552 48661 sources."inflight-1.0.6" 46553 48662 sources."inherits-2.0.3" 46554 - sources."ini-1.3.5" 46555 48663 sources."ip-1.1.5" 46556 48664 sources."ip-set-1.0.1" 46557 - sources."ipaddr.js-1.8.0" 48665 + sources."ipaddr.js-1.8.1" 46558 48666 sources."is-ascii-1.0.0" 46559 48667 sources."is-file-1.0.0" 46560 - sources."is-fullwidth-code-point-1.0.0" 46561 48668 sources."is-typedarray-1.0.0" 46562 48669 sources."isarray-1.0.0" 46563 48670 sources."junk-2.1.0" ··· 46565 48672 sources."k-rpc-5.0.0" 46566 48673 sources."k-rpc-socket-1.8.0" 46567 48674 sources."last-one-wins-1.0.4" 46568 - sources."load-ip-set-1.3.1" 46569 - sources."long-2.4.0" 46570 - sources."lru-3.1.0" 46571 - sources."magnet-uri-5.1.8" 46572 - (sources."mdns-js-0.5.0" // { 48675 + (sources."load-ip-set-2.1.0" // { 46573 48676 dependencies = [ 46574 - sources."semver-5.1.1" 48677 + sources."simple-get-3.0.2" 46575 48678 ]; 46576 48679 }) 48680 + sources."long-2.4.0" 48681 + sources."lru-3.1.0" 48682 + sources."magnet-uri-5.2.3" 48683 + sources."mdns-js-0.5.0" 46577 48684 sources."mdns-js-packet-0.2.0" 46578 48685 sources."mediasource-2.2.1" 46579 48686 sources."memory-chunk-store-1.3.0" ··· 46587 48694 ]; 46588 48695 }) 46589 48696 sources."moment-2.22.2" 46590 - sources."mp4-box-encoding-1.1.4" 48697 + sources."mp4-box-encoding-1.3.0" 46591 48698 sources."mp4-stream-2.0.3" 46592 48699 sources."ms-2.0.0" 46593 48700 (sources."multicast-dns-6.2.3" // { ··· 46596 48703 ]; 46597 48704 }) 46598 48705 sources."multistream-2.1.1" 46599 - sources."nan-2.10.0" 46600 48706 sources."netmask-1.0.6" 46601 48707 sources."network-address-1.1.2" 46602 48708 sources."next-event-1.0.0" 46603 - sources."node-abi-2.4.3" 48709 + sources."node-gyp-build-3.4.0" 46604 48710 sources."node-ssdp-2.9.1" 46605 48711 sources."nodebmc-0.0.7" 46606 - sources."noop-logger-0.1.1" 46607 - sources."npmlog-4.1.2" 46608 - sources."number-is-nan-1.0.1" 46609 - sources."object-assign-4.1.1" 46610 48712 sources."once-1.4.0" 46611 48713 sources."open-0.0.5" 46612 48714 sources."optjs-3.2.2" 46613 - sources."os-homedir-1.0.2" 46614 48715 sources."package-json-versionify-1.0.4" 46615 48716 sources."parse-numeric-range-0.0.2" 46616 - (sources."parse-torrent-6.0.1" // { 48717 + (sources."parse-torrent-6.1.1" // { 46617 48718 dependencies = [ 46618 48719 sources."simple-get-3.0.2" 46619 48720 ]; ··· 46624 48725 (sources."plist-with-patches-0.5.1" // { 46625 48726 dependencies = [ 46626 48727 sources."xmlbuilder-0.4.3" 46627 - ]; 46628 - }) 46629 - (sources."prebuild-install-4.0.0" // { 46630 - dependencies = [ 46631 - sources."pump-2.0.1" 46632 48728 ]; 46633 48729 }) 46634 48730 sources."prettier-bytes-1.0.4" ··· 46642 48738 sources."randombytes-2.0.6" 46643 48739 sources."range-parser-1.2.0" 46644 48740 sources."range-slice-stream-1.2.0" 46645 - sources."rc-1.2.8" 46646 48741 sources."readable-stream-2.3.6" 46647 48742 sources."record-cache-1.1.0" 46648 - (sources."render-media-3.1.0" // { 48743 + (sources."render-media-3.1.2" // { 46649 48744 dependencies = [ 46650 48745 sources."debug-3.1.0" 46651 48746 ]; ··· 46657 48752 sources."rusha-0.8.13" 46658 48753 sources."safe-buffer-5.1.2" 46659 48754 sources."sax-1.1.4" 46660 - sources."semver-5.5.0" 46661 - sources."set-blocking-2.0.0" 46662 - sources."signal-exit-3.0.2" 48755 + sources."semver-5.1.1" 46663 48756 sources."simple-concat-1.0.0" 46664 48757 sources."simple-get-2.8.1" 46665 48758 (sources."simple-peer-9.1.2" // { ··· 46668 48761 ]; 46669 48762 }) 46670 48763 sources."simple-sha1-2.1.1" 46671 - (sources."simple-websocket-7.0.2" // { 48764 + (sources."simple-websocket-7.2.0" // { 46672 48765 dependencies = [ 46673 48766 sources."debug-3.1.0" 46674 - sources."ws-4.1.0" 46675 48767 ]; 46676 48768 }) 46677 48769 sources."speedometer-1.1.0" ··· 46679 48771 sources."stream-to-blob-1.0.1" 46680 48772 sources."stream-to-blob-url-2.1.1" 46681 48773 sources."stream-with-known-length-to-buffer-1.0.2" 46682 - sources."string-width-1.0.2" 46683 - sources."string2compact-1.2.5" 48774 + sources."string2compact-1.3.0" 46684 48775 sources."string_decoder-1.1.1" 46685 - sources."strip-ansi-3.0.1" 46686 - sources."strip-json-comments-2.0.1" 46687 - (sources."tar-fs-1.16.3" // { 46688 - dependencies = [ 46689 - sources."pump-1.0.3" 46690 - ]; 46691 - }) 46692 - sources."tar-stream-1.6.1" 46693 48776 sources."thirty-two-1.0.2" 46694 48777 sources."through-2.3.8" 46695 48778 sources."thunky-0.1.0" 46696 48779 sources."to-arraybuffer-1.0.1" 46697 - sources."to-buffer-1.1.1" 46698 - (sources."torrent-discovery-8.4.1" // { 48780 + (sources."torrent-discovery-9.0.2" // { 46699 48781 dependencies = [ 46700 48782 sources."debug-3.1.0" 46701 48783 ]; 46702 48784 }) 46703 - sources."torrent-piece-1.1.2" 46704 - sources."tunnel-agent-0.6.0" 48785 + sources."torrent-piece-2.0.0" 46705 48786 sources."typedarray-0.0.6" 46706 48787 sources."typedarray-to-buffer-3.1.5" 46707 - sources."uint64be-1.0.1" 48788 + sources."uint64be-2.0.2" 46708 48789 sources."uniq-1.0.1" 46709 48790 sources."unordered-array-remove-1.0.2" 46710 48791 sources."upnp-device-client-1.0.2" ··· 46716 48797 ]; 46717 48798 }) 46718 48799 sources."ut_pex-1.2.1" 48800 + sources."utf-8-validate-5.0.1" 46719 48801 sources."util-deprecate-1.0.2" 46720 - (sources."videostream-2.4.3" // { 46721 - dependencies = [ 46722 - sources."pump-1.0.3" 46723 - ]; 46724 - }) 48802 + sources."videostream-2.5.1" 46725 48803 sources."vlc-command-1.1.1" 46726 - (sources."webtorrent-0.100.0" // { 48804 + (sources."webtorrent-0.101.2" // { 46727 48805 dependencies = [ 46728 48806 sources."debug-3.1.0" 46729 48807 sources."simple-get-3.0.2" 46730 48808 ]; 46731 48809 }) 46732 - sources."which-pm-runs-1.0.0" 46733 - sources."wide-align-1.1.3" 46734 48810 sources."winreg-1.2.4" 46735 48811 sources."wrappy-1.0.2" 46736 - sources."ws-5.2.2" 48812 + sources."ws-6.0.0" 46737 48813 sources."xml2js-0.4.19" 46738 48814 sources."xmlbuilder-9.0.7" 46739 48815 sources."xmldom-0.1.27" ··· 46752 48828 web-ext = nodeEnv.buildNodePackage { 46753 48829 name = "web-ext"; 46754 48830 packageName = "web-ext"; 46755 - version = "2.7.0"; 48831 + version = "2.8.0"; 46756 48832 src = fetchurl { 46757 - url = "https://registry.npmjs.org/web-ext/-/web-ext-2.7.0.tgz"; 46758 - sha512 = "hXj/MV/x6G0oxplOirV4/j7BJ5MZJ2yZHml0gulBr7mH2BMNyTJHdRi+qzVBNPFdBMLV0/PS05YGZ7xr2YmwVA=="; 48833 + url = "https://registry.npmjs.org/web-ext/-/web-ext-2.8.0.tgz"; 48834 + sha512 = "3JuPYU3yrefysm3pvGwRP5k9plRMPUeLo5KLp2TSnE9g4t7x6SeIWZEWWG3jwVeFsPQuIj3sAuVHEDO5ai9mCw=="; 46759 48835 }; 46760 48836 dependencies = [ 46761 48837 sources."@cliqz-oss/firefox-client-0.3.1" 46762 48838 sources."@cliqz-oss/node-firefox-connect-1.2.1" 46763 - sources."@types/node-10.5.2" 48839 + sources."@types/node-10.5.5" 46764 48840 sources."JSONSelect-0.2.1" 46765 48841 sources."abbrev-1.1.1" 46766 48842 sources."acorn-5.7.1" 46767 - (sources."acorn-jsx-3.0.1" // { 46768 - dependencies = [ 46769 - sources."acorn-3.3.0" 46770 - ]; 46771 - }) 48843 + sources."acorn-jsx-4.1.1" 46772 48844 sources."adbkit-2.11.0" 46773 48845 sources."adbkit-logcat-1.1.0" 46774 48846 sources."adbkit-monkey-1.0.1" 46775 - (sources."addons-linter-1.0.0" // { 48847 + (sources."addons-linter-1.2.6" // { 46776 48848 dependencies = [ 46777 - sources."decamelize-1.2.0" 46778 48849 sources."source-map-0.6.1" 46779 48850 sources."source-map-support-0.5.6" 46780 - sources."yargs-11.0.0" 48851 + sources."yargs-12.0.1" 46781 48852 ]; 46782 48853 }) 46783 48854 sources."adm-zip-0.4.11" 46784 48855 sources."agent-base-4.2.1" 46785 - sources."ajv-6.5.0" 46786 - sources."ajv-keywords-2.1.1" 46787 - sources."ajv-merge-patch-3.0.0" 46788 - sources."anchor-markdown-header-0.5.7" 48856 + sources."ajv-6.5.2" 48857 + sources."ajv-keywords-3.2.0" 48858 + sources."ajv-merge-patch-4.1.0" 46789 48859 sources."ansi-align-2.0.0" 46790 48860 sources."ansi-escapes-3.1.0" 46791 48861 sources."ansi-regex-2.1.1" ··· 46804 48874 sources."arr-diff-4.0.0" 46805 48875 sources."arr-flatten-1.1.0" 46806 48876 sources."arr-union-3.1.0" 48877 + sources."array-differ-1.0.0" 46807 48878 sources."array-filter-0.0.1" 46808 48879 sources."array-from-2.1.1" 46809 48880 sources."array-map-0.0.0" ··· 46813 48884 sources."array-unique-0.3.2" 46814 48885 sources."arrify-1.0.1" 46815 48886 sources."asap-2.0.6" 46816 - sources."asn1-0.2.3" 48887 + sources."asn1-0.2.4" 46817 48888 sources."assert-plus-1.0.0" 46818 48889 sources."assign-symbols-1.0.0" 46819 48890 sources."ast-types-0.11.5" ··· 46847 48918 sources."babel-traverse-6.26.0" 46848 48919 sources."babel-types-6.26.0" 46849 48920 sources."babylon-6.18.0" 46850 - sources."bail-1.0.3" 46851 48921 sources."balanced-match-1.0.0" 46852 48922 (sources."base-0.11.2" // { 46853 48923 dependencies = [ ··· 46860 48930 sources."bl-1.2.2" 46861 48931 sources."bluebird-2.9.34" 46862 48932 sources."boolbase-1.0.0" 46863 - sources."boom-4.3.1" 46864 48933 sources."bops-0.1.1" 46865 - sources."boundary-1.0.1" 46866 48934 sources."boxen-1.3.0" 46867 48935 sources."brace-expansion-1.1.11" 46868 48936 (sources."braces-2.3.2" // { ··· 46870 48938 sources."extend-shallow-2.0.1" 46871 48939 ]; 46872 48940 }) 46873 - (sources."buffer-5.1.0" // { 48941 + (sources."buffer-5.2.0" // { 46874 48942 dependencies = [ 46875 48943 sources."base64-js-1.3.0" 46876 48944 ]; ··· 46880 48948 sources."buffer-crc32-0.2.13" 46881 48949 sources."buffer-equal-constant-time-1.0.1" 46882 48950 sources."buffer-fill-1.0.0" 46883 - sources."buffer-from-1.1.0" 48951 + sources."buffer-from-1.1.1" 46884 48952 sources."builtin-modules-1.1.1" 46885 48953 sources."bunyan-1.8.12" 46886 48954 sources."bytes-3.0.0" ··· 46890 48958 sources."camelcase-4.1.0" 46891 48959 sources."capture-stack-trace-1.0.0" 46892 48960 sources."caseless-0.12.0" 46893 - sources."ccount-1.0.3" 46894 48961 (sources."chalk-2.4.0" // { 46895 48962 dependencies = [ 46896 48963 sources."ansi-styles-3.2.1" 46897 48964 sources."supports-color-5.4.0" 46898 48965 ]; 46899 48966 }) 46900 - sources."character-entities-1.2.2" 46901 - sources."character-entities-html4-1.1.2" 46902 - sources."character-entities-legacy-1.1.2" 46903 - sources."character-reference-invalid-1.1.2" 46904 48967 sources."chardet-0.4.2" 46905 48968 sources."cheerio-1.0.0-rc.2" 46906 48969 sources."chokidar-2.0.4" ··· 46935 48998 sources."clone-deep-0.3.0" 46936 48999 sources."co-4.6.0" 46937 49000 sources."code-point-at-1.1.0" 46938 - sources."collapse-white-space-1.0.4" 46939 49001 sources."collection-visit-1.0.0" 46940 49002 sources."color-convert-1.9.2" 46941 49003 sources."color-name-1.1.1" ··· 46943 49005 sources."columnify-1.5.4" 46944 49006 sources."combined-stream-1.0.6" 46945 49007 sources."commander-2.16.0" 46946 - sources."common-tags-1.7.2" 49008 + sources."common-tags-1.8.0" 46947 49009 sources."component-emitter-1.2.1" 46948 49010 sources."compress-commons-1.2.2" 46949 49011 sources."concat-map-0.0.1" ··· 46953 49015 sources."copy-descriptor-0.1.1" 46954 49016 sources."core-js-2.5.7" 46955 49017 sources."core-util-is-1.0.2" 46956 - sources."crc-3.7.0" 49018 + sources."crc-3.8.0" 46957 49019 sources."crc32-stream-2.0.0" 46958 49020 sources."create-error-class-3.0.2" 46959 - sources."cross-spawn-5.1.0" 49021 + sources."cross-spawn-6.0.5" 46960 49022 sources."crx-parser-0.1.2" 46961 - (sources."cryptiles-3.1.2" // { 46962 - dependencies = [ 46963 - sources."boom-5.2.0" 46964 - ]; 46965 - }) 46966 49023 sources."crypto-random-string-1.0.0" 46967 49024 sources."css-select-1.2.0" 46968 49025 sources."css-what-2.1.0" ··· 46981 49038 sources."deep-extend-0.6.0" 46982 49039 sources."deep-is-0.1.3" 46983 49040 sources."deepcopy-0.6.3" 46984 - sources."deepmerge-2.1.0" 49041 + sources."deepmerge-2.1.1" 46985 49042 sources."defaults-1.0.3" 49043 + sources."define-properties-1.1.2" 46986 49044 sources."define-property-2.0.2" 46987 49045 sources."degenerator-1.0.4" 46988 49046 sources."del-2.2.2" 46989 49047 sources."delayed-stream-1.0.0" 46990 49048 sources."depd-1.1.2" 46991 49049 sources."detect-indent-4.0.0" 46992 - (sources."dispensary-0.18.0" // { 49050 + (sources."dispensary-0.21.0" // { 46993 49051 dependencies = [ 49052 + sources."ansi-styles-3.2.1" 46994 49053 sources."async-2.6.1" 46995 - sources."decamelize-1.2.0" 49054 + sources."chalk-2.4.1" 49055 + sources."pino-4.17.6" 46996 49056 sources."source-map-0.6.1" 46997 49057 sources."source-map-support-0.5.6" 46998 - sources."yargs-11.0.0" 49058 + sources."supports-color-5.4.0" 49059 + sources."yargs-12.0.1" 46999 49060 ]; 47000 49061 }) 47001 - sources."doctoc-1.3.1" 47002 49062 sources."doctrine-2.1.0" 47003 49063 (sources."dom-serializer-0.1.0" // { 47004 49064 dependencies = [ ··· 47011 49071 sources."dot-prop-4.2.0" 47012 49072 sources."dtrace-provider-0.8.7" 47013 49073 sources."duplexer3-0.1.4" 47014 - sources."ecc-jsbn-0.1.1" 49074 + sources."ecc-jsbn-0.1.2" 47015 49075 sources."ecdsa-sig-formatter-1.0.10" 47016 49076 sources."email-validator-2.0.4" 47017 - sources."emoji-regex-6.1.3" 47018 49077 sources."encoding-0.1.12" 47019 49078 sources."end-of-stream-1.4.1" 47020 49079 sources."entities-1.1.1" 47021 49080 sources."error-ex-1.3.2" 49081 + sources."es-abstract-1.12.0" 49082 + sources."es-to-primitive-1.1.1" 47022 49083 sources."es5-ext-0.10.45" 47023 49084 sources."es6-error-4.1.1" 47024 49085 sources."es6-iterator-2.0.3" ··· 47039 49100 ]; 47040 49101 }) 47041 49102 sources."escope-3.6.0" 47042 - (sources."eslint-4.19.1" // { 49103 + (sources."eslint-5.0.1" // { 47043 49104 dependencies = [ 47044 - sources."ajv-5.5.2" 47045 49105 sources."ansi-regex-3.0.0" 47046 49106 sources."debug-3.1.0" 47047 - sources."fast-deep-equal-1.1.0" 47048 49107 sources."globals-11.7.0" 47049 49108 sources."strip-ansi-4.0.0" 47050 49109 ]; 47051 49110 }) 47052 49111 (sources."eslint-plugin-no-unsafe-innerhtml-1.0.16" // { 47053 49112 dependencies = [ 49113 + sources."acorn-3.3.0" 49114 + sources."acorn-jsx-3.0.1" 47054 49115 sources."ajv-4.11.8" 47055 49116 sources."ajv-keywords-1.5.1" 47056 49117 sources."ansi-escapes-1.4.0" ··· 47058 49119 sources."chalk-1.1.3" 47059 49120 sources."cli-cursor-1.0.2" 47060 49121 sources."eslint-3.19.0" 49122 + sources."espree-3.5.4" 47061 49123 sources."figures-1.7.0" 47062 49124 sources."inquirer-0.12.0" 47063 49125 sources."is-fullwidth-code-point-2.0.0" ··· 47066 49128 sources."progress-1.1.8" 47067 49129 sources."restore-cursor-1.0.1" 47068 49130 sources."run-async-0.1.0" 47069 - sources."rx-lite-3.1.2" 47070 49131 sources."shelljs-0.7.8" 47071 49132 sources."slice-ansi-0.0.4" 47072 49133 sources."string-width-1.0.2" ··· 47078 49139 }) 47079 49140 ]; 47080 49141 }) 47081 - sources."eslint-scope-3.7.3" 49142 + sources."eslint-scope-4.0.0" 47082 49143 sources."eslint-visitor-keys-1.0.0" 47083 - sources."espree-3.5.4" 49144 + sources."espree-4.0.0" 47084 49145 sources."esprima-3.1.3" 47085 49146 sources."esquery-1.0.1" 47086 49147 sources."esrecurse-4.2.1" ··· 47088 49149 sources."esutils-2.0.2" 47089 49150 sources."event-emitter-0.3.5" 47090 49151 sources."event-to-promise-0.8.0" 47091 - sources."execa-0.7.0" 49152 + (sources."execa-0.7.0" // { 49153 + dependencies = [ 49154 + sources."cross-spawn-5.1.0" 49155 + ]; 49156 + }) 47092 49157 sources."exit-hook-1.1.1" 47093 49158 (sources."expand-brackets-2.1.4" // { 47094 49159 dependencies = [ ··· 47108 49173 sources."kind-of-5.1.0" 47109 49174 ]; 47110 49175 }) 47111 - sources."extend-3.0.1" 49176 + sources."extend-3.0.2" 47112 49177 (sources."extend-shallow-3.0.2" // { 47113 49178 dependencies = [ 47114 49179 sources."is-extendable-1.0.1" ··· 47124 49189 sources."extsprintf-1.3.0" 47125 49190 sources."fast-deep-equal-2.0.1" 47126 49191 sources."fast-json-parse-1.0.3" 47127 - sources."fast-json-patch-1.2.2" 49192 + sources."fast-json-patch-2.0.6" 47128 49193 sources."fast-json-stable-stringify-2.0.0" 47129 49194 sources."fast-levenshtein-2.0.6" 49195 + sources."fast-redact-1.1.13" 47130 49196 sources."fast-safe-stringify-1.2.3" 47131 - sources."fd-slicer-1.0.1" 49197 + sources."fd-slicer-1.1.0" 47132 49198 sources."figures-2.0.0" 47133 49199 sources."file-entry-cache-2.0.0" 47134 49200 sources."file-uri-to-path-1.0.0" ··· 47137 49203 sources."extend-shallow-2.0.1" 47138 49204 ]; 47139 49205 }) 47140 - sources."find-up-2.1.0" 49206 + sources."find-up-3.0.0" 47141 49207 (sources."firefox-profile-1.1.0" // { 47142 49208 dependencies = [ 47143 49209 sources."async-2.5.0" ··· 47150 49216 sources."fluent-syntax-0.7.0" 47151 49217 sources."for-in-1.0.2" 47152 49218 sources."for-own-1.0.0" 49219 + sources."foreach-2.0.5" 47153 49220 sources."forever-agent-0.6.1" 47154 49221 sources."form-data-2.3.2" 47155 49222 sources."fragment-cache-0.2.1" ··· 47205 49272 dependencies = [ 47206 49273 sources."ajv-5.5.2" 47207 49274 sources."fast-deep-equal-1.1.0" 49275 + sources."json-schema-traverse-0.3.1" 47208 49276 ]; 47209 49277 }) 47210 49278 sources."has-1.0.3" 47211 49279 sources."has-ansi-2.0.0" 47212 49280 sources."has-color-0.1.7" 47213 49281 sources."has-flag-3.0.0" 49282 + sources."has-symbols-1.0.0" 47214 49283 sources."has-value-1.0.0" 47215 49284 (sources."has-values-1.0.0" // { 47216 49285 dependencies = [ ··· 47222 49291 sources."async-1.5.2" 47223 49292 ]; 47224 49293 }) 47225 - sources."hawk-6.0.2" 47226 - sources."hoek-4.2.1" 47227 49294 sources."home-or-tmp-2.0.0" 47228 49295 sources."hosted-git-info-2.7.1" 47229 49296 sources."htmlparser2-3.9.2" ··· 47247 49314 sources."inflight-1.0.6" 47248 49315 sources."inherits-2.0.3" 47249 49316 sources."ini-1.3.5" 47250 - (sources."inquirer-3.3.0" // { 49317 + (sources."inquirer-5.2.0" // { 47251 49318 dependencies = [ 47252 49319 sources."ansi-regex-3.0.0" 47253 49320 sources."strip-ansi-4.0.0" ··· 47263 49330 sources."kind-of-6.0.2" 47264 49331 ]; 47265 49332 }) 47266 - sources."is-alphabetical-1.0.2" 47267 - sources."is-alphanumerical-1.0.2" 47268 49333 sources."is-arrayish-0.2.1" 47269 49334 sources."is-binary-path-1.0.1" 47270 49335 sources."is-buffer-1.1.6" 47271 49336 sources."is-builtin-module-1.0.0" 49337 + sources."is-callable-1.1.4" 47272 49338 (sources."is-data-descriptor-1.0.0" // { 47273 49339 dependencies = [ 47274 49340 sources."kind-of-6.0.2" 47275 49341 ]; 47276 49342 }) 47277 - sources."is-decimal-1.0.2" 49343 + sources."is-date-object-1.0.1" 47278 49344 (sources."is-descriptor-1.0.2" // { 47279 49345 dependencies = [ 47280 49346 sources."kind-of-6.0.2" ··· 47285 49351 sources."is-finite-1.0.2" 47286 49352 sources."is-fullwidth-code-point-1.0.0" 47287 49353 sources."is-glob-4.0.0" 47288 - sources."is-hexadecimal-1.0.2" 47289 49354 sources."is-installed-globally-0.1.0" 47290 49355 sources."is-mergeable-object-1.1.0" 47291 49356 sources."is-my-ip-valid-1.0.0" ··· 47300 49365 sources."is-promise-2.1.0" 47301 49366 sources."is-property-1.0.2" 47302 49367 sources."is-redirect-1.0.0" 49368 + sources."is-regex-1.0.4" 47303 49369 sources."is-relative-0.1.3" 47304 49370 sources."is-resolvable-1.1.0" 47305 49371 sources."is-retry-allowed-1.1.0" 47306 49372 sources."is-stream-1.1.0" 49373 + sources."is-symbol-1.0.1" 47307 49374 sources."is-typedarray-1.0.0" 47308 49375 sources."is-utf8-0.2.1" 47309 49376 sources."is-windows-1.0.2" ··· 47326 49393 sources."json-merge-patch-0.2.3" 47327 49394 sources."json-parse-better-errors-1.0.2" 47328 49395 sources."json-schema-0.2.3" 47329 - sources."json-schema-traverse-0.3.1" 49396 + sources."json-schema-traverse-0.4.1" 47330 49397 sources."json-stable-stringify-1.0.1" 47331 49398 sources."json-stable-stringify-without-jsonify-1.0.1" 47332 49399 sources."json-stringify-safe-5.0.1" ··· 47355 49422 sources."strip-bom-2.0.0" 47356 49423 ]; 47357 49424 }) 47358 - sources."locate-path-2.0.0" 49425 + sources."locate-path-3.0.0" 47359 49426 sources."lodash-4.17.10" 47360 49427 sources."lodash.assign-4.2.0" 47361 49428 sources."lodash.assignin-4.2.0" ··· 47372 49439 sources."lodash.once-4.1.1" 47373 49440 sources."lodash.set-4.3.2" 47374 49441 sources."lodash.sortby-4.7.0" 47375 - sources."longest-streak-1.0.0" 47376 49442 sources."loose-envify-1.4.0" 47377 49443 sources."lowercase-keys-1.0.1" 47378 49444 sources."lru-cache-4.1.3" ··· 47384 49450 }) 47385 49451 sources."map-cache-0.2.2" 47386 49452 sources."map-visit-1.0.0" 47387 - sources."markdown-table-0.4.0" 47388 - (sources."markdown-to-ast-3.4.0" // { 47389 - dependencies = [ 47390 - sources."traverse-0.6.6" 47391 - ]; 47392 - }) 47393 49453 sources."mem-1.1.0" 47394 49454 (sources."micromatch-3.1.10" // { 47395 49455 dependencies = [ 47396 49456 sources."kind-of-6.0.2" 47397 49457 ]; 47398 49458 }) 47399 - sources."mime-db-1.33.0" 47400 - sources."mime-types-2.1.18" 49459 + sources."mime-db-1.35.0" 49460 + sources."mime-types-2.1.19" 47401 49461 sources."mimic-fn-1.2.0" 47402 49462 sources."minimatch-3.0.4" 47403 49463 sources."minimist-1.2.0" ··· 47418 49478 }) 47419 49479 sources."moment-2.22.2" 47420 49480 sources."ms-2.0.0" 49481 + sources."multimatch-2.1.0" 47421 49482 sources."mute-stream-0.0.7" 47422 49483 (sources."mv-2.1.1" // { 47423 49484 dependencies = [ ··· 47442 49503 sources."decamelize-1.2.0" 47443 49504 sources."os-locale-1.4.0" 47444 49505 sources."string-width-1.0.2" 49506 + sources."y18n-3.2.1" 47445 49507 sources."yargs-3.32.0" 47446 49508 ]; 47447 49509 }) ··· 47450 49512 sources."neo-async-2.5.1" 47451 49513 sources."netmask-1.0.6" 47452 49514 sources."next-tick-1.0.0" 49515 + sources."nice-try-1.0.4" 47453 49516 sources."node-forge-0.7.5" 47454 49517 sources."node-notifier-5.2.1" 47455 49518 (sources."nomnom-1.8.1" // { ··· 47457 49520 sources."ansi-styles-1.0.0" 47458 49521 sources."chalk-0.4.0" 47459 49522 sources."strip-ansi-0.1.1" 47460 - sources."underscore-1.6.0" 47461 49523 ]; 47462 49524 }) 47463 49525 sources."normalize-package-data-2.4.0" ··· 47479 49541 }) 47480 49542 ]; 47481 49543 }) 49544 + sources."object-keys-1.0.12" 47482 49545 sources."object-visit-1.0.1" 47483 49546 sources."object.pick-1.3.0" 47484 49547 sources."once-1.4.0" ··· 47491 49554 sources."os-shim-0.1.3" 47492 49555 sources."os-tmpdir-1.0.2" 47493 49556 sources."p-finally-1.0.0" 47494 - sources."p-limit-1.3.0" 47495 - sources."p-locate-2.0.0" 47496 - sources."p-try-1.0.0" 49557 + sources."p-limit-2.0.0" 49558 + sources."p-locate-3.0.0" 49559 + sources."p-try-2.0.0" 47497 49560 (sources."pac-proxy-agent-2.0.2" // { 47498 49561 dependencies = [ 47499 49562 sources."debug-3.1.0" 47500 - sources."socks-proxy-agent-3.0.1" 47501 49563 ]; 47502 49564 }) 47503 49565 sources."pac-resolver-3.0.0" 47504 49566 sources."package-json-4.0.1" 47505 49567 sources."pako-1.0.6" 47506 - sources."parse-entities-1.1.2" 47507 49568 sources."parse-json-4.0.0" 47508 49569 sources."parse5-3.0.3" 47509 49570 sources."pascalcase-0.1.1" ··· 47520 49581 sources."pify-2.3.0" 47521 49582 sources."pinkie-2.0.4" 47522 49583 sources."pinkie-promise-2.0.1" 47523 - sources."pino-4.16.1" 49584 + (sources."pino-5.0.0-rc.4" // { 49585 + dependencies = [ 49586 + sources."fast-safe-stringify-2.0.5" 49587 + sources."quick-format-unescaped-3.0.0" 49588 + ]; 49589 + }) 47524 49590 sources."pino-std-serializers-2.1.0" 47525 49591 sources."pkginfo-0.4.1" 47526 49592 sources."pluralize-7.0.0" 47527 49593 sources."po2json-0.4.5" 47528 49594 sources."posix-character-classes-0.1.1" 47529 - (sources."postcss-6.0.19" // { 49595 + (sources."postcss-6.0.23" // { 47530 49596 dependencies = [ 49597 + sources."ansi-styles-3.2.1" 49598 + sources."chalk-2.4.1" 47531 49599 sources."source-map-0.6.1" 47532 49600 sources."supports-color-5.4.0" 47533 49601 ]; ··· 47540 49608 sources."process-nextick-args-2.0.0" 47541 49609 sources."progress-2.0.0" 47542 49610 sources."promise-7.3.1" 47543 - (sources."proxy-agent-3.0.1" // { 49611 + (sources."proxy-agent-2.3.1" // { 47544 49612 dependencies = [ 47545 49613 sources."debug-3.1.0" 47546 49614 ]; ··· 47571 49639 sources."recursive-readdir-2.2.2" 47572 49640 sources."regenerator-runtime-0.11.1" 47573 49641 sources."regex-not-1.0.2" 49642 + sources."regexp.prototype.flags-1.2.0" 47574 49643 sources."regexpp-1.1.0" 47575 49644 sources."registry-auth-token-3.3.2" 47576 49645 sources."registry-url-3.1.0" ··· 47579 49648 sources."chalk-1.1.3" 47580 49649 ]; 47581 49650 }) 47582 - sources."remark-5.1.0" 47583 - sources."remark-parse-1.1.0" 47584 - sources."remark-stringify-1.1.0" 47585 49651 sources."remove-trailing-separator-1.1.0" 47586 49652 sources."repeat-element-1.1.2" 47587 49653 sources."repeat-string-1.6.1" 47588 49654 sources."repeating-2.0.1" 47589 - sources."request-2.85.0" 49655 + sources."request-2.87.0" 47590 49656 sources."require-directory-2.1.1" 47591 49657 sources."require-main-filename-1.0.1" 47592 49658 sources."require-uncached-1.0.3" ··· 47597 49663 sources."ret-0.1.15" 47598 49664 sources."rimraf-2.6.2" 47599 49665 sources."run-async-2.3.0" 47600 - sources."rx-lite-4.0.8" 49666 + sources."rx-lite-3.1.2" 47601 49667 sources."rx-lite-aggregates-4.0.8" 49668 + sources."rxjs-5.5.11" 47602 49669 sources."safe-buffer-5.1.2" 47603 49670 sources."safe-json-stringify-1.2.0" 47604 49671 sources."safe-regex-1.1.0" ··· 47624 49691 sources."shebang-command-1.2.0" 47625 49692 sources."shebang-regex-1.0.0" 47626 49693 sources."shell-quote-1.6.1" 47627 - sources."shelljs-0.8.1" 49694 + sources."shelljs-0.8.2" 47628 49695 sources."shellwords-0.1.1" 47629 49696 (sources."sign-addon-0.3.1" // { 47630 49697 dependencies = [ ··· 47632 49699 sources."es6-error-4.0.0" 47633 49700 sources."mz-2.5.0" 47634 49701 sources."regenerator-runtime-0.9.6" 47635 - sources."request-2.87.0" 47636 49702 sources."source-map-support-0.4.6" 47637 49703 ]; 47638 49704 }) ··· 47668 49734 ]; 47669 49735 }) 47670 49736 sources."snapdragon-util-3.0.1" 47671 - sources."sntp-2.1.0" 47672 - (sources."snyk-1.88.2" // { 49737 + (sources."snyk-1.90.0" // { 47673 49738 dependencies = [ 49739 + sources."ansi-regex-3.0.0" 47674 49740 sources."ansi-styles-3.2.1" 47675 49741 sources."chalk-2.4.1" 47676 49742 sources."debug-3.1.0" 49743 + sources."inquirer-3.3.0" 49744 + sources."rx-lite-4.0.8" 49745 + sources."strip-ansi-4.0.0" 47677 49746 sources."supports-color-5.4.0" 47678 49747 ]; 47679 49748 }) ··· 47685 49754 (sources."snyk-docker-plugin-1.10.3" // { 47686 49755 dependencies = [ 47687 49756 sources."debug-3.1.0" 47688 - sources."request-2.87.0" 47689 49757 ]; 47690 49758 }) 47691 49759 sources."snyk-go-plugin-1.5.1" ··· 47696 49764 ]; 47697 49765 }) 47698 49766 sources."snyk-mvn-plugin-1.2.0" 47699 - (sources."snyk-nuget-plugin-1.6.2" // { 49767 + (sources."snyk-nuget-plugin-1.6.3" // { 47700 49768 dependencies = [ 47701 49769 sources."debug-3.1.0" 47702 49770 sources."es6-promise-4.2.4" ··· 47712 49780 sources."debug-3.1.0" 47713 49781 ]; 47714 49782 }) 47715 - sources."snyk-python-plugin-1.6.1" 49783 + sources."snyk-python-plugin-1.8.0" 47716 49784 (sources."snyk-resolve-1.0.1" // { 47717 49785 dependencies = [ 47718 49786 sources."debug-3.1.0" ··· 47731 49799 ]; 47732 49800 }) 47733 49801 sources."socks-1.1.10" 47734 - (sources."socks-proxy-agent-4.0.1" // { 47735 - dependencies = [ 47736 - sources."smart-buffer-4.0.1" 47737 - sources."socks-2.2.1" 47738 - ]; 47739 - }) 49802 + sources."socks-proxy-agent-3.0.1" 49803 + sources."sonic-boom-0.5.0" 47740 49804 sources."source-map-0.5.7" 47741 49805 sources."source-map-resolve-0.5.2" 47742 49806 (sources."source-map-support-0.5.3" // { ··· 47788 49852 sources."strip-ansi-4.0.0" 47789 49853 ]; 47790 49854 }) 49855 + sources."string.prototype.matchall-2.0.0" 47791 49856 sources."string_decoder-1.1.1" 47792 - sources."stringify-entities-1.3.2" 47793 - sources."stringstream-0.0.6" 47794 49857 sources."strip-ansi-3.0.1" 47795 49858 sources."strip-bom-3.0.0" 47796 49859 sources."strip-bom-buf-1.0.0" 47797 49860 sources."strip-bom-stream-3.0.0" 47798 49861 sources."strip-eof-1.0.0" 47799 49862 sources."strip-json-comments-2.0.1" 47800 - sources."structured-source-3.0.2" 47801 49863 sources."supports-color-2.0.0" 47802 - (sources."table-4.0.2" // { 47803 - dependencies = [ 47804 - sources."ajv-5.5.2" 47805 - sources."fast-deep-equal-1.1.0" 47806 - ]; 47807 - }) 49864 + sources."symbol-observable-1.0.1" 49865 + sources."table-4.0.3" 47808 49866 sources."tar-stream-1.6.1" 47809 49867 sources."temp-dir-1.0.0" 47810 49868 sources."tempfile-2.0.0" ··· 47833 49891 }) 47834 49892 sources."tr46-1.0.1" 47835 49893 sources."traverse-0.4.6" 47836 - sources."trim-0.0.1" 47837 49894 sources."trim-right-1.0.1" 47838 - sources."trim-trailing-lines-1.1.1" 47839 - sources."trough-1.0.2" 47840 49895 sources."tunnel-agent-0.6.0" 47841 49896 sources."tweetnacl-0.14.5" 47842 49897 sources."type-check-0.3.2" 47843 49898 sources."typedarray-0.0.6" 47844 49899 sources."undefsafe-2.0.2" 47845 - sources."underscore-1.8.3" 47846 - sources."unherit-1.1.1" 47847 - sources."unified-4.2.1" 49900 + sources."underscore-1.6.0" 47848 49901 (sources."union-value-1.0.0" // { 47849 49902 dependencies = [ 47850 49903 sources."extend-shallow-2.0.1" ··· 47852 49905 ]; 47853 49906 }) 47854 49907 sources."unique-string-1.0.0" 47855 - sources."unist-util-is-2.1.2" 47856 - sources."unist-util-remove-position-1.1.2" 47857 - sources."unist-util-visit-1.3.1" 47858 49908 sources."universalify-0.1.2" 47859 49909 sources."unpipe-1.0.0" 47860 49910 (sources."unset-value-1.0.0" // { ··· 47868 49918 ]; 47869 49919 }) 47870 49920 sources."unzip-response-2.0.1" 47871 - sources."upath-1.0.5" 49921 + sources."upath-1.1.0" 47872 49922 sources."update-notifier-2.3.0" 47873 - sources."update-section-0.3.3" 47874 49923 sources."uri-js-4.2.2" 47875 49924 sources."urix-0.1.0" 47876 49925 sources."url-parse-lax-1.0.0" ··· 47881 49930 sources."uuid-3.3.2" 47882 49931 sources."validate-npm-package-license-3.0.3" 47883 49932 sources."verror-1.10.0" 47884 - sources."vfile-1.4.0" 47885 - sources."vfile-location-2.0.3" 47886 49933 sources."watchpack-1.5.0" 47887 49934 sources."wcwidth-1.0.1" 47888 49935 sources."webidl-conversions-4.0.2" 47889 - sources."whatwg-url-6.4.1" 49936 + sources."whatwg-url-6.5.0" 47890 49937 sources."when-3.7.7" 47891 49938 sources."which-1.3.1" 47892 49939 sources."which-module-2.0.0" ··· 47909 49956 sources."xmldom-0.1.27" 47910 49957 sources."xregexp-2.0.0" 47911 49958 sources."xtend-4.0.1" 47912 - sources."y18n-3.2.1" 49959 + sources."y18n-4.0.0" 47913 49960 sources."yallist-2.1.2" 47914 49961 (sources."yargs-6.6.0" // { 47915 49962 dependencies = [ ··· 47919 49966 sources."os-locale-1.4.0" 47920 49967 sources."string-width-1.0.2" 47921 49968 sources."which-module-1.0.0" 49969 + sources."y18n-3.2.1" 47922 49970 sources."yargs-parser-4.2.1" 47923 49971 ]; 47924 49972 }) 47925 - sources."yargs-parser-9.0.2" 47926 - sources."yauzl-2.9.1" 49973 + sources."yargs-parser-10.1.0" 49974 + sources."yauzl-2.9.2" 47927 49975 sources."zip-1.2.0" 47928 49976 (sources."zip-dir-1.0.2" // { 47929 49977 dependencies = [ ··· 47961 50009 yarn = nodeEnv.buildNodePackage { 47962 50010 name = "yarn"; 47963 50011 packageName = "yarn"; 47964 - version = "1.7.0"; 50012 + version = "1.9.2"; 47965 50013 src = fetchurl { 47966 - url = "https://registry.npmjs.org/yarn/-/yarn-1.7.0.tgz"; 47967 - sha1 = "0076b9fde6010e01950526a609bc53bc175ef925"; 50014 + url = "https://registry.npmjs.org/yarn/-/yarn-1.9.2.tgz"; 50015 + sha1 = "7666c6db0fed8dc090ae0dce11a8a28b1d82e391"; 47968 50016 }; 47969 50017 buildInputs = globalBuildInputs; 47970 50018 meta = { ··· 47978 50026 yo = nodeEnv.buildNodePackage { 47979 50027 name = "yo"; 47980 50028 packageName = "yo"; 47981 - version = "2.0.4"; 50029 + version = "2.0.5"; 47982 50030 src = fetchurl { 47983 - url = "https://registry.npmjs.org/yo/-/yo-2.0.4.tgz"; 47984 - sha512 = "IFqP6MBVbyN/EG1jPqBdzV9HNmnOFyC6u/CVN7KcQpxejulspdvY1IdxX0Aj0fMSFkoZGO3HX94e8rcxLHZN7A=="; 50031 + url = "https://registry.npmjs.org/yo/-/yo-2.0.5.tgz"; 50032 + sha512 = "PLyTNZSJjHkks/FIln+QE5PxV224MsekCzbROVhZEW0MvLyj/6ghWIVkdBmrwdAbapH8H9q21F1/pQ9Q0Lk9UA=="; 47985 50033 }; 47986 50034 dependencies = [ 47987 50035 sources."@mrmlnc/readdir-enhanced-2.2.1" ··· 48003 50051 sources."array-uniq-1.0.3" 48004 50052 sources."array-unique-0.3.2" 48005 50053 sources."arrify-1.0.1" 48006 - sources."asn1-0.2.3" 50054 + sources."asn1-0.2.4" 48007 50055 sources."assert-plus-1.0.0" 48008 50056 sources."assign-symbols-1.0.0" 48009 50057 sources."astral-regex-1.0.0" ··· 48036 50084 sources."extend-shallow-2.0.1" 48037 50085 ]; 48038 50086 }) 48039 - sources."buffer-from-1.1.0" 50087 + sources."buffer-from-1.1.1" 48040 50088 sources."builtin-modules-1.1.1" 48041 50089 sources."cache-base-1.0.1" 48042 50090 (sources."cacheable-request-2.1.4" // { ··· 48121 50169 sources."onetime-1.1.0" 48122 50170 ]; 48123 50171 }) 48124 - sources."ecc-jsbn-0.1.1" 50172 + sources."ecc-jsbn-0.1.2" 48125 50173 sources."env-paths-1.0.0" 48126 50174 sources."error-ex-1.3.2" 48127 50175 sources."escape-string-regexp-1.0.5" ··· 48150 50198 sources."kind-of-5.1.0" 48151 50199 ]; 48152 50200 }) 48153 - sources."extend-3.0.1" 50201 + sources."extend-3.0.2" 48154 50202 (sources."extend-shallow-3.0.2" // { 48155 50203 dependencies = [ 48156 50204 sources."is-extendable-1.0.1" ··· 48198 50246 }) 48199 50247 sources."glob-to-regexp-0.3.0" 48200 50248 sources."global-dirs-0.1.1" 48201 - sources."global-tunnel-ng-2.4.0" 50249 + sources."global-tunnel-ng-2.5.4" 48202 50250 sources."globby-8.0.1" 48203 50251 sources."got-8.3.2" 48204 50252 sources."graceful-fs-4.1.11" ··· 48333 50381 }) 48334 50382 sources."merge2-1.2.2" 48335 50383 sources."micromatch-3.1.10" 48336 - sources."mime-db-1.33.0" 48337 - sources."mime-types-2.1.18" 50384 + sources."mime-db-1.35.0" 50385 + sources."mime-types-2.1.19" 48338 50386 sources."mimic-fn-1.2.0" 48339 50387 sources."mimic-response-1.0.1" 48340 50388 sources."minimatch-3.0.4" ··· 48435 50483 sources."process-nextick-args-2.0.0" 48436 50484 sources."proto-list-1.2.4" 48437 50485 sources."pseudomap-1.0.2" 48438 - sources."psl-1.1.28" 50486 + sources."psl-1.1.29" 48439 50487 sources."punycode-1.4.1" 48440 50488 sources."qs-6.5.2" 48441 50489 sources."query-string-5.1.1" ··· 48684 50732 ]; 48685 50733 }) 48686 50734 sources."yeoman-doctor-3.0.2" 48687 - (sources."yeoman-environment-2.3.0" // { 50735 + (sources."yeoman-environment-2.3.1" // { 48688 50736 dependencies = [ 48689 50737 sources."chardet-0.4.2" 48690 50738 sources."debug-3.1.0"
+127 -104
pkgs/development/node-packages/node-packages-v8.nix
··· 22 22 sha512 = "wOLMflfsszUXej5wSNxo06VgFqeWZ/GQFz/OzcrHv4r3oXvBsFh9KyyvIV6kOLpaZ+8bkOwBWbpGbJZWK00NFQ=="; 23 23 }; 24 24 }; 25 - "@cycle/isolate-3.3.0" = { 25 + "@cycle/isolate-3.4.0" = { 26 26 name = "_at_cycle_slash_isolate"; 27 27 packageName = "@cycle/isolate"; 28 - version = "3.3.0"; 28 + version = "3.4.0"; 29 29 src = fetchurl { 30 - url = "https://registry.npmjs.org/@cycle/isolate/-/isolate-3.3.0.tgz"; 31 - sha512 = "WFbEhrS1+Wx7VrJtGnjE/TQ1GtSoxQi6mBcFgqh8CwFu9FRxbNk1QL5rrwel250m+zEcwRmxo+kUwtJSlj4DCA=="; 30 + url = "https://registry.npmjs.org/@cycle/isolate/-/isolate-3.4.0.tgz"; 31 + sha512 = "mOAlwLeTr6wTdHwKWAfaFeuKeD540kKcJlLVKsqLhbfLp6orF1B3CzMfFNlmqNY30t6o6TORCFfV+0EATK9Y7Q=="; 32 32 }; 33 33 }; 34 34 "@cycle/run-3.4.0" = { ··· 40 40 sha512 = "YUZyPu0nC4YDC31mLH5PGxbMoPEH5dNEV+nmgt34GgGgJ0ykDd4PrY7/ph5MAEpQE6rOfov0VN44qQRs6beQow=="; 41 41 }; 42 42 }; 43 + "@cycle/run-4.4.0" = { 44 + name = "_at_cycle_slash_run"; 45 + packageName = "@cycle/run"; 46 + version = "4.4.0"; 47 + src = fetchurl { 48 + url = "https://registry.npmjs.org/@cycle/run/-/run-4.4.0.tgz"; 49 + sha512 = "vVxnTqKKlgasE+we9X2z3og8z5KouO2RMiIgHWkVek+NomsdaeZwfvbutqzm3VToEImaz0DE2Iln9AxtCOVjpQ=="; 50 + }; 51 + }; 43 52 "@cycle/time-0.10.1" = { 44 53 name = "_at_cycle_slash_time"; 45 54 packageName = "@cycle/time"; ··· 49 58 sha1 = "cbc4b9a68981bf0b501ccd06a9058acd65309bf7"; 50 59 }; 51 60 }; 52 - "@types/node-10.5.2" = { 61 + "@types/node-10.5.5" = { 53 62 name = "_at_types_slash_node"; 54 63 packageName = "@types/node"; 55 - version = "10.5.2"; 64 + version = "10.5.5"; 56 65 src = fetchurl { 57 - url = "https://registry.npmjs.org/@types/node/-/node-10.5.2.tgz"; 58 - sha512 = "m9zXmifkZsMHZBOyxZWilMwmTlpC8x5Ty360JKTiXvlXZfBWYpsg9ZZvP/Ye+iZUh+Q+MxDLjItVTWIsfwz+8Q=="; 66 + url = "https://registry.npmjs.org/@types/node/-/node-10.5.5.tgz"; 67 + sha512 = "6Qnb1gXbp3g1JX9QVJj3A6ORzc9XCyhokxUKaoonHgNXcQhmk8adhotxfkeK8El9TnFeUuH72yI6jQ5nDJKS6w=="; 59 68 }; 60 69 }; 61 70 "@types/superagent-3.5.6" = { ··· 409 418 sha1 = "898508da2226f380df904728456849c1501a4b0d"; 410 419 }; 411 420 }; 412 - "asn1-0.2.3" = { 421 + "asn1-0.2.4" = { 413 422 name = "asn1"; 414 423 packageName = "asn1"; 415 - version = "0.2.3"; 424 + version = "0.2.4"; 416 425 src = fetchurl { 417 - url = "https://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz"; 418 - sha1 = "dac8787713c9966849fc8180777ebe9c1ddf3b86"; 426 + url = "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz"; 427 + sha512 = "jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg=="; 419 428 }; 420 429 }; 421 430 "assert-plus-0.2.0" = { ··· 805 814 sha1 = "f8f78b76789888ef39f205cd637f68e702122b2c"; 806 815 }; 807 816 }; 808 - "buffer-from-1.1.0" = { 817 + "buffer-from-1.1.1" = { 809 818 name = "buffer-from"; 810 819 packageName = "buffer-from"; 811 - version = "1.1.0"; 820 + version = "1.1.1"; 812 821 src = fetchurl { 813 - url = "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.0.tgz"; 814 - sha512 = "c5mRlguI/Pe2dSZmpER62rSCu0ryKmWddzRYsuXc50U2/g8jMOulc31VZMa4mYx31U5xsmSOpDCgH88Vl9cDGQ=="; 822 + url = "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz"; 823 + sha512 = "MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A=="; 815 824 }; 816 825 }; 817 826 "builtins-1.0.3" = { ··· 1246 1255 sha1 = "0433f44d809680fdeb60ed260f1b0c262e82a40b"; 1247 1256 }; 1248 1257 }; 1249 - "colors-1.3.0" = { 1258 + "colors-1.3.1" = { 1250 1259 name = "colors"; 1251 1260 packageName = "colors"; 1252 - version = "1.3.0"; 1261 + version = "1.3.1"; 1253 1262 src = fetchurl { 1254 - url = "https://registry.npmjs.org/colors/-/colors-1.3.0.tgz"; 1255 - sha512 = "EDpX3a7wHMWFA7PUHWPHNWqOxIIRSJetuwl0AS5Oi/5FMV8kWm69RTlgm00GKjBO1xFHMtBbL49yRtMMdticBw=="; 1263 + url = "https://registry.npmjs.org/colors/-/colors-1.3.1.tgz"; 1264 + sha512 = "jg/vxRmv430jixZrC+La5kMbUWqIg32/JsYNZb94+JEmzceYbWKTsv1OuTp+7EaqiaWRR2tPcykibwCRgclIsw=="; 1256 1265 }; 1257 1266 }; 1258 1267 "combine-errors-3.0.3" = { ··· 2038 2047 sha512 = "fO3Di4tBKJpYTFHAxTU00BcfWMY9w24r/x21a6rZRbsD/ToUgGxsMbiGRmB7uVAXeGKXD9MwiLZa5E97EVgIRQ=="; 2039 2048 }; 2040 2049 }; 2041 - "ecc-jsbn-0.1.1" = { 2050 + "ecc-jsbn-0.1.2" = { 2042 2051 name = "ecc-jsbn"; 2043 2052 packageName = "ecc-jsbn"; 2044 - version = "0.1.1"; 2053 + version = "0.1.2"; 2045 2054 src = fetchurl { 2046 - url = "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz"; 2047 - sha1 = "0fc73a9ed5f0d53c38193398523ef7e543777505"; 2055 + url = "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz"; 2056 + sha1 = "3a83a904e54353287874c564b7549386849a98c9"; 2048 2057 }; 2049 2058 }; 2050 2059 "ee-first-1.1.0" = { ··· 2254 2263 sha1 = "5a474353b9f3353ddd8176dfd37b91c83a46f1d4"; 2255 2264 }; 2256 2265 }; 2257 - "extend-3.0.1" = { 2266 + "extend-3.0.2" = { 2258 2267 name = "extend"; 2259 2268 packageName = "extend"; 2260 - version = "3.0.1"; 2269 + version = "3.0.2"; 2261 2270 src = fetchurl { 2262 - url = "https://registry.npmjs.org/extend/-/extend-3.0.1.tgz"; 2263 - sha1 = "a755ea7bc1adfcc5a31ce7e762dbaadc5e636444"; 2271 + url = "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz"; 2272 + sha512 = "fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g=="; 2264 2273 }; 2265 2274 }; 2266 2275 "extend-shallow-2.0.1" = { ··· 3073 3082 sha1 = "9aecd925114772f3d95b65a60abb8f7c18fbace1"; 3074 3083 }; 3075 3084 }; 3076 - "hypercore-6.17.3" = { 3085 + "hypercore-6.18.1" = { 3077 3086 name = "hypercore"; 3078 3087 packageName = "hypercore"; 3079 - version = "6.17.3"; 3088 + version = "6.18.1"; 3080 3089 src = fetchurl { 3081 - url = "https://registry.npmjs.org/hypercore/-/hypercore-6.17.3.tgz"; 3082 - sha512 = "BJwZ4bRV3tYG3R+iE3ydW3GWpZrPLbi86I75qUg9bQ5jMWgwdh+llKgYFvSJhJtoT/MVxrcuXFDkuHiJ0GYMvw=="; 3090 + url = "https://registry.npmjs.org/hypercore/-/hypercore-6.18.1.tgz"; 3091 + sha512 = "pH2t3ehdTfe/FFrwVq+6w7L9NoWEnFO9Yxix2kj43vSLMHTWCUFdOCJ9/MaOUAG4OeYy4tiT4+IE5NP0bff6Mg=="; 3083 3092 }; 3084 3093 }; 3085 3094 "hypercore-crypto-1.0.0" = { ··· 4594 4603 sha512 = "OEUllcVoydBHGN1z84yfQDimn58pZNNNXgZlHXSboxMlFvgI6MXSWpWKpFRra7H1HxpVhHTkrghfRW49k6yjeg=="; 4595 4604 }; 4596 4605 }; 4597 - "mime-db-1.33.0" = { 4606 + "mime-db-1.35.0" = { 4598 4607 name = "mime-db"; 4599 4608 packageName = "mime-db"; 4600 - version = "1.33.0"; 4609 + version = "1.35.0"; 4601 4610 src = fetchurl { 4602 - url = "https://registry.npmjs.org/mime-db/-/mime-db-1.33.0.tgz"; 4603 - sha512 = "BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ=="; 4611 + url = "https://registry.npmjs.org/mime-db/-/mime-db-1.35.0.tgz"; 4612 + sha512 = "JWT/IcCTsB0Io3AhWUMjRqucrHSPsSf2xKLaRldJVULioggvkJvggZ3VXNNSRkCddE6D+BUI4HEIZIA2OjwIvg=="; 4604 4613 }; 4605 4614 }; 4606 - "mime-types-2.1.18" = { 4615 + "mime-types-2.1.19" = { 4607 4616 name = "mime-types"; 4608 4617 packageName = "mime-types"; 4609 - version = "2.1.18"; 4618 + version = "2.1.19"; 4610 4619 src = fetchurl { 4611 - url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.18.tgz"; 4612 - sha512 = "lc/aahn+t4/SWV/qcmumYjymLsWfN3ELhpmVuUFjgsORruuZPVSwAQryq+HHGvO/SI2KVX26bx+En+zhM8g8hQ=="; 4620 + url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.19.tgz"; 4621 + sha512 = "P1tKYHVSZ6uFo26mtnve4HQFE3koh1UWVkp8YUC+ESBHe945xWSoXuHHiGarDqcEZ+whpCDnlNw5LON0kLo+sw=="; 4613 4622 }; 4614 4623 }; 4615 4624 "mimic-fn-1.2.0" = { ··· 4990 4999 sha512 = "YoviGBJYGrPdLOKDIQB0sKxuKy/EEsxzooNkOZak4vSTKT/qH0Pa6dj3t1MJjEQGsefih61IyHDmO1WW7xOFfw=="; 4991 5000 }; 4992 5001 }; 4993 - "nodemon-1.18.2" = { 5002 + "nodemon-1.18.3" = { 4994 5003 name = "nodemon"; 4995 5004 packageName = "nodemon"; 4996 - version = "1.18.2"; 5005 + version = "1.18.3"; 4997 5006 src = fetchurl { 4998 - url = "https://registry.npmjs.org/nodemon/-/nodemon-1.18.2.tgz"; 4999 - sha512 = "FKuvzVurERMgX231T9KexWWWopjd93vapFY8rLn2JlPZ58uCW2s7U8utKElpGUEAqU5Y33///KFza5O9ndVRHQ=="; 5007 + url = "https://registry.npmjs.org/nodemon/-/nodemon-1.18.3.tgz"; 5008 + sha512 = "XdVfAjGlDKU2nqoGgycxTndkJ5fdwvWJ/tlMGk2vHxMZBrSPVh86OM6z7viAv8BBJWjMgeuYQBofzr6LUoi+7g=="; 5000 5009 }; 5001 5010 }; 5002 5011 "nopt-1.0.10" = { ··· 5053 5062 sha512 = "Yic4bZHJOt9RCFbRP3GgpqhScOY4HH3V2P8yBj6CeYq118Qr+BLXqT2JvpJ00mryLESpgOxf5XlFv4ZjXxLScw=="; 5054 5063 }; 5055 5064 }; 5056 - "npm-packlist-1.1.10" = { 5065 + "npm-packlist-1.1.11" = { 5057 5066 name = "npm-packlist"; 5058 5067 packageName = "npm-packlist"; 5059 - version = "1.1.10"; 5068 + version = "1.1.11"; 5060 5069 src = fetchurl { 5061 - url = "https://registry.npmjs.org/npm-packlist/-/npm-packlist-1.1.10.tgz"; 5062 - sha512 = "AQC0Dyhzn4EiYEfIUjCdMl0JJ61I2ER9ukf/sLxJUcZHfo+VyEfz2rMJgLZSS1v30OxPQe1cN0LZA1xbcaVfWA=="; 5070 + url = "https://registry.npmjs.org/npm-packlist/-/npm-packlist-1.1.11.tgz"; 5071 + sha512 = "CxKlZ24urLkJk+9kCm48RTQ7L4hsmgSVzEk0TLGPzzyuFxD7VNgy5Sl24tOLMzQv773a/NeJ1ce1DKeacqffEA=="; 5063 5072 }; 5064 5073 }; 5065 5074 "npm-run-path-2.0.2" = { ··· 5654 5663 src = fetchurl { 5655 5664 url = "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz"; 5656 5665 sha512 = "N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA=="; 5666 + }; 5667 + }; 5668 + "quicktask-1.1.0" = { 5669 + name = "quicktask"; 5670 + packageName = "quicktask"; 5671 + version = "1.1.0"; 5672 + src = fetchurl { 5673 + url = "https://registry.npmjs.org/quicktask/-/quicktask-1.1.0.tgz"; 5674 + sha512 = "b3w19IEXnt5auacLAbePVsqPyVQUwmuhJQrrWnVhm4pP8PAMg2U9vFHbAD9XYXXbMDjdLJs0x5NLqwTV8uFK4g=="; 5657 5675 }; 5658 5676 }; 5659 5677 "raf-3.3.2" = { ··· 6574 6592 sha1 = "4d5e433c185261dde623ca3f44c586bcf5c4ad14"; 6575 6593 }; 6576 6594 }; 6577 - "stream-each-1.2.2" = { 6595 + "stream-each-1.2.3" = { 6578 6596 name = "stream-each"; 6579 6597 packageName = "stream-each"; 6580 - version = "1.2.2"; 6598 + version = "1.2.3"; 6581 6599 src = fetchurl { 6582 - url = "https://registry.npmjs.org/stream-each/-/stream-each-1.2.2.tgz"; 6583 - sha512 = "mc1dbFhGBxvTM3bIWmAAINbqiuAk9TATcfIQC8P+/+HJefgaiTlMn2dHvkX8qlI12KeYKSQ1Ua9RrIqrn1VPoA=="; 6600 + url = "https://registry.npmjs.org/stream-each/-/stream-each-1.2.3.tgz"; 6601 + sha512 = "vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw=="; 6584 6602 }; 6585 6603 }; 6586 6604 "stream-parser-0.3.1" = { ··· 6844 6862 sha1 = "8e4d2a256c0e2185c6b18ad694aec968b83cb1d1"; 6845 6863 }; 6846 6864 }; 6847 - "tar-4.4.4" = { 6865 + "tar-4.4.6" = { 6848 6866 name = "tar"; 6849 6867 packageName = "tar"; 6850 - version = "4.4.4"; 6868 + version = "4.4.6"; 6851 6869 src = fetchurl { 6852 - url = "https://registry.npmjs.org/tar/-/tar-4.4.4.tgz"; 6853 - sha512 = "mq9ixIYfNF9SK0IS/h2HKMu8Q2iaCuhDDsZhdEag/FHv8fOaYld4vN7ouMgcSSt5WKZzPs8atclTcJm36OTh4w=="; 6870 + url = "https://registry.npmjs.org/tar/-/tar-4.4.6.tgz"; 6871 + sha512 = "tMkTnh9EdzxyfW+6GK6fCahagXsnYk6kE6S9Gr9pjVdys769+laCTbodXDhPAjzVtEBazRgP0gYqOjnk9dQzLg=="; 6854 6872 }; 6855 6873 }; 6856 6874 "tar-stream-1.6.1" = { ··· 7429 7447 sha1 = "5fa912d81eb7d0c74afc140de7317f0ca7df437e"; 7430 7448 }; 7431 7449 }; 7432 - "validator-10.4.0" = { 7450 + "validator-10.5.0" = { 7433 7451 name = "validator"; 7434 7452 packageName = "validator"; 7435 - version = "10.4.0"; 7453 + version = "10.5.0"; 7436 7454 src = fetchurl { 7437 - url = "https://registry.npmjs.org/validator/-/validator-10.4.0.tgz"; 7438 - sha512 = "Q/wBy3LB1uOyssgNlXSRmaf22NxjvDNZM2MtIQ4jaEOAB61xsh1TQxsq1CgzUMBV1lDrVMogIh8GjG1DYW0zLg=="; 7455 + url = "https://registry.npmjs.org/validator/-/validator-10.5.0.tgz"; 7456 + sha512 = "6OOi+eV2mOxCFLq0f2cJDrdB6lrtLXEUxabhNRGjgOLT/l3SSll9J49Cl+LIloUqkWWTPraK/mucEQ3dc2jStQ=="; 7439 7457 }; 7440 7458 }; 7441 7459 "variable-diff-1.1.0" = { ··· 7738 7756 dependencies = [ 7739 7757 sources."@cycle/dom-18.3.0" 7740 7758 sources."@cycle/http-14.9.0" 7741 - sources."@cycle/isolate-3.3.0" 7759 + (sources."@cycle/isolate-3.4.0" // { 7760 + dependencies = [ 7761 + sources."@cycle/run-4.4.0" 7762 + ]; 7763 + }) 7742 7764 sources."@cycle/run-3.4.0" 7743 7765 sources."@cycle/time-0.10.1" 7744 - sources."@types/node-10.5.2" 7766 + sources."@types/node-10.5.5" 7745 7767 sources."@types/superagent-3.5.6" 7746 7768 sources."ansi-escapes-3.1.0" 7747 7769 sources."ansi-regex-2.1.1" ··· 7777 7799 sources."es6-symbol-3.1.1" 7778 7800 sources."escape-string-regexp-1.0.5" 7779 7801 sources."event-emitter-0.3.5" 7780 - sources."extend-3.0.1" 7802 + sources."extend-3.0.2" 7781 7803 sources."external-editor-2.2.0" 7782 7804 sources."figures-2.0.0" 7783 7805 sources."form-data-2.3.2" ··· 7807 7829 sources."lru-cache-4.1.3" 7808 7830 sources."methods-1.1.2" 7809 7831 sources."mime-1.6.0" 7810 - sources."mime-db-1.33.0" 7811 - sources."mime-types-2.1.18" 7832 + sources."mime-db-1.35.0" 7833 + sources."mime-types-2.1.19" 7812 7834 sources."mimic-fn-1.2.0" 7813 7835 sources."minimist-1.2.0" 7814 7836 sources."ms-2.0.0" ··· 7821 7843 sources."process-nextick-args-2.0.0" 7822 7844 sources."pseudomap-1.0.2" 7823 7845 sources."qs-6.5.2" 7846 + sources."quicktask-1.1.0" 7824 7847 sources."raf-3.3.2" 7825 7848 sources."readable-stream-2.3.6" 7826 7849 sources."restore-cursor-2.0.0" ··· 7896 7919 sources."arr-flatten-1.1.0" 7897 7920 sources."array-lru-1.1.1" 7898 7921 sources."array-unique-0.2.1" 7899 - sources."asn1-0.2.3" 7922 + sources."asn1-0.2.4" 7900 7923 sources."assert-plus-1.0.0" 7901 7924 sources."async-0.9.2" 7902 7925 sources."asynckit-0.4.0" ··· 7922 7945 sources."buffer-alloc-unsafe-1.1.0" 7923 7946 sources."buffer-equals-1.0.4" 7924 7947 sources."buffer-fill-1.0.0" 7925 - sources."buffer-from-1.1.0" 7948 + sources."buffer-from-1.1.1" 7926 7949 sources."bulk-write-stream-1.1.4" 7927 7950 sources."bytes-3.0.0" 7928 7951 sources."call-me-maybe-1.0.1" ··· 7940 7963 sources."codecs-1.2.1" 7941 7964 sources."color-convert-1.9.2" 7942 7965 sources."color-name-1.1.1" 7943 - sources."colors-1.3.0" 7966 + sources."colors-1.3.1" 7944 7967 sources."combined-stream-1.0.6" 7945 7968 sources."concat-map-0.0.1" 7946 7969 sources."concat-stream-1.6.2" ··· 7999 8022 sources."dot-prop-4.2.0" 8000 8023 sources."duplexer3-0.1.4" 8001 8024 sources."duplexify-3.6.0" 8002 - sources."ecc-jsbn-0.1.1" 8025 + sources."ecc-jsbn-0.1.2" 8003 8026 sources."end-of-stream-1.4.1" 8004 8027 sources."escape-string-regexp-1.0.5" 8005 8028 sources."execa-0.7.0" 8006 8029 sources."expand-brackets-0.1.5" 8007 8030 sources."expand-range-1.8.2" 8008 - sources."extend-3.0.1" 8031 + sources."extend-3.0.2" 8009 8032 sources."extglob-0.3.2" 8010 8033 sources."extsprintf-1.3.0" 8011 8034 sources."eyes-0.1.8" ··· 8037 8060 sources."has-flag-3.0.0" 8038 8061 sources."http-methods-0.1.0" 8039 8062 sources."http-signature-1.2.0" 8040 - (sources."hypercore-6.17.3" // { 8063 + (sources."hypercore-6.18.1" // { 8041 8064 dependencies = [ 8042 8065 sources."process-nextick-args-1.0.7" 8043 8066 sources."unordered-set-2.0.1" ··· 8120 8143 sources."merkle-tree-stream-3.0.3" 8121 8144 sources."micromatch-2.3.11" 8122 8145 sources."mime-2.3.1" 8123 - sources."mime-db-1.33.0" 8124 - sources."mime-types-2.1.18" 8146 + sources."mime-db-1.35.0" 8147 + sources."mime-types-2.1.19" 8125 8148 sources."min-document-2.19.0" 8126 8149 sources."minimatch-3.0.4" 8127 8150 sources."minimist-1.2.0" ··· 8235 8258 sources."sshpk-1.14.2" 8236 8259 sources."stack-trace-0.0.10" 8237 8260 sources."stream-collector-1.0.1" 8238 - sources."stream-each-1.2.2" 8261 + sources."stream-each-1.2.3" 8239 8262 (sources."stream-parser-0.3.1" // { 8240 8263 dependencies = [ 8241 8264 sources."debug-2.6.9" ··· 8422 8445 sources."ansi-regex-2.1.1" 8423 8446 sources."aproba-1.2.0" 8424 8447 sources."are-we-there-yet-1.1.5" 8425 - sources."asn1-0.2.3" 8448 + sources."asn1-0.2.4" 8426 8449 sources."assert-plus-0.2.0" 8427 8450 sources."asynckit-0.4.0" 8428 8451 sources."aws-sign2-0.6.0" ··· 8447 8470 }) 8448 8471 sources."delayed-stream-1.0.0" 8449 8472 sources."delegates-1.0.0" 8450 - sources."ecc-jsbn-0.1.1" 8451 - sources."extend-3.0.1" 8473 + sources."ecc-jsbn-0.1.2" 8474 + sources."extend-3.0.2" 8452 8475 sources."extsprintf-1.3.0" 8453 8476 sources."forever-agent-0.6.1" 8454 8477 sources."form-data-2.1.4" ··· 8485 8508 sources."assert-plus-1.0.0" 8486 8509 ]; 8487 8510 }) 8488 - sources."mime-db-1.33.0" 8489 - sources."mime-types-2.1.18" 8511 + sources."mime-db-1.35.0" 8512 + sources."mime-types-2.1.19" 8490 8513 sources."minimatch-3.0.4" 8491 8514 sources."minimist-0.0.8" 8492 8515 sources."mkdirp-0.5.1" ··· 8608 8631 sources."needle-2.2.1" 8609 8632 sources."nopt-4.0.1" 8610 8633 sources."npm-bundled-1.0.3" 8611 - sources."npm-packlist-1.1.10" 8634 + sources."npm-packlist-1.1.11" 8612 8635 sources."npmlog-4.1.2" 8613 8636 sources."number-is-nan-1.0.1" 8614 8637 sources."object-assign-4.1.1" ··· 8635 8658 sources."string_decoder-1.1.1" 8636 8659 sources."strip-ansi-3.0.1" 8637 8660 sources."strip-json-comments-2.0.1" 8638 - sources."tar-4.4.4" 8661 + sources."tar-4.4.6" 8639 8662 sources."util-deprecate-1.0.2" 8640 8663 sources."wide-align-1.1.3" 8641 8664 sources."wrappy-1.0.2" ··· 8653 8676 pnpm = nodeEnv.buildNodePackage { 8654 8677 name = "pnpm"; 8655 8678 packageName = "pnpm"; 8656 - version = "2.11.2"; 8679 + version = "2.12.2"; 8657 8680 src = fetchurl { 8658 - url = "https://registry.npmjs.org/pnpm/-/pnpm-2.11.2.tgz"; 8659 - sha1 = "fc7235c2ec82a6ede6caf47485a68a2c6fa2e1f5"; 8681 + url = "https://registry.npmjs.org/pnpm/-/pnpm-2.12.2.tgz"; 8682 + sha1 = "1b575512ae27d767f4aaec14e94b18e0c70bcc7b"; 8660 8683 }; 8661 8684 buildInputs = globalBuildInputs; 8662 8685 meta = { ··· 8751 8774 sources."array-union-1.0.2" 8752 8775 sources."array-uniq-1.0.3" 8753 8776 sources."arrify-1.0.1" 8754 - sources."asn1-0.2.3" 8777 + sources."asn1-0.2.4" 8755 8778 sources."assert-plus-1.0.0" 8756 8779 sources."async-2.6.1" 8757 8780 sources."asynckit-0.4.0" ··· 8819 8842 sources."download-5.0.3" 8820 8843 sources."download-git-repo-1.0.2" 8821 8844 sources."duplexer3-0.1.4" 8822 - sources."ecc-jsbn-0.1.1" 8845 + sources."ecc-jsbn-0.1.2" 8823 8846 sources."enable-1.3.2" 8824 8847 sources."end-of-stream-1.4.1" 8825 8848 sources."escape-string-regexp-1.0.5" 8826 8849 sources."esprima-4.0.1" 8827 - sources."extend-3.0.1" 8850 + sources."extend-3.0.2" 8828 8851 sources."extend-shallow-2.0.1" 8829 8852 sources."external-editor-3.0.0" 8830 8853 sources."extsprintf-1.3.0" ··· 8915 8938 sources."supports-color-2.0.0" 8916 8939 ]; 8917 8940 }) 8918 - sources."mime-db-1.33.0" 8919 - sources."mime-types-2.1.18" 8941 + sources."mime-db-1.35.0" 8942 + sources."mime-types-2.1.19" 8920 8943 sources."mimic-fn-1.2.0" 8921 8944 sources."minimatch-3.0.4" 8922 8945 sources."minimist-0.0.8" ··· 9091 9114 sources."is-extendable-0.1.1" 9092 9115 ]; 9093 9116 }) 9094 - sources."buffer-from-1.1.0" 9117 + sources."buffer-from-1.1.1" 9095 9118 (sources."busboy-0.2.14" // { 9096 9119 dependencies = [ 9097 9120 sources."isarray-0.0.1" ··· 9205 9228 sources."kind-of-5.1.0" 9206 9229 ]; 9207 9230 }) 9208 - sources."extend-3.0.1" 9231 + sources."extend-3.0.2" 9209 9232 sources."extend-shallow-3.0.2" 9210 9233 (sources."extglob-2.0.4" // { 9211 9234 dependencies = [ ··· 9370 9393 sources."methods-1.1.2" 9371 9394 sources."micromatch-3.1.10" 9372 9395 sources."mime-1.4.1" 9373 - sources."mime-db-1.33.0" 9374 - sources."mime-types-2.1.18" 9396 + sources."mime-db-1.35.0" 9397 + sources."mime-types-2.1.19" 9375 9398 sources."minimatch-3.0.4" 9376 9399 sources."minimist-0.0.8" 9377 9400 sources."mixin-deep-1.3.1" ··· 9398 9421 sources."nan-2.10.0" 9399 9422 sources."nanomatch-1.2.13" 9400 9423 sources."native-promise-only-0.8.1" 9401 - (sources."nodemon-1.18.2" // { 9424 + (sources."nodemon-1.18.3" // { 9402 9425 dependencies = [ 9403 9426 sources."debug-3.1.0" 9404 9427 sources."supports-color-5.4.0" ··· 9655 9678 sources."util-deprecate-1.0.2" 9656 9679 sources."utils-merge-1.0.1" 9657 9680 sources."valid-url-1.0.9" 9658 - sources."validator-10.4.0" 9681 + sources."validator-10.5.0" 9659 9682 sources."which-1.3.1" 9660 9683 sources."widest-line-2.0.0" 9661 9684 sources."window-size-0.1.0" ··· 9684 9707 npm = nodeEnv.buildNodePackage { 9685 9708 name = "npm"; 9686 9709 packageName = "npm"; 9687 - version = "6.2.0"; 9710 + version = "6.3.0"; 9688 9711 src = fetchurl { 9689 - url = "https://registry.npmjs.org/npm/-/npm-6.2.0.tgz"; 9690 - sha512 = "GnlNsOnxwVJX4WSfyQY0gY3LnUX2cc46XU0eu1g+WSuZgDRUGmw8tuptitJu6byp0RWGT8ZEAKajblwdhQHN8A=="; 9712 + url = "https://registry.npmjs.org/npm/-/npm-6.3.0.tgz"; 9713 + sha512 = "oDtLFo3wXue/xe3pU/oks9VHS5501OAWlYrZrApZkFv7l2LXk+9CfPMbjbfZWK7Jqlc1jbNcJMkB6KZC7K/vEA=="; 9691 9714 }; 9692 9715 buildInputs = globalBuildInputs; 9693 9716 meta = { ··· 9701 9724 three = nodeEnv.buildNodePackage { 9702 9725 name = "three"; 9703 9726 packageName = "three"; 9704 - version = "0.94.0"; 9727 + version = "0.95.0"; 9705 9728 src = fetchurl { 9706 - url = "https://registry.npmjs.org/three/-/three-0.94.0.tgz"; 9707 - sha1 = "4ce6db7f2bfbf79c2d73444aa6e3cfc08a32d762"; 9729 + url = "https://registry.npmjs.org/three/-/three-0.95.0.tgz"; 9730 + sha512 = "vy6jMYs7CDwn47CejYHNi+++OdQue7xGIBhbLfekQ/G6MDxKRm0QB0/xWScz46/JvQAvF6pJAS5Q907l0i5iQA=="; 9708 9731 }; 9709 9732 buildInputs = globalBuildInputs; 9710 9733 meta = { ··· 9718 9741 mathjax = nodeEnv.buildNodePackage { 9719 9742 name = "mathjax"; 9720 9743 packageName = "mathjax"; 9721 - version = "2.7.4"; 9744 + version = "2.7.5"; 9722 9745 src = fetchurl { 9723 - url = "https://registry.npmjs.org/mathjax/-/mathjax-2.7.4.tgz"; 9724 - sha512 = "B6SLtoETmV08kqTepRyz8eqMRGFzllPy2QASKFdFl0g0YB6SNgQVnWae11RaF3/y8ZKLTJNJ7hLbMIqmBEkLzw=="; 9746 + url = "https://registry.npmjs.org/mathjax/-/mathjax-2.7.5.tgz"; 9747 + sha512 = "OzsJNitEHAJB3y4IIlPCAvS0yoXwYjlo2Y4kmm9KQzyIBZt2d8yKRalby3uTRNN4fZQiGL2iMXjpdP1u2Rq2DQ=="; 9725 9748 }; 9726 9749 buildInputs = globalBuildInputs; 9727 9750 meta = {
+9 -5
pkgs/development/python-modules/actdiag/default.nix
··· 1 - { stdenv, buildPythonPackage, fetchPypi 2 - , pep8, nose, unittest2, docutils, blockdiag }: 1 + { stdenv, buildPythonPackage, fetchPypi, fetchpatch 2 + , pep8, nose, unittest2, docutils, blockdiag, reportlab }: 3 3 4 4 buildPythonPackage rec { 5 5 pname = "actdiag"; ··· 10 10 sha256 = "983071777d9941093aaef3be1f67c198a8ac8d2bba264cdd1f337ca415ab46af"; 11 11 }; 12 12 13 + patches = fetchpatch { 14 + name = "drop_test_pep8.py.patch"; 15 + url = https://bitbucket.org/blockdiag/actdiag/commits/c1f2ed5947a1e93291f5860e4e30cee098bd635d/raw; 16 + sha256 = "1zxzwb0fvwlc8xgs45fx65341sjhb3h6l2p6rdj6i127vg1hsxb4"; 17 + }; 18 + 13 19 buildInputs = [ pep8 nose unittest2 docutils ]; 14 20 15 21 propagatedBuildInputs = [ blockdiag ]; 16 22 17 - # One test fails: 18 - # UnicodeEncodeError: 'ascii' codec can't encode character u'\u3042' in position 0: ordinal not in range(128) 19 - doCheck = false; 23 + checkInputs = [ reportlab ]; 20 24 21 25 meta = with stdenv.lib; { 22 26 description = "Generate activity-diagram image from spec-text file (similar to Graphviz)";
+30
pkgs/development/python-modules/basiciw/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , gcc 5 + , wirelesstools 6 + , isPy27 7 + , isPyPy 8 + }: 9 + 10 + buildPythonPackage rec { 11 + pname = "basiciw"; 12 + version = "0.2.2"; 13 + 14 + disabled = isPy27 || isPyPy; 15 + 16 + src = fetchPypi { 17 + inherit pname version; 18 + sha256 = "1ajmflvvlkflrcmqmkrx0zaira84z8kv4ssb2jprfwvjh8vfkysb"; 19 + }; 20 + 21 + buildInputs = [ gcc ]; 22 + propagatedBuildInputs = [ wirelesstools ]; 23 + 24 + meta = { 25 + description = "Get info about wireless interfaces using libiw"; 26 + homepage = https://github.com/enkore/basiciw; 27 + platforms = lib.platforms.linux; 28 + license = lib.licenses.gpl2; 29 + }; 30 + }
+43
pkgs/development/python-modules/beaker/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , nose 5 + , mock 6 + , webtest 7 + , sqlalchemy 8 + , pycrypto 9 + , isPy27 10 + , funcsigs 11 + , pycryptopp 12 + }: 13 + 14 + buildPythonPackage rec { 15 + pname = "Beaker"; 16 + version = "1.8.0"; 17 + 18 + # The pypy release do not contains the tests 19 + src = fetchFromGitHub { 20 + owner = "bbangert"; 21 + repo = "beaker"; 22 + rev = "${version}"; 23 + sha256 = "17yfr7a307n8rdl09was4j60xqk2s0hk0hywdkigrpj4qnw0is7g"; 24 + }; 25 + 26 + buildInputs = 27 + [ nose 28 + mock 29 + webtest 30 + ]; 31 + propagatedBuildInputs = [ 32 + sqlalchemy 33 + pycrypto 34 + ] ++ lib.optionals (isPy27) [ 35 + funcsigs 36 + pycryptopp 37 + ]; 38 + 39 + meta = { 40 + description = "A Session and Caching library with WSGI Middleware"; 41 + maintainers = with lib.maintainers; [ garbas domenkozar ]; 42 + }; 43 + }
+24
pkgs/development/python-modules/carbon/default.nix
··· 1 + { stdenv, buildPythonPackage, fetchPypi, isPy3k 2 + , twisted, whisper, txamqp, cachetools, urllib3 3 + }: 4 + 5 + buildPythonPackage rec { 6 + pname = "carbon"; 7 + version = "1.1.3"; 8 + 9 + disabled = isPy3k; 10 + 11 + src = fetchPypi { 12 + inherit pname version; 13 + sha256 = "1s7327p30w4l9ak4gc7m5ga521233179n2lr3j0ggfbmfhd6blky"; 14 + }; 15 + 16 + propagatedBuildInputs = [ twisted whisper txamqp cachetools urllib3 ]; 17 + 18 + meta = with stdenv.lib; { 19 + homepage = http://graphite.wikidot.com/; 20 + description = "Backend data caching and persistence daemon for Graphite"; 21 + maintainers = with maintainers; [ rickynils offline basvandijk ]; 22 + license = licenses.asl20; 23 + }; 24 + }
+54
pkgs/development/python-modules/graphite-web/default.nix
··· 1 + { stdenv, buildPythonPackage, fetchPypi, isPy3k, which 2 + , django, django_tagging, whisper, pycairo, cairocffi, ldap, memcached, pytz, urllib3, scandir 3 + }: 4 + if django.version != "1.8.18" 5 + || django_tagging.version != "0.4.3" 6 + then throw "graphite-web should be build with django_1_8 and django_tagging_0_4_3" 7 + else buildPythonPackage rec { 8 + pname = "graphite-web"; 9 + version = "1.1.3"; 10 + 11 + disabled = isPy3k; 12 + 13 + src = fetchPypi { 14 + inherit pname version; 15 + sha256 = "0nvyq1859abdch2l90avsjk9vb03s7wgxgrjsqvjhf2b9c1ncsfh"; 16 + }; 17 + 18 + propagatedBuildInputs = [ 19 + django django_tagging whisper pycairo cairocffi 20 + ldap memcached pytz urllib3 scandir 21 + ]; 22 + 23 + postInstall = '' 24 + wrapProgram $out/bin/run-graphite-devel-server.py \ 25 + --prefix PATH : ${which}/bin 26 + ''; 27 + 28 + preConfigure = '' 29 + # graphite is configured by storing a local_settings.py file inside the 30 + # graphite python package. Since that package is stored in the immutable 31 + # Nix store we can't modify it. So how do we configure graphite? 32 + # 33 + # First of all we rename "graphite.local_settings" to 34 + # "graphite_local_settings" so that the settings are not looked up in the 35 + # graphite package anymore. Secondly we place a directory containing a 36 + # graphite_local_settings.py on the PYTHONPATH in the graphite module 37 + # <nixpkgs/nixos/modules/services/monitoring/graphite.nix>. 38 + substituteInPlace webapp/graphite/settings.py \ 39 + --replace "graphite.local_settings" " graphite_local_settings" 40 + 41 + substituteInPlace webapp/graphite/settings.py \ 42 + --replace "join(WEBAPP_DIR, 'content')" "join('$out', 'webapp', 'content')" 43 + ''; 44 + 45 + # error: invalid command 'test' 46 + doCheck = false; 47 + 48 + meta = with stdenv.lib; { 49 + homepage = http://graphite.wikidot.com/; 50 + description = "Enterprise scalable realtime graphing"; 51 + maintainers = with maintainers; [ rickynils offline basvandijk ]; 52 + license = licenses.asl20; 53 + }; 54 + }
+25
pkgs/development/python-modules/graphite_beacon/default.nix
··· 1 + { stdenv, buildPythonPackage, fetchPypi 2 + , tornado, pyyaml, funcparserlib 3 + }: 4 + buildPythonPackage rec { 5 + pname = "graphite_beacon"; 6 + version = "0.27.0"; 7 + 8 + src = fetchPypi { 9 + inherit pname version; 10 + sha256 = "03bp4wyfn3xhcqyvs5hnk1n87m4smsmm1p7qp459m7j8hwpbq2ks"; 11 + }; 12 + 13 + propagatedBuildInputs = [ tornado pyyaml funcparserlib ]; 14 + 15 + postPatch = '' 16 + substituteInPlace requirements.txt --replace "==" ">=" 17 + ''; 18 + 19 + meta = with stdenv.lib; { 20 + description = "A simple alerting application for Graphite metrics"; 21 + homepage = https://github.com/klen/graphite-beacon; 22 + maintainers = [ maintainers.offline ]; 23 + license = licenses.mit; 24 + }; 25 + }
+32
pkgs/development/python-modules/graphitepager/default.nix
··· 1 + { stdenv, buildPythonPackage, fetchPypi 2 + , jinja2, markupsafe, pagerduty, pushbullet, python_magic, python-simple-hipchat 3 + , pyyaml, redis, requests, six, websocket_client, nose 4 + }: 5 + buildPythonPackage rec { 6 + pname = "graphitepager"; 7 + version = "0.2.11"; 8 + 9 + src = fetchPypi { 10 + inherit pname version; 11 + sha256 = "0v3g1qcgnkpgjzh6phnv13lnk8qjrcs9sq2qg6k0dk5ik31jfk3d"; 12 + }; 13 + 14 + propagatedBuildInputs = [ 15 + jinja2 markupsafe pagerduty pushbullet python_magic python-simple-hipchat 16 + pyyaml redis requests six websocket_client 17 + ]; 18 + 19 + postPatch = '' 20 + substituteInPlace requirements.txt --replace "==" ">=" 21 + ''; 22 + 23 + checkInputs = [ nose ]; 24 + checkPhase = "nosetests"; 25 + 26 + meta = with stdenv.lib; { 27 + description = "A simple alerting application for Graphite metrics"; 28 + homepage = https://github.com/seatgeek/graphite-pager; 29 + maintainers = with maintainers; [ offline basvandijk ]; 30 + license = licenses.bsd2; 31 + }; 32 + }
+29
pkgs/development/python-modules/imgaug/default.nix
··· 1 + { stdenv, buildPythonPackage, fetchPypi, numpy, scipy, scikitimage, opencv3, six }: 2 + 3 + buildPythonPackage rec { 4 + pname = "imgaug"; 5 + version = "0.2.6"; 6 + 7 + src = fetchPypi { 8 + inherit pname version; 9 + sha256 = "1wy8ydkqq0jrwxwdv04q89n3gwsr9pjaspsbw26ipg5a5lnhb9c2"; 10 + }; 11 + 12 + propagatedBuildInputs = [ 13 + numpy 14 + scipy 15 + scikitimage 16 + opencv3 17 + six 18 + ]; 19 + 20 + # disable tests when there are no tests in the PyPI archive 21 + doCheck = false; 22 + 23 + meta = with stdenv.lib; { 24 + homepage = https://github.com/aleju/imgaug; 25 + description = "Image augmentation for machine learning experiments"; 26 + license = licenses.mit; 27 + maintainers = with maintainers; [ cmcdragonkai ]; 28 + }; 29 + }
+30
pkgs/development/python-modules/influxgraph/default.nix
··· 1 + { stdenv, buildPythonPackage, fetchPypi, isPy3k 2 + , influxdb, graphite_api, memcached, gnugrep 3 + }: 4 + 5 + buildPythonPackage rec { 6 + pname = "influxgraph"; 7 + version = "1.5.0"; 8 + 9 + src = fetchPypi { 10 + inherit pname version; 11 + sha256 = "0l33sfwdh4bfprmzp2kx0d9098g6yxbnhyyx9qr3kzczpm0jg9vy"; 12 + }; 13 + 14 + patchPhase = stdenv.lib.optionalString isPy3k '' 15 + sed 's/python-memcached/python3-memcached/' \ 16 + -i ./influxgraph.egg-info/requires.txt \ 17 + -i ./setup.py 18 + ''; 19 + 20 + propagatedBuildInputs = [ influxdb graphite_api memcached ]; 21 + 22 + passthru.moduleName = "influxgraph.InfluxDBFinder"; 23 + 24 + meta = with stdenv.lib; { 25 + description = "InfluxDB storage plugin for Graphite-API"; 26 + homepage = https://github.com/InfluxGraph/influxgraph; 27 + license = licenses.asl20; 28 + maintainers = with maintainers; [ basvandijk ]; 29 + }; 30 + }
+11
pkgs/development/python-modules/ipython/5.nix
··· 2 2 , stdenv 3 3 , buildPythonPackage 4 4 , fetchPypi 5 + , fetchpatch 5 6 # Build dependencies 6 7 , glibcLocales 7 8 # Test dependencies ··· 35 36 prePatch = stdenv.lib.optionalString stdenv.isDarwin '' 36 37 substituteInPlace setup.py --replace "'gnureadline'" " " 37 38 ''; 39 + 40 + patches = [ 41 + # improve cython support, needed by sage, accepted upstream 42 + # https://github.com/ipython/ipython/pull/11139 43 + (fetchpatch { 44 + name = "signature-use-inspect.patch"; 45 + url = "https://github.com/ipython/ipython/commit/8d399b98d3ed5c765835594100c4d36fb2f739dc.patch"; 46 + sha256 = "1r7v9clwwbskmj4y160vcj6g0vzqbvnj4y1bm2n4bskafapm42g0"; 47 + }) 48 + ]; 38 49 39 50 buildInputs = [ glibcLocales ]; 40 51
+27
pkgs/development/python-modules/keras-applications/default.nix
··· 1 + { lib, buildPythonPackage, fetchPypi, numpy, h5py }: 2 + 3 + buildPythonPackage rec { 4 + pname = "Keras_Applications"; 5 + version = "1.0.4"; 6 + 7 + src = fetchPypi { 8 + inherit pname version; 9 + sha256 = "8c95300328630ae74fb0828b6fa38269a25c0228a02f1e5181753bfd48961f49"; 10 + }; 11 + 12 + # Cyclic dependency: keras-applications requires keras, which requires keras-applications 13 + postPatch = '' 14 + sed -i "s/keras>=[^']*//" setup.py 15 + ''; 16 + 17 + # No tests in PyPI tarball 18 + doCheck = false; 19 + 20 + propagatedBuildInputs = [ numpy h5py ]; 21 + 22 + meta = with lib; { 23 + description = "Reference implementations of popular deep learning models"; 24 + homepage = https://github.com/keras-team/keras-applications; 25 + license = licenses.mit; 26 + }; 27 + }
+27
pkgs/development/python-modules/keras-preprocessing/default.nix
··· 1 + { lib, buildPythonPackage, fetchPypi, numpy, scipy, six }: 2 + 3 + buildPythonPackage rec { 4 + pname = "Keras_Preprocessing"; 5 + version = "1.0.2"; 6 + 7 + src = fetchPypi { 8 + inherit pname version; 9 + sha256 = "f5306554d2b454d825b36f35e327744f5477bd2ae21017f1a93b2097bed6757e"; 10 + }; 11 + 12 + # Cyclic dependency: keras-preprocessing requires keras, which requires keras-preprocessing 13 + postPatch = '' 14 + sed -i "s/keras>=[^']*//" setup.py 15 + ''; 16 + 17 + # No tests in PyPI tarball 18 + doCheck = false; 19 + 20 + propagatedBuildInputs = [ numpy scipy six ]; 21 + 22 + meta = with lib; { 23 + description = "Easy data preprocessing and data augmentation for deep learning models"; 24 + homepage = https://github.com/keras-team/keras-preprocessing; 25 + license = licenses.mit; 26 + }; 27 + }
+4 -2
pkgs/development/python-modules/keras/default.nix
··· 1 1 { stdenv, buildPythonPackage, fetchPypi 2 2 , pytest, pytestcov, pytestpep8, pytest_xdist 3 3 , six, numpy, scipy, pyyaml, h5py 4 + , keras-applications, keras-preprocessing 4 5 }: 5 6 6 7 buildPythonPackage rec { 7 8 pname = "Keras"; 8 - version = "2.2.0"; 9 + version = "2.2.2"; 9 10 10 11 src = fetchPypi { 11 12 inherit pname version; 12 - sha256 = "5b8499d157af217f1a5ee33589e774127ebc3e266c833c22cb5afbb0ed1734bf"; 13 + sha256 = "468d98da104ec5c3dbb10c2ef6bb345ab154f6ca2d722d4c250ef4d6105de17a"; 13 14 }; 14 15 15 16 checkInputs = [ ··· 21 22 22 23 propagatedBuildInputs = [ 23 24 six pyyaml numpy scipy h5py 25 + keras-applications keras-preprocessing 24 26 ]; 25 27 26 28 # Couldn't get tests working
+1 -1
pkgs/development/python-modules/marionette-harness/mozlog.nix
··· 16 16 17 17 src = fetchPypi { 18 18 inherit pname version; 19 - sha256 = "af3a3252bc58f8642a641601ba59096c22e4aa49cdc1ed4b0df2314f4f027f0d"; 19 + sha256 = "00x28z6diw06gakb5isbfha5z2n63yyncv4za303nsgzxvlihmx0"; 20 20 }; 21 21 22 22 propagatedBuildInputs = [ blessings mozterm six ];
+3 -1
pkgs/development/python-modules/mozterm/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, isPy3k }: 1 + { lib, buildPythonPackage, fetchPypi, isPy3k, six }: 2 2 3 3 buildPythonPackage rec { 4 4 pname = "mozterm"; ··· 6 6 7 7 # name 'unicode' is not defined 8 8 disabled = isPy3k; 9 + 10 + propagatedBuildInputs = [six]; 9 11 10 12 src = fetchPypi { 11 13 inherit pname version;
+19
pkgs/development/python-modules/shippai/default.nix
··· 1 + { stdenv, buildPythonPackage, fetchPypi }: 2 + 3 + buildPythonPackage rec { 4 + pname = "shippai"; 5 + # Please make sure that vdirsyncer still builds if you update this package. 6 + version = "0.2.3"; 7 + 8 + src = fetchPypi { 9 + inherit pname version; 10 + sha256 = "1ppwywzg4d12h658682ssmingm6ls6a96p4ak26i2w9d4lf8pfsc"; 11 + }; 12 + 13 + meta = with stdenv.lib; { 14 + description = "Use Rust failures as Python exceptions"; 15 + homepage = https://github.com/untitaker/shippai; 16 + license = licenses.mit; 17 + maintainers = with maintainers; [ gebner ]; 18 + }; 19 + }
+9
pkgs/development/python-modules/tensorflow/bin.nix
··· 61 61 # bleach) Hence we disable dependency checking for now. 62 62 installFlags = lib.optional isPy36 "--no-dependencies"; 63 63 64 + 65 + # Upstream has a pip hack that results in bin/tensorboard being in both tensorflow 66 + # and the propageted input tensorflow-tensorboard which causes environment collisions. 67 + # 68 + # https://github.com/tensorflow/tensorflow/blob/v1.7.1/tensorflow/tools/pip_package/setup.py#L79 69 + postInstall = '' 70 + rm $out/bin/tensorboard 71 + ''; 72 + 64 73 # Note that we need to run *after* the fixup phase because the 65 74 # libraries are loaded at runtime. If we run in preFixup then 66 75 # patchelf --shrink-rpath will remove the cuda libraries.
+20
pkgs/development/python-modules/whisper/default.nix
··· 1 + { stdenv, buildPythonPackage, fetchPypi, six }: 2 + 3 + buildPythonPackage rec { 4 + pname = "whisper"; 5 + version = "1.1.3"; 6 + 7 + src = fetchPypi { 8 + inherit pname version; 9 + sha256 = "1ahzsxk52ws8k3kdq52qbsbsx2r9z350j8gg9adw4x5fjwksz4r8"; 10 + }; 11 + 12 + propagatedBuildInputs = [ six ]; 13 + 14 + meta = with stdenv.lib; { 15 + homepage = http://graphite.wikidot.com/; 16 + description = "Fixed size round-robin style database"; 17 + maintainers = with maintainers; [ rickynils offline basvandijk ]; 18 + license = licenses.asl20; 19 + }; 20 + }
+6 -5
pkgs/development/r-modules/default.nix
··· 42 42 # from the name, version, sha256, and optional per-package arguments above 43 43 # 44 44 deriveBioc = mkDerive { 45 - mkHomepage = {name, biocVersion}: "https://bioconductor.org/packages/${biocVersion}/bioc/html/${name}.html"; 45 + mkHomepage = {name, biocVersion, ...}: "https://bioconductor.org/packages/${biocVersion}/bioc/html/${name}.html"; 46 46 mkUrls = {name, version, biocVersion}: [ "mirror://bioc/${biocVersion}/bioc/src/contrib/${name}_${version}.tar.gz" 47 47 "mirror://bioc/${biocVersion}/bioc/src/contrib/Archive/${name}_${version}.tar.gz" ]; 48 48 }; 49 49 deriveBiocAnn = mkDerive { 50 - mkHomepage = {name}: "http://www.bioconductor.org/packages/${name}.html"; 50 + mkHomepage = {name, ...}: "http://www.bioconductor.org/packages/${name}.html"; 51 51 mkUrls = {name, version, biocVersion}: [ "mirror://bioc/${biocVersion}/data/annotation/src/contrib/${name}_${version}.tar.gz" ]; 52 52 }; 53 53 deriveBiocExp = mkDerive { 54 - mkHomepage = {name}: "http://www.bioconductor.org/packages/${name}.html"; 54 + mkHomepage = {name, ...}: "http://www.bioconductor.org/packages/${name}.html"; 55 55 mkUrls = {name, version, biocVersion}: [ "mirror://bioc/${biocVersion}/data/experiment/src/contrib/${name}_${version}.tar.gz" ]; 56 56 }; 57 57 deriveCran = mkDerive { 58 - mkHomepage = {name, snapshot}: "http://mran.revolutionanalytics.com/snapshot/${snapshot}/web/packages/${name}/"; 58 + mkHomepage = {name, snapshot, ...}: "http://mran.revolutionanalytics.com/snapshot/${snapshot}/web/packages/${name}/"; 59 59 mkUrls = {name, version, snapshot}: [ "http://mran.revolutionanalytics.com/snapshot/${snapshot}/src/contrib/${name}_${version}.tar.gz" ]; 60 60 }; 61 61 ··· 216 216 # `self` is `_self` with overridden packages; 217 217 # packages in `_self` may depends on overridden packages. 218 218 self = (defaultOverrides _self self) // overrides; 219 - _self = import ./bioc-packages.nix { inherit self; derive = deriveBioc; } // 219 + _self = { inherit buildRPackage; } // 220 + import ./bioc-packages.nix { inherit self; derive = deriveBioc; } // 220 221 import ./bioc-annotation-packages.nix { inherit self; derive = deriveBiocAnn; } // 221 222 import ./bioc-experiment-packages.nix { inherit self; derive = deriveBiocExp; } // 222 223 import ./cran-packages.nix { inherit self; derive = deriveCran; };
+3 -3
pkgs/development/r-modules/generic-builder.nix
··· 1 1 { stdenv, R, libcxx, xvfb_run, utillinux, Cocoa, Foundation, gettext, gfortran }: 2 2 3 - { name, buildInputs ? [], ... } @ attrs: 3 + { name, buildInputs ? [], requireX ? false, ... } @ attrs: 4 4 5 5 stdenv.mkDerivation ({ 6 6 buildInputs = buildInputs ++ [R gettext] ++ 7 - stdenv.lib.optionals attrs.requireX [utillinux xvfb_run] ++ 7 + stdenv.lib.optionals requireX [utillinux xvfb_run] ++ 8 8 stdenv.lib.optionals stdenv.isDarwin [Cocoa Foundation gfortran]; 9 9 10 10 NIX_CFLAGS_COMPILE = ··· 26 26 else 27 27 [ "--no-test-load" ]; 28 28 29 - rCommand = if attrs.requireX or false then 29 + rCommand = if requireX then 30 30 # Unfortunately, xvfb-run has a race condition even with -a option, so that 31 31 # we acquire a lock explicitly. 32 32 "flock ${xvfb_run} xvfb-run -a -e xvfb-error R"
+2 -2
pkgs/development/ruby-modules/bundler/default.nix
··· 4 4 inherit ruby; 5 5 name = "${gemName}-${version}"; 6 6 gemName = "bundler"; 7 - version = "1.16.2"; 8 - source.sha256 = "3bb53e03db0a8008161eb4c816ccd317120d3c415ba6fee6f90bbc7f7eec8690"; 7 + version = "1.16.3"; 8 + source.sha256 = "0spddjiq6yscl4sywwcj5zrjk3lq02zacigrz2fh78yfdzyi34fq"; 9 9 dontPatchShebangs = true; 10 10 11 11 postFixup = ''
+5 -5
pkgs/development/ruby-modules/solargraph/Gemfile.lock
··· 11 11 nokogiri (1.8.4) 12 12 mini_portile2 (~> 2.3.0) 13 13 parallel (1.12.1) 14 - parser (2.5.1.0) 14 + parser (2.5.1.2) 15 15 ast (~> 2.4.0) 16 16 powerpack (0.1.2) 17 17 rainbow (3.0.0) 18 18 reverse_markdown (1.1.0) 19 19 nokogiri 20 - rubocop (0.58.0) 20 + rubocop (0.58.2) 21 21 jaro_winkler (~> 1.5.1) 22 22 parallel (~> 1.10) 23 - parser (>= 2.5) 23 + parser (>= 2.5, != 2.5.1.1) 24 24 powerpack (~> 0.1) 25 25 rainbow (>= 2.2.2, < 4.0) 26 26 ruby-progressbar (~> 1.7) 27 27 unicode-display_width (~> 1.0, >= 1.0.1) 28 28 ruby-progressbar (1.9.0) 29 - solargraph (0.23.3) 29 + solargraph (0.23.6) 30 30 coderay (~> 1.1) 31 31 eventmachine (~> 1.2, >= 1.2.5) 32 32 htmlentities (~> 4.3, >= 4.3.4) ··· 40 40 thor (0.20.0) 41 41 tilt (2.0.8) 42 42 unicode-display_width (1.4.0) 43 - yard (0.9.14) 43 + yard (0.9.15) 44 44 45 45 PLATFORMS 46 46 ruby
+8 -8
pkgs/development/ruby-modules/solargraph/gemset.nix
··· 76 76 dependencies = ["ast"]; 77 77 source = { 78 78 remotes = ["https://rubygems.org"]; 79 - sha256 = "1af7aa1c2npi8dkshgm3f8qyacabm94ckrdz7b8vd3f8zzswqzp9"; 79 + sha256 = "1zp89zg7iypncszxsjp8kiccrpbdf728jl449g6cnfkz990fyb5k"; 80 80 type = "gem"; 81 81 }; 82 - version = "2.5.1.0"; 82 + version = "2.5.1.2"; 83 83 }; 84 84 powerpack = { 85 85 source = { ··· 110 110 dependencies = ["jaro_winkler" "parallel" "parser" "powerpack" "rainbow" "ruby-progressbar" "unicode-display_width"]; 111 111 source = { 112 112 remotes = ["https://rubygems.org"]; 113 - sha256 = "091simr4pvxnkm472ixk5lqbnhgznvmhjpjf98ppbx1r68a4mcp3"; 113 + sha256 = "0fc1fw9z98qd91ipsh9hdvpcb401qvkhw518s35l8a67sv4vdnj3"; 114 114 type = "gem"; 115 115 }; 116 - version = "0.58.0"; 116 + version = "0.58.2"; 117 117 }; 118 118 ruby-progressbar = { 119 119 source = { ··· 127 127 dependencies = ["coderay" "eventmachine" "htmlentities" "kramdown" "parser" "reverse_markdown" "rubocop" "thor" "tilt" "yard"]; 128 128 source = { 129 129 remotes = ["https://rubygems.org"]; 130 - sha256 = "1145g6x04fwmg8n51lsk7ybig31scndlj1i2i4lbrj9621bbqxfz"; 130 + sha256 = "01lh5vibr277vhhrgk6zl09ivb262c1qpk54ahzhc40zs309842b"; 131 131 type = "gem"; 132 132 }; 133 - version = "0.23.3"; 133 + version = "0.23.6"; 134 134 }; 135 135 thor = { 136 136 source = { ··· 159 159 yard = { 160 160 source = { 161 161 remotes = ["https://rubygems.org"]; 162 - sha256 = "08kww2m1izjq56q2va2my0x3f3f0xsg6f07b6sgb4nl0scr6y10q"; 162 + sha256 = "145pbc0x95s6x296kh1wp5ykwy6srfcz946dgj83s35g8p52z4q4"; 163 163 type = "gem"; 164 164 }; 165 - version = "0.9.14"; 165 + version = "0.9.15"; 166 166 }; 167 167 }
+9 -10
pkgs/development/tools/easyjson/default.nix
··· 1 - # This file was generated by https://github.com/kamilchm/go2nix v1.2.1 2 - { stdenv, buildGoPackage, fetchgit }: 1 + { stdenv, buildGoPackage, fetchFromGitHub }: 3 2 4 3 buildGoPackage rec { 5 4 name = "easyjson-unstable-${version}"; 6 - version = "2018-06-06"; 7 - rev = "3fdea8d05856a0c8df22ed4bc71b3219245e4485"; 8 - 5 + version = "2018-07-30"; 9 6 goPackagePath = "github.com/mailru/easyjson"; 7 + goDeps = ./deps.nix; 10 8 11 - src = fetchgit { 12 - inherit rev; 13 - url = "https://github.com/mailru/easyjson"; 14 - sha256 = "0g3crph77yhv4ipdnwqc32z4cp87ahi4ikad5kyy6q4znnxliz74"; 9 + src = fetchFromGitHub { 10 + owner = "mailru"; 11 + repo = "easyjson"; 12 + rev = "03f2033d19d5860aef995fe360ac7d395cd8ce65"; 13 + sha256 = "0r62ym6m1ijby7nwplq0gdnhak8in63njyisrwhr3xpx9vkira97"; 15 14 }; 16 15 17 - goDeps = ./deps.nix; 16 + enableParallelBuilding = true; 18 17 19 18 meta = with stdenv.lib; { 20 19 homepage = "https://github.com/mailru/easyjson";
+3 -2
pkgs/development/tools/parsing/antlr/2.7.7.nix
··· 1 - {stdenv, fetchurl, jdk, python}: 1 + { stdenv, fetchurl, jdk, python2 }: 2 2 3 3 stdenv.mkDerivation { 4 4 name = "antlr-2.7.7"; ··· 7 7 sha256 = "1ffvcwdw73id0dk6pj2mlxjvbg0662qacx4ylayqcxgg381fnfl5"; 8 8 }; 9 9 patches = [ ./2.7.7-fixes.patch ]; 10 - buildInputs = [jdk python]; 10 + buildInputs = [ jdk ]; 11 + nativeBuildInputs = [ python2 ]; 11 12 12 13 meta = with stdenv.lib; { 13 14 description = "Powerful parser generator";
+7 -8
pkgs/development/tools/quicktemplate/default.nix
··· 1 - # This file was generated by https://github.com/kamilchm/go2nix v1.2.1 2 - { stdenv, buildGoPackage, fetchgit }: 1 + { stdenv, buildGoPackage, fetchFromGitHub }: 3 2 4 3 buildGoPackage rec { 5 4 name = "quicktemplate-unstable-${version}"; 6 5 version = "2018-04-30"; 7 - rev = "a91e0946457b6583004fbfc159339b8171423aed"; 8 - 9 6 goPackagePath = "github.com/valyala/quicktemplate"; 7 + goDeps = ./deps.nix; 10 8 11 - src = fetchgit { 12 - inherit rev; 13 - url = "https://github.com/valyala/quicktemplate"; 9 + src = fetchFromGitHub { 10 + owner = "valyala"; 11 + repo = "quicktemplate"; 12 + rev = "a91e0946457b6583004fbfc159339b8171423aed"; 14 13 sha256 = "1z89ang5pkq5qs5b2nwhzyrw0zjlsas539l9kix374fhka49n8yc"; 15 14 }; 16 15 17 - goDeps = ./deps.nix; 16 + enableParallelBuilding = true; 18 17 19 18 meta = with stdenv.lib; { 20 19 homepage = "https://github.com/valyala/quicktemplate";
+2 -2
pkgs/development/tools/yarn/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "yarn-${version}"; 5 - version = "1.9.2"; 5 + version = "1.9.4"; 6 6 7 7 src = fetchzip { 8 8 url = "https://github.com/yarnpkg/yarn/releases/download/v${version}/yarn-v${version}.tar.gz"; 9 - sha256 = "0bk006zs1bk6nwj9x07ry314fgxi21sk79h1paljbs6yzrv62h4g"; 9 + sha256 = "0lxncqvz66167ijhsi76ds2yp8140d9ywn89y5vm92010irsgs20"; 10 10 }; 11 11 12 12 buildInputs = [ nodejs ];
+2 -2
pkgs/development/web/nodejs/v10.nix
··· 5 5 in 6 6 buildNodejs { 7 7 inherit enableNpm; 8 - version = "10.6.0"; 9 - sha256 = "13vyzh53j2c4mv3q3yb0hkdpl1mag5705k7kmb8nmcvdhcm78q0r"; 8 + version = "10.7.0"; 9 + sha256 = "0qp93ddbnvadimj11wnznwhkq8vq1f7q259iq8siy5b7r936kvil"; 10 10 patches = lib.optionals stdenv.isDarwin [ ./no-xcode-v7.patch ./no-xcodebuild.patch ]; 11 11 }
+1 -1
pkgs/games/cataclysm-dda/common.nix
··· 74 74 75 75 installXDGAppLauncher = '' 76 76 launcher="$out/share/applications/cataclysm-dda.desktop" 77 - install -D -m 444 data/xdg/com.cataclysmdda.cataclysm-dda.desktop -T "$launcher" 77 + install -D -m 444 data/xdg/*cataclysm-dda.desktop -T "$launcher" 78 78 sed -i "$launcher" -e "s,\(Exec=\)\(cataclysm-tiles\),\1$out/bin/\2," 79 79 install -D -m 444 data/xdg/cataclysm-dda.svg -t $out/share/icons/hicolor/scalable/apps 80 80 '';
+2 -2
pkgs/games/empty-epsilon/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, cmake, sfml, libX11, glew, python }: 1 + { lib, stdenv, fetchFromGitHub, cmake, sfml, libX11, glew, python3 }: 2 2 3 3 let 4 4 ··· 42 42 }; 43 43 44 44 nativeBuildInputs = [ cmake ]; 45 - buildInputs = [ serious-proton sfml glew libX11 python ]; 45 + buildInputs = [ serious-proton sfml glew libX11 python3 ]; 46 46 47 47 cmakeFlags = [ 48 48 "-DSERIOUS_PROTON_DIR=${serious-proton.src}"
+45
pkgs/misc/cups/drivers/mfcl8690cdwcupswrapper/default.nix
··· 1 + { coreutils, dpkg, fetchurl, gnugrep, gnused, makeWrapper, 2 + mfcl8690cdwlpr, perl, stdenv}: 3 + 4 + stdenv.mkDerivation rec { 5 + name = "mfcl8690cdwcupswrapper-${version}"; 6 + version = "1.3.0-0"; 7 + 8 + src = fetchurl { 9 + url = "http://download.brother.com/welcome/dlf103250/${name}.i386.deb"; 10 + sha256 = "16nnh3hd5yv0m4191wja9fvxxzngzfccfj2rfhcswbakajyk5ywn"; 11 + }; 12 + 13 + nativeBuildInputs = [ dpkg makeWrapper ]; 14 + 15 + phases = [ "installPhase" ]; 16 + 17 + installPhase = '' 18 + dpkg-deb -x $src $out 19 + 20 + basedir=${mfcl8690cdwlpr}/opt/brother/Printers/mfcl8690cdw 21 + dir=$out/opt/brother/Printers/mfcl8690cdw 22 + 23 + substituteInPlace $dir/cupswrapper/brother_lpdwrapper_mfcl8690cdw \ 24 + --replace /usr/bin/perl ${perl}/bin/perl \ 25 + --replace "basedir =~" "basedir = \"$basedir/\"; #" \ 26 + --replace "PRINTER =~" "PRINTER = \"mfcl8690cdw\"; #" 27 + 28 + wrapProgram $dir/cupswrapper/brother_lpdwrapper_mfcl8690cdw \ 29 + --prefix PATH : ${stdenv.lib.makeBinPath [ coreutils gnugrep gnused ]} 30 + 31 + mkdir -p $out/lib/cups/filter 32 + mkdir -p $out/share/cups/model 33 + 34 + ln $dir/cupswrapper/brother_lpdwrapper_mfcl8690cdw $out/lib/cups/filter 35 + ln $dir/cupswrapper/brother_mfcl8690cdw_printer_en.ppd $out/share/cups/model 36 + ''; 37 + 38 + meta = { 39 + description = "Brother MFC-L8690CDW CUPS wrapper driver"; 40 + homepage = http://www.brother.com/; 41 + license = stdenv.lib.licenses.unfree; 42 + platforms = stdenv.lib.platforms.linux; 43 + maintainers = [ stdenv.lib.maintainers.fuzzy-id ]; 44 + }; 45 + }
+45
pkgs/misc/cups/drivers/mfcl8690cdwlpr/default.nix
··· 1 + { coreutils, dpkg, fetchurl, file, ghostscript, gnugrep, gnused, 2 + makeWrapper, perl, pkgs, stdenv, which }: 3 + 4 + stdenv.mkDerivation rec { 5 + name = "mfcl8690cdwlpr-${version}"; 6 + version = "1.2.0-0"; 7 + 8 + src = fetchurl { 9 + url = "http://download.brother.com/welcome/dlf103241/${name}.i386.deb"; 10 + sha256 = "02k43nh51pn4lf7gaid9yhil0a3ikpy4krw7dhgphmm5pap907sx"; 11 + }; 12 + 13 + nativeBuildInputs = [ dpkg makeWrapper ]; 14 + 15 + phases = [ "installPhase" ]; 16 + 17 + installPhase = '' 18 + dpkg-deb -x $src $out 19 + 20 + dir=$out/opt/brother/Printers/mfcl8690cdw 21 + filter=$dir/lpd/filter_mfcl8690cdw 22 + 23 + substituteInPlace $filter \ 24 + --replace /usr/bin/perl ${perl}/bin/perl \ 25 + --replace "BR_PRT_PATH =~" "BR_PRT_PATH = \"$dir/\"; #" \ 26 + --replace "PRINTER =~" "PRINTER = \"mfcl8690cdw\"; #" 27 + 28 + wrapProgram $filter \ 29 + --prefix PATH : ${stdenv.lib.makeBinPath [ 30 + coreutils file ghostscript gnugrep gnused which 31 + ]} 32 + 33 + # need to use i686 glibc here, these are 32bit proprietary binaries 34 + interpreter=${pkgs.pkgsi686Linux.glibc}/lib/ld-linux.so.2 35 + patchelf --set-interpreter "$interpreter" $dir/lpd/brmfcl8690cdwfilter 36 + ''; 37 + 38 + meta = { 39 + description = "Brother MFC-L8690CDW LPR printer driver"; 40 + homepage = http://www.brother.com/; 41 + license = stdenv.lib.licenses.unfree; 42 + maintainers = [ stdenv.lib.maintainers.fuzzy-id ]; 43 + platforms = [ "i686-linux" ]; 44 + }; 45 + }
+3 -3
pkgs/misc/emulators/caprice32/default.nix
··· 3 3 stdenv.mkDerivation rec { 4 4 5 5 repo = "caprice32"; 6 - version = "unstable-2018-02-10"; 7 - rev = "53de69543300f81af85df32cbd21bb5c68cab61e"; 6 + version = "unstable-2018-03-05"; 7 + rev = "317fe638111e245d67e301f6f295094d3c859a70"; 8 8 name = "${repo}-${version}"; 9 9 10 10 src = fetchFromGitHub { 11 11 inherit rev repo; 12 12 owner = "ColinPitrat"; 13 - sha256 = "12yv56blm49qmshpk4mgc802bs51wv2ra87hmcbf2wxma39c45fy"; 13 + sha256 = "1bywpmkizixcnr057k8zq9nlw0zhcmwkiriln0krgdcm7d3h9b86"; 14 14 }; 15 15 16 16 postPatch = "substituteInPlace cap32.cfg --replace /usr/local $out";
+9
pkgs/misc/tmux-plugins/default.nix
··· 100 100 dependencies = [ pkgs.fpp ]; 101 101 }; 102 102 103 + fzf-tmux-url = buildTmuxPluginFrom2Nix { 104 + pluginName = "fzf-tmux-url"; 105 + src = fetchgit { 106 + url = "https://github.com/wfxr/tmux-fzf-url"; 107 + rev = "ecd518eec1067234598c01e655b048ff9d06ef2f"; 108 + sha256 = "0png8hdv91y2nivq5vdii2192mb2qcrkwwn69lzxrdnbfa27qrgv"; 109 + }; 110 + }; 111 + 103 112 logging = buildTmuxPluginFrom2Nix { 104 113 pluginName = "logging"; 105 114 src = fetchgit {
+11 -26
pkgs/misc/urbit/default.nix
··· 1 - { stdenv, fetchFromGitHub, gcc, gmp, libsigsegv, openssl, automake, autoconf, ragel, 2 - cmake, re2c, libtool, ncurses, perl, zlib, python2, curl }: 1 + { stdenv, fetchFromGitHub, curl, git, gmp, libsigsegv, meson, ncurses, ninja 2 + , openssl, pkgconfig, re2c, zlib 3 + }: 3 4 4 5 stdenv.mkDerivation rec { 5 6 name = "urbit-${version}"; 6 - version = "0.4.5"; 7 + version = "0.6.0"; 7 8 8 9 src = fetchFromGitHub { 9 10 owner = "urbit"; 10 11 repo = "urbit"; 11 - rev = "v${version}"; 12 - sha256 = "1zgxgqbz74nsgfyrvsnjj6xxpb64mrnby7bb5qy733sy04gmzgik"; 12 + rev = "urbit-${version}"; 13 + sha256 = "158mz6c6y5z1b6piid8hvrl5mcqh8q1ny185gz51jayia51azmgs"; 14 + fetchSubmodules = true; 13 15 }; 14 16 15 - buildInputs = with stdenv.lib; [ 16 - gcc gmp libsigsegv openssl automake autoconf ragel cmake re2c libtool 17 - ncurses perl zlib python2 curl 18 - ]; 17 + nativeBuildInputs = [ pkgconfig ninja meson ]; 18 + buildInputs = [ curl git gmp libsigsegv ncurses openssl re2c zlib ]; 19 19 20 - # uses 'readdir_r' deprecated by glibc 2.24 21 - NIX_CFLAGS_COMPILE = "-Wno-error=deprecated-declarations"; 22 - 23 - configurePhase = '' 24 - : 25 - ''; 26 - 27 - buildPhase = '' 28 - sed -i 's/-lcurses/-lncurses/' Makefile 29 - mkdir -p $out 30 - cp -r . $out/ 31 - cd $out 32 - make 33 - ''; 34 - 35 - installPhase = '' 36 - : 20 + postPatch = '' 21 + patchShebangs . 37 22 ''; 38 23 39 24 meta = with stdenv.lib; {
+3 -3
pkgs/os-specific/linux/bluez/default.nix
··· 1 1 { stdenv, fetchurl, pkgconfig, dbus, glib, alsaLib, 2 - pythonPackages, readline, udev, libical, 2 + python3, readline, udev, libical, 3 3 systemd, enableWiimote ? false, enableMidi ? false }: 4 4 5 5 stdenv.mkDerivation rec { ··· 10 10 sha256 = "048r91vx9gs5nwwbah2s0xig04nwk14c5s0vb7qmaqdvighsmz2z"; 11 11 }; 12 12 13 - pythonPath = with pythonPackages; [ 13 + pythonPath = with python3.pkgs; [ 14 14 dbus-python pygobject2 pygobject3 recursivePthLoader 15 15 ]; 16 16 17 17 buildInputs = [ 18 - dbus glib alsaLib pythonPackages.python pythonPackages.wrapPython 18 + dbus glib alsaLib python3 python3.pkgs.wrapPython 19 19 readline udev libical 20 20 ]; 21 21
+2 -2
pkgs/os-specific/linux/kernel/linux-4.14.nix
··· 3 3 with stdenv.lib; 4 4 5 5 buildLinux (args // rec { 6 - version = "4.14.59"; 6 + version = "4.14.60"; 7 7 8 8 # modDirVersion needs to be x.y.z, will automatically add .0 if needed 9 9 modDirVersion = if (modDirVersionArg == null) then concatStrings (intersperse "." (take 3 (splitString "." "${version}.0"))) else modDirVersionArg; ··· 13 13 14 14 src = fetchurl { 15 15 url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; 16 - sha256 = "16ribg80jk830wyk4k7v86jysmnkj59v62rlkqil3advc7337iky"; 16 + sha256 = "15djfcl4m388vm3wkfa6yx0sglyp8zh04s7m7xa1ybmsiwjl7qbc"; 17 17 }; 18 18 } // (args.argsOverride or {}))
+2 -2
pkgs/os-specific/linux/kernel/linux-4.17.nix
··· 3 3 with stdenv.lib; 4 4 5 5 buildLinux (args // rec { 6 - version = "4.17.11"; 6 + version = "4.17.12"; 7 7 8 8 # modDirVersion needs to be x.y.z, will automatically add .0 if needed 9 9 modDirVersion = if (modDirVersionArg == null) then concatStrings (intersperse "." (take 3 (splitString "." "${version}.0"))) else modDirVersionArg; ··· 13 13 14 14 src = fetchurl { 15 15 url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; 16 - sha256 = "133jyd75a0gq71m783s3ydjkpnzw5xxn4wrk1zal6fr19znq87nv"; 16 + sha256 = "18xmkj1bmfrmvx6p8cl5l7pyv0zk5y3mxhyfnlzqwkxnvkjf5660"; 17 17 }; 18 18 } // (args.argsOverride or {}))
+2 -2
pkgs/os-specific/linux/kernel/linux-4.9.nix
··· 1 1 { stdenv, buildPackages, hostPlatform, fetchurl, perl, buildLinux, ... } @ args: 2 2 3 3 buildLinux (args // rec { 4 - version = "4.9.116"; 4 + version = "4.9.117"; 5 5 extraMeta.branch = "4.9"; 6 6 7 7 src = fetchurl { 8 8 url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; 9 - sha256 = "07gzjfv24jrn76aga7c8f1y5xsz5if6xbdli1cpfzg60ps8q57lr"; 9 + sha256 = "1c3r0a4fchg358zff2ww8kw789kah3bhr750p9qlsy65d8rflcl2"; 10 10 }; 11 11 } // (args.argsOverride or {}))
+13 -8
pkgs/servers/clickhouse/default.nix
··· 1 - { stdenv, fetchFromGitHub, cmake, libtool, boost, cctz, double-conversion, gperftools 2 - , icu, lz4, mysql, openssl, poco, re2, rdkafka, readline, sparsehash, unixODBC, zstd 1 + { stdenv, fetchFromGitHub, cmake, libtool 2 + , boost, capnproto, cctz, clang-unwrapped, double-conversion, gperftools, icu 3 + , libcpuid, libxml2, lld, llvm, lz4 , mysql, openssl, poco, re2, rdkafka 4 + , readline, sparsehash, unixODBC, zstd 3 5 }: 4 6 5 7 stdenv.mkDerivation rec { 6 8 name = "clickhouse-${version}"; 7 9 8 - version = "1.1.54385"; 10 + version = "18.1.0"; 9 11 10 12 src = fetchFromGitHub { 11 13 owner = "yandex"; 12 14 repo = "ClickHouse"; 13 15 rev = "v${version}-stable"; 14 - sha256 = "0s290xnx9dil2lbxdir5p5zmakvq5h523gdwax2cb37606wg8yj7"; 16 + sha256 = "1vsfnggf69xh91ndycdxwfz6m2bs7psaxf2bh04svgk1vzj2z4l0"; 15 17 }; 16 18 17 - patches = [ ./find-mysql.patch ./termcap.patch ]; 18 - 19 19 nativeBuildInputs = [ cmake libtool ]; 20 20 21 21 buildInputs = [ 22 - boost cctz double-conversion gperftools icu lz4 mysql.connector-c openssl poco 23 - re2 rdkafka readline sparsehash unixODBC zstd 22 + boost capnproto cctz clang-unwrapped double-conversion gperftools icu 23 + libcpuid libxml2 lld llvm lz4 mysql.connector-c openssl poco re2 rdkafka 24 + readline sparsehash unixODBC zstd 24 25 ]; 25 26 26 27 cmakeFlags = [ "-DENABLE_TESTS=OFF" "-DUNBUNDLED=ON" "-DUSE_STATIC_LIBRARIES=OFF" ]; 28 + 29 + postInstall = '' 30 + rm -rf $out/share/clickhouse-test 31 + ''; 27 32 28 33 meta = with stdenv.lib; { 29 34 homepage = https://clickhouse.yandex/;
-11
pkgs/servers/clickhouse/find-mysql.patch
··· 1 - --- a/libs/libmysqlxx/cmake/find_mysqlclient.cmake 2 - +++ b/libs/libmysqlxx/cmake/find_mysqlclient.cmake 3 - @@ -24,7 +24,7 @@ if (ENABLE_MYSQL) 4 - if (USE_STATIC_LIBRARIES) 5 - find_library (STATIC_MYSQLCLIENT_LIB mariadbclient mysqlclient PATHS ${MYSQL_LIB_PATHS}) 6 - else () 7 - - find_library (MYSQLCLIENT_LIBRARIES mariadbclient mysqlclient PATHS ${MYSQL_LIB_PATHS}) 8 - + find_library (MYSQLCLIENT_LIBRARIES mariadbclient mysqlclient PATH_SUFFIXES mysql PATHS ${MYSQL_LIB_PATHS}) 9 - endif () 10 - 11 - if (MYSQL_INCLUDE_DIR AND (STATIC_MYSQLCLIENT_LIB OR MYSQLCLIENT_LIBRARIES))
-25
pkgs/servers/clickhouse/termcap.patch
··· 1 - From c2105ecdf6a6cc1fbb4c1ae01475db6a65fee32f Mon Sep 17 00:00:00 2001 2 - From: Orivej Desh <orivej@gmx.fr> 3 - Date: Mon, 27 Mar 2017 01:39:11 +0000 4 - Subject: [PATCH] Search for termcap in ncurses 5 - 6 - --- 7 - cmake/find_readline_edit.cmake | 2 +- 8 - 1 file changed, 1 insertion(+), 1 deletion(-) 9 - 10 - diff --git a/cmake/find_readline_edit.cmake b/cmake/find_readline_edit.cmake 11 - index 26f2768..f520ece 100644 12 - --- a/cmake/find_readline_edit.cmake 13 - +++ b/cmake/find_readline_edit.cmake 14 - @@ -7,7 +7,7 @@ endif () 15 - 16 - list(APPEND CMAKE_FIND_LIBRARY_SUFFIXES .so.2) 17 - 18 - -find_library (TERMCAP_LIB NAMES termcap) 19 - +find_library (TERMCAP_LIB NAMES ncurses) 20 - find_library (EDIT_LIB NAMES edit) 21 - 22 - set(READLINE_INCLUDE_PATHS "/var/empty/local/var/empty/readline/include") 23 - -- 24 - 2.12.0 25 -
+19 -9
pkgs/servers/foundationdb/default.nix
··· 88 88 separateDebugInfo = true; 89 89 enableParallelBuilding = true; 90 90 91 - makeFlags = [ "all" "fdb_java" ] 91 + makeFlags = [ "all" "fdb_java" "fdb_python" ] 92 92 # Don't compile FDBLibTLS if we don't need it in 6.0 or later; 93 93 # it gets statically linked in 94 94 ++ lib.optional (!lib.versionAtLeast version "6.0") [ "fdb_c" ] ··· 106 106 107 107 installPhase = '' 108 108 mkdir -vp $out/{bin,libexec/plugins} $lib/{lib,share/java} $dev/include/foundationdb 109 + mkdir -vp $python/lib/${python.libPrefix}/site-packages 109 110 110 - cp -v ./lib/libfdb_c.so $lib/lib 111 111 '' + lib.optionalString (!lib.versionAtLeast version "6.0") '' 112 + # we only copy the TLS library on < 6.0, since it's compiled-in otherwise 112 113 cp -v ./lib/libFDBLibTLS.so $out/libexec/plugins/FDBLibTLS.so 113 114 '' + '' 114 115 116 + # C API 117 + cp -v ./lib/libfdb_c.so $lib/lib 115 118 cp -v ./bindings/c/foundationdb/fdb_c.h $dev/include/foundationdb 116 119 cp -v ./bindings/c/foundationdb/fdb_c_options.g.h $dev/include/foundationdb 117 120 121 + # java 118 122 cp -v ./bindings/java/foundationdb-client.jar $lib/share/java/fdb-java.jar 119 123 124 + # python 125 + rm -f ./bindings/python/fdb/*.pth # remove useless files 126 + cp -R ./bindings/python/fdb $python/lib/${python.libPrefix}/site-packages/fdb 127 + # symlink a copy of the shared object into place, so that impl.py can load it 128 + ln -sv $lib/lib/libfdb_c.so $python/lib/${python.libPrefix}/site-packages/fdb/libfdb_c.so 129 + 130 + # binaries 120 131 for x in fdbbackup fdbcli fdbserver fdbmonitor; do 121 132 cp -v "./bin/$x" $out/bin; 122 133 done ··· 128 139 ln -sfv $out/bin/fdbbackup $out/libexec/backup_agent 129 140 ''; 130 141 131 - outputs = [ "out" "lib" "dev" ]; 142 + outputs = [ "out" "lib" "dev" "python" ]; 132 143 133 144 meta = with stdenv.lib; { 134 145 description = "Open source, distributed, transactional key-value store"; ··· 148 159 }; 149 160 150 161 foundationdb52 = makeFdb rec { 151 - version = "5.2.6"; 162 + version = "5.2.8"; 152 163 branch = "release-5.2"; 153 - rev = "refs/tags/v5.2.6"; # seemed to be tagged incorrectly 154 - sha256 = "1q3lq1hqq0f53n51gd4cw5cpayyw65dmkfplhsw1m5mghymzmskk"; 164 + sha256 = "1kbmmhk2m9486r4kyjlc7bb3wd50204i0p6dxcmvl6pbp1bs0wlb"; 155 165 }; 156 166 157 167 foundationdb60 = makeFdb rec { 158 - version = "6.0.3pre2446_${substring 0 8 rev}"; 168 + version = "6.0.4pre2497_${substring 0 8 rev}"; 159 169 branch = "release-6.0"; 160 - rev = "dd5481fb60ee1652986b2a028b31dcbb6cb171b5"; 161 - sha256 = "0mhlb728badk1h3410jbhy7f48m3jjnjna26wwyw5680xz72d6dm"; 170 + rev = "73d64cb244714c19bcc651122f6e7a9236aa11b5"; 171 + sha256 = "1jzmrf9kj0brqddlmxvzhj27r6843790jnqwkv1s3ri21fqb3hs7"; 162 172 }; 163 173 }
+17 -1
pkgs/servers/home-assistant/component-packages.nix
··· 2 2 # Do not edit! 3 3 4 4 { 5 - version = "0.74.2"; 5 + version = "0.75.1"; 6 6 components = { 7 7 "abode" = ps: with ps; [ ]; 8 8 "ads" = ps: with ps; [ ]; ··· 47 47 "august" = ps: with ps; [ ]; 48 48 "auth" = ps: with ps; [ aiohttp-cors ]; 49 49 "auth.indieauth" = ps: with ps; [ ]; 50 + "auth.login_flow" = ps: with ps; [ ]; 50 51 "automation" = ps: with ps; [ ]; 51 52 "automation.event" = ps: with ps; [ ]; 52 53 "automation.homeassistant" = ps: with ps; [ ]; ··· 128 129 "binary_sensor.skybell" = ps: with ps; [ ]; 129 130 "binary_sensor.sleepiq" = ps: with ps; [ ]; 130 131 "binary_sensor.spc" = ps: with ps; [ ]; 132 + "binary_sensor.tahoma" = ps: with ps; [ ]; 131 133 "binary_sensor.tapsaff" = ps: with ps; [ ]; 132 134 "binary_sensor.tcp" = ps: with ps; [ ]; 133 135 "binary_sensor.tellduslive" = ps: with ps; [ ]; ··· 225 227 "climate.proliphix" = ps: with ps; [ ]; 226 228 "climate.radiotherm" = ps: with ps; [ ]; 227 229 "climate.sensibo" = ps: with ps; [ ]; 230 + "climate.spider" = ps: with ps; [ ]; 228 231 "climate.tado" = ps: with ps; [ ]; 229 232 "climate.tesla" = ps: with ps; [ ]; 230 233 "climate.toon" = ps: with ps; [ ]; 231 234 "climate.touchline" = ps: with ps; [ ]; 235 + "climate.tuya" = ps: with ps; [ ]; 232 236 "climate.venstar" = ps: with ps; [ ]; 233 237 "climate.vera" = ps: with ps; [ ]; 234 238 "climate.wink" = ps: with ps; [ ]; ··· 259 263 "counter" = ps: with ps; [ ]; 260 264 "cover" = ps: with ps; [ ]; 261 265 "cover.abode" = ps: with ps; [ ]; 266 + "cover.aladdin_connect" = ps: with ps; [ ]; 267 + "cover.brunt" = ps: with ps; [ ]; 262 268 "cover.command_line" = ps: with ps; [ ]; 263 269 "cover.demo" = ps: with ps; [ ]; 264 270 "cover.garadget" = ps: with ps; [ ]; ··· 282 288 "cover.tellduslive" = ps: with ps; [ ]; 283 289 "cover.tellstick" = ps: with ps; [ ]; 284 290 "cover.template" = ps: with ps; [ ]; 291 + "cover.tuya" = ps: with ps; [ ]; 285 292 "cover.velbus" = ps: with ps; [ ]; 286 293 "cover.vera" = ps: with ps; [ ]; 287 294 "cover.wink" = ps: with ps; [ ]; ··· 375 382 "fan.isy994" = ps: with ps; [ ]; 376 383 "fan.mqtt" = ps: with ps; [ paho-mqtt ]; 377 384 "fan.template" = ps: with ps; [ ]; 385 + "fan.tuya" = ps: with ps; [ ]; 378 386 "fan.velbus" = ps: with ps; [ ]; 379 387 "fan.wink" = ps: with ps; [ ]; 380 388 "fan.xiaomi_miio" = ps: with ps; [ construct ]; ··· 482 490 "light.enocean" = ps: with ps; [ ]; 483 491 "light.eufy" = ps: with ps; [ ]; 484 492 "light.flux_led" = ps: with ps; [ ]; 493 + "light.futurenow" = ps: with ps; [ ]; 485 494 "light.greenwave" = ps: with ps; [ ]; 486 495 "light.group" = ps: with ps; [ ]; 487 496 "light.hive" = ps: with ps; [ ]; ··· 518 527 "light.rpi_gpio_pwm" = ps: with ps; [ ]; 519 528 "light.scsgate" = ps: with ps; [ ]; 520 529 "light.sensehat" = ps: with ps; [ ]; 530 + "light.sisyphus" = ps: with ps; [ ]; 521 531 "light.skybell" = ps: with ps; [ ]; 522 532 "light.tellduslive" = ps: with ps; [ ]; 523 533 "light.tellstick" = ps: with ps; [ ]; ··· 620 630 "media_player.russound_rio" = ps: with ps; [ ]; 621 631 "media_player.russound_rnet" = ps: with ps; [ ]; 622 632 "media_player.samsungtv" = ps: with ps; [ wakeonlan ]; 633 + "media_player.sisyphus" = ps: with ps; [ ]; 623 634 "media_player.snapcast" = ps: with ps; [ ]; 624 635 "media_player.songpal" = ps: with ps; [ ]; 625 636 "media_player.sonos" = ps: with ps; [ soco ]; ··· 770 781 "scene.litejet" = ps: with ps; [ ]; 771 782 "scene.lutron_caseta" = ps: with ps; [ ]; 772 783 "scene.tahoma" = ps: with ps; [ ]; 784 + "scene.tuya" = ps: with ps; [ ]; 773 785 "scene.velux" = ps: with ps; [ ]; 774 786 "scene.vera" = ps: with ps; [ ]; 775 787 "scene.wink" = ps: with ps; [ ]; ··· 896 908 "sensor.loopenergy" = ps: with ps; [ ]; 897 909 "sensor.luftdaten" = ps: with ps; [ luftdaten ]; 898 910 "sensor.lyft" = ps: with ps; [ ]; 911 + "sensor.magicseaweed" = ps: with ps; [ ]; 899 912 "sensor.melissa" = ps: with ps; [ ]; 900 913 "sensor.metoffice" = ps: with ps; [ ]; 901 914 "sensor.mfi" = ps: with ps; [ ]; ··· 1048 1061 "shell_command" = ps: with ps; [ ]; 1049 1062 "shiftr" = ps: with ps; [ paho-mqtt ]; 1050 1063 "shopping_list" = ps: with ps; [ aiohttp-cors ]; 1064 + "sisyphus" = ps: with ps; [ ]; 1051 1065 "skybell" = ps: with ps; [ ]; 1052 1066 "sleepiq" = ps: with ps; [ ]; 1053 1067 "smappee" = ps: with ps; [ ]; ··· 1055 1069 "sonos" = ps: with ps; [ soco ]; 1056 1070 "spaceapi" = ps: with ps; [ aiohttp-cors ]; 1057 1071 "spc" = ps: with ps; [ websockets ]; 1072 + "spider" = ps: with ps; [ ]; 1058 1073 "splunk" = ps: with ps; [ ]; 1059 1074 "statsd" = ps: with ps; [ statsd ]; 1060 1075 "sun" = ps: with ps; [ ]; ··· 1128 1143 "switch.skybell" = ps: with ps; [ ]; 1129 1144 "switch.smappee" = ps: with ps; [ ]; 1130 1145 "switch.snmp" = ps: with ps; [ pysnmp ]; 1146 + "switch.spider" = ps: with ps; [ ]; 1131 1147 "switch.tahoma" = ps: with ps; [ ]; 1132 1148 "switch.tellduslive" = ps: with ps; [ ]; 1133 1149 "switch.tellstick" = ps: with ps; [ ];
+14 -5
pkgs/servers/home-assistant/default.nix
··· 1 - { lib, fetchFromGitHub, python3 1 + { lib, fetchFromGitHub, fetchpatch, python3 2 2 3 3 # Look up dependencies of specified components in component-packages.nix 4 4 , extraComponents ? [] ··· 29 29 }; 30 30 }); 31 31 voluptuous = super.voluptuous.overridePythonAttrs (oldAttrs: rec { 32 - version = "0.11.1"; 32 + version = "0.11.5"; 33 33 src = oldAttrs.src.override { 34 34 inherit version; 35 - sha256 = "af7315c9fa99e0bfd195a21106c82c81619b42f0bd9b6e287b797c6b6b6a9918"; 35 + sha256 = "567a56286ef82a9d7ae0628c5842f65f516abcb496e74f3f59f1d7b28df314ef"; 36 36 }; 37 37 }); 38 38 attrs = super.attrs.overridePythonAttrs (oldAttrs: rec { ··· 74 74 extraBuildInputs = extraPackages py.pkgs; 75 75 76 76 # Don't forget to run parse-requirements.py after updating 77 - hassVersion = "0.74.2"; 77 + hassVersion = "0.75.1"; 78 78 79 79 in with py.pkgs; buildPythonApplication rec { 80 80 pname = "homeassistant"; ··· 89 89 owner = "home-assistant"; 90 90 repo = "home-assistant"; 91 91 rev = version; 92 - sha256 = "02wdvkcl4zjw009a5ylblk5blpf5rhlvch8vsg4cx07sj9xgjzmw"; 92 + sha256 = "1slm2r48yh4l57wnvalin6mnk3id2phsaqpd4qy0c0ksqc61ffqk"; 93 + }; 94 + 95 + # Upgrade voluptuous to 0.11.5 96 + # Needed because voluptuous-0.11.3 requires pypandoc 97 + # See https://github.com/home-assistant/home-assistant/pull/15830#issuecomment-410485197 98 + patches = fetchpatch { 99 + name = "upgrade-voluptuous.patch"; 100 + url = https://github.com/home-assistant/home-assistant/commit/9ea3be4dc112fb45544fa089cb367c7f4f91b5f0.patch; 101 + sha256 = "0wacs9aifdysw6jpz86d6cqah8spi48pwwcbydj9l8zxndzqp6na"; 93 102 }; 94 103 95 104 propagatedBuildInputs = [
+2 -2
pkgs/servers/home-assistant/frontend.nix
··· 2 2 3 3 buildPythonPackage rec { 4 4 pname = "home-assistant-frontend"; 5 - version = "20180720.0"; 5 + version = "20180804.0"; 6 6 7 7 src = fetchPypi { 8 8 inherit pname version; 9 - sha256 = "4a9d570cfc1d6b0e4b914897197d6772d48aa38b10202a648e79c5fb2a6a0293"; 9 + sha256 = "50a9e74efe2b56fbc34fba07205829e0ea77315183e85c235d177cabff3b62ee"; 10 10 }; 11 11 12 12 propagatedBuildInputs = [ user-agents ];
+2 -2
pkgs/servers/http/nginx/mainline.nix
··· 1 1 { callPackage, ... }@args: 2 2 3 3 callPackage ./generic.nix (args // { 4 - version = "1.15.1"; 5 - sha256 = "0q2lkpnfqf74p22vrcldx0gcnss3is7rnp54fgpvhcpqsxc6h867"; 4 + version = "1.15.2"; 5 + sha256 = "145dcypq8dqc5as03iy1ycwifwynq9p4i8m56fn7g0myryp0kfpf"; 6 6 })
+46
pkgs/servers/http/nginx/modules.nix
··· 94 94 ''; 95 95 }; 96 96 97 + lua-upstream = { 98 + src = fetchFromGitHub { 99 + owner = "openresty"; 100 + repo = "lua-upstream-nginx-module"; 101 + rev = "v0.07"; 102 + sha256 = "1gqccg8airli3i9103zv1zfwbjm27h235qjabfbfqk503rjamkpk"; 103 + }; 104 + inputs = [ pkgs.luajit ]; 105 + }; 106 + 97 107 modsecurity = { 98 108 src = "${pkgs.modsecurity_standalone.nginx}/nginx/modsecurity"; 99 109 inputs = [ pkgs.curl pkgs.apr pkgs.aprutil pkgs.apacheHttpd pkgs.yajl ]; ··· 215 225 }; 216 226 }; 217 227 228 + stream-sts = { 229 + src = fetchFromGitHub { 230 + owner = "vozlt"; 231 + repo = "nginx-module-stream-sts"; 232 + rev = "v0.1.1"; 233 + sha256 = "1jdj1kik6l3rl9nyx61xkqk7hmqbncy0rrqjz3dmjqsz92y8zaya"; 234 + }; 235 + }; 236 + 237 + sts = { 238 + src = fetchFromGitHub { 239 + owner = "vozlt"; 240 + repo = "nginx-module-sts"; 241 + rev = "v0.1.1"; 242 + sha256 = "0nvb29641x1i7mdbydcny4qwlvdpws38xscxirajd2x7nnfdflrk"; 243 + }; 244 + }; 245 + 246 + sysguard = { 247 + src = fetchFromGitHub { 248 + owner = "vozlt"; 249 + repo = "nginx-module-sysguard"; 250 + rev = "e512897f5aba4f79ccaeeebb51138f1704a58608"; 251 + sha256 = "19c6w6wscbq9phnx7vzbdf4ay6p2ys0g7kp2rmc9d4fb53phrhfx"; 252 + }; 253 + }; 254 + 218 255 upstream-check = { 219 256 src = fetchFromGitHub { 220 257 owner = "yaoweibin"; ··· 232 269 sha256 = "05dwj0caj910p7kan2qjvm6x2x601igryhny2xzr47hhsk5q1cnx"; 233 270 }; 234 271 inputs = [ pkgs.msgpuck.dev pkgs.yajl ]; 272 + }; 273 + 274 + url = { 275 + src = fetchFromGitHub { 276 + owner = "vozlt"; 277 + repo = "nginx-module-url"; 278 + rev = "9299816ca6bc395625c3683fbd2aa7b916bfe91e"; 279 + sha256 = "0mk1gjmfnry6hgdsnlavww9bn7223idw50jlkhh5k00q5509w4ip"; 280 + }; 235 281 }; 236 282 237 283 vts = {
+3 -8
pkgs/servers/hydron/default.nix
··· 3 3 4 4 buildGoPackage rec { 5 5 name = "hydron-unstable-${version}"; 6 - version = "2018-07-15"; 6 + version = "2018-07-30"; 7 7 goPackagePath = "github.com/bakape/hydron"; 8 8 goDeps = ./deps.nix; 9 9 10 10 src = fetchFromGitHub { 11 - rev = "3906ace0b4cf48ba9acccf372377c7feb0665be4"; 12 11 owner = "bakape"; 13 12 repo = "hydron"; 14 - sha256 = "079a88740wxgq73sq8w96zppfng7af76k7h484x3w695qk83j33r"; 13 + rev = "586af9da1e551b2a7128c154200e2e2e32d1af7e"; 14 + sha256 = "1lif63kcllsbmv06n3b8ayx89k90lximyp23108blcq456wrf0zi"; 15 15 }; 16 16 17 17 enableParallelBuilding = true; 18 18 nativeBuildInputs = [ pkgconfig ]; 19 19 buildInputs = [ ffmpeg-full graphicsmagick quicktemplate go-bindata easyjson ]; 20 - 21 - # Temporary workaround for https://github.com/NixOS/nixpkgs/issues/43593 22 - preBuild = '' 23 - rm go/src/github.com/bakape/hydron/ico.syso 24 - ''; 25 20 26 21 meta = with stdenv.lib; { 27 22 homepage = "https://github.com/bakape/hydron";
+26 -8
pkgs/servers/hydron/deps.nix
··· 14 14 fetch = { 15 15 type = "git"; 16 16 url = "https://github.com/bakape/thumbnailer"; 17 - rev = "fa88f595f3882773bc425b382eee71e3e2fa1291"; 18 - sha256 = "19xfn8aj1nhh5dj93hskzrhaa07sayd8agmz1vkkh6varqrldanf"; 17 + rev = "93664eb81b19dcb232062bf55f92cf4d7c805a7f"; 18 + sha256 = "0jdkb776f6gk0g8zi7r1vcfs6w0i33mn2327x6960jybli7bcfsp"; 19 19 }; 20 20 } 21 21 { ··· 32 32 fetch = { 33 33 type = "git"; 34 34 url = "https://github.com/gorilla/handlers"; 35 - rev = "13a38d26174b16d5b4bf6f1094c1389ec9879572"; 36 - sha256 = "0zg43blpyyy667y0kpiifk5a2w35jh8qkk4zwlabb365c0lzrv6v"; 35 + rev = "7e0847f9db758cdebd26c149d0ae9d5d0b9c98ce"; 36 + sha256 = "0mnw81ayjm4d8462qg8spmcwxmchn24158bf93zxjab51pg8n9gm"; 37 37 }; 38 38 } 39 39 { ··· 52 52 url = "https://github.com/lann/ps"; 53 53 rev = "62de8c46ede02a7675c4c79c84883eb164cb71e3"; 54 54 sha256 = "10yhcyymypvdiiipchsp80jbglk8c4r7lq7h54v9f4mxmvz6xgf7"; 55 + }; 56 + } 57 + { 58 + goPackagePath = "github.com/lib/pq"; 59 + fetch = { 60 + type = "git"; 61 + url = "https://github.com/lib/pq"; 62 + rev = "90697d60dd844d5ef6ff15135d0203f65d2f53b8"; 63 + sha256 = "0hb4bfsk8g5473yzbf3lzrb373xicakjznkf0v085xgimz991i9r"; 55 64 }; 56 65 } 57 66 { ··· 59 68 fetch = { 60 69 type = "git"; 61 70 url = "https://github.com/mailru/easyjson"; 62 - rev = "3fdea8d05856a0c8df22ed4bc71b3219245e4485"; 63 - sha256 = "0g3crph77yhv4ipdnwqc32z4cp87ahi4ikad5kyy6q4znnxliz74"; 71 + rev = "03f2033d19d5860aef995fe360ac7d395cd8ce65"; 72 + sha256 = "0r62ym6m1ijby7nwplq0gdnhak8in63njyisrwhr3xpx9vkira97"; 64 73 }; 65 74 } 66 75 { ··· 68 77 fetch = { 69 78 type = "git"; 70 79 url = "https://github.com/mattn/go-sqlite3"; 71 - rev = "3aefd9f0a162514f66d0e4ceda3edc44e66b502e"; 72 - sha256 = "0as2kqmlvd21r481vxl457n5lxxp4i1jdjkmyqsjf5vg6xr9gd2d"; 80 + rev = "b3511bfdd742af558b54eb6160aca9446d762a19"; 81 + sha256 = "1v41is0h05p4jgv8nal3l8lcdcggylsyblq0ihycnprkdzwls808"; 73 82 }; 74 83 } 75 84 { ··· 88 97 url = "https://github.com/valyala/quicktemplate"; 89 98 rev = "a91e0946457b6583004fbfc159339b8171423aed"; 90 99 sha256 = "1z89ang5pkq5qs5b2nwhzyrw0zjlsas539l9kix374fhka49n8yc"; 100 + }; 101 + } 102 + { 103 + goPackagePath = "golang.org/x/net"; 104 + fetch = { 105 + type = "git"; 106 + url = "https://go.googlesource.com/net"; 107 + rev = "49c15d80dfbc983ea25246ee959d970efe09ec09"; 108 + sha256 = "1knkww5jfn73frm8m939ck91jkjfapk798xwscm4g991mpcd6j4v"; 91 109 }; 92 110 } 93 111 ]
+9 -13
pkgs/servers/meguca/default.nix
··· 1 - { stdenv, buildGoPackage, fetchgit, pkgconfig, cmake, ffmpeg-full, ghostscript 1 + { stdenv, buildGoPackage, fetchFromGitHub, pkgconfig, cmake, ffmpeg-full, ghostscript 2 2 , graphicsmagick, quicktemplate, go-bindata, easyjson, nodePackages, emscripten }: 3 3 4 4 buildGoPackage rec { 5 5 name = "meguca-unstable-${version}"; 6 - version = "2018-07-01"; 7 - rev = "80db8298b6546c93944251c17fe03371e521671f"; 6 + version = "2018-08-02"; 8 7 goPackagePath = "github.com/bakape/meguca"; 9 8 goDeps = ./server_deps.nix; 10 9 11 - src = fetchgit { 12 - inherit rev; 13 - url = "https://github.com/bakape/meguca"; 14 - sha256 = "1yix0kxsjm9f3zw9jx2nb3pl8pbqjfhbvbrz42m1h20b1h02s5ml"; 10 + src = fetchFromGitHub { 11 + owner = "bakape"; 12 + repo = "meguca"; 13 + rev = "9224ab13f6c08bcfee5a930088c35bbfbf7491e1"; 14 + sha256 = "1cp7d8a216nap1fzxcb58dgkbxdazs14hs9705h1xgly86cvwgv0"; 15 15 fetchSubmodules = true; 16 16 }; 17 17 18 18 enableParallelBuilding = true; 19 19 nativeBuildInputs = [ pkgconfig cmake ]; 20 - 21 - buildInputs = [ 22 - ffmpeg-full graphicsmagick ghostscript quicktemplate go-bindata easyjson 23 - emscripten 24 - ]; 20 + buildInputs = [ ffmpeg-full graphicsmagick ghostscript quicktemplate go-bindata easyjson emscripten ]; 25 21 26 22 buildPhase = '' 27 - export HOME=$PWD 23 + export HOME=`pwd` 28 24 export GOPATH=$GOPATH:$HOME/go/src/github.com/bakape/meguca/go 29 25 cd $HOME/go/src/github.com/bakape/meguca 30 26 ln -sf ${nodePackages.meguca}/lib/node_modules/meguca/node_modules
+102 -30
pkgs/servers/meguca/server_deps.nix
··· 5 5 fetch = { 6 6 type = "git"; 7 7 url = "https://github.com/ErikDubbelboer/gspt"; 8 - rev = "08ed213262b5bb2cf6ccb0baa71c6b201d353e63"; 9 - sha256 = "1vdgvwjagk1n4mwvpil59idgg7ibdj6frk9mz8c2ckbmxsfpp8rq"; 8 + rev = "e39e726e09cc23d1ccf13b36ce10dbdb4a4510e0"; 9 + sha256 = "1l0s9srl7kbi7rs9ki989rgvx1kx6an7d6pwfqyy42x48f7a5g81"; 10 10 }; 11 11 } 12 12 { ··· 14 14 fetch = { 15 15 type = "git"; 16 16 url = "https://github.com/Masterminds/squirrel"; 17 - rev = "b127ed9be03443fe3c0877e391130e3dd3f3107a"; 18 - sha256 = "04vgwm5g5486188656hiw1x56mrkv27s5g2s8mc1lz7z1ig5g5bg"; 17 + rev = "cebd809c54c4812b96aadd528be66e01bbe81437"; 18 + sha256 = "0xfbxn921h95b5di9cay3bjb8ygam3h718z0plqjdnrqlvqxfbzx"; 19 + }; 20 + } 21 + { 22 + goPackagePath = "github.com/PuerkitoBio/goquery"; 23 + fetch = { 24 + type = "git"; 25 + url = "https://github.com/PuerkitoBio/goquery"; 26 + rev = "dc2ec5c7ca4d9aae063b79b9f581dd3ea6afd2b2"; 27 + sha256 = "11010z9ask21r0dskvm2pbh3z8951bnpcqg8aqa213if4h34gaa2"; 19 28 }; 20 29 } 21 30 { ··· 28 37 }; 29 38 } 30 39 { 31 - goPackagePath = "github.com/aquilax/tripcode"; 40 + goPackagePath = "github.com/andybalholm/cascadia"; 32 41 fetch = { 33 42 type = "git"; 34 - url = "https://github.com/aquilax/tripcode"; 35 - rev = "db58da84bb12e26032493b73eb3b58ba884590ef"; 36 - sha256 = "0maqk0rwp39kcc64w4mfkgcvn2q76hqwziwc3g7ckc1qpwxql5z3"; 43 + url = "https://github.com/andybalholm/cascadia"; 44 + rev = "901648c87902174f774fac311d7f176f8647bdaa"; 45 + sha256 = "09j8cavbhqqdxjqrkwbc40g8p0i49zf3184rpjm5p2rjbprcghcc"; 37 46 }; 38 47 } 39 48 { 40 - goPackagePath = "github.com/badoux/goscraper"; 49 + goPackagePath = "github.com/aquilax/tripcode"; 41 50 fetch = { 42 51 type = "git"; 43 - url = "https://github.com/badoux/goscraper"; 44 - rev = "0213ced7087832e81e8892e8d044150cfc153856"; 45 - sha256 = "0bw5g6h0hypd38z8gfbh40pbw824n4qhk3c0kasw6gn4darx972w"; 52 + url = "https://github.com/aquilax/tripcode"; 53 + rev = "db58da84bb12e26032493b73eb3b58ba884590ef"; 54 + sha256 = "0maqk0rwp39kcc64w4mfkgcvn2q76hqwziwc3g7ckc1qpwxql5z3"; 46 55 }; 47 56 } 48 57 { ··· 59 68 fetch = { 60 69 type = "git"; 61 70 url = "https://github.com/bakape/thumbnailer"; 62 - rev = "fa88f595f3882773bc425b382eee71e3e2fa1291"; 63 - sha256 = "19xfn8aj1nhh5dj93hskzrhaa07sayd8agmz1vkkh6varqrldanf"; 71 + rev = "93664eb81b19dcb232062bf55f92cf4d7c805a7f"; 72 + sha256 = "0jdkb776f6gk0g8zi7r1vcfs6w0i33mn2327x6960jybli7bcfsp"; 64 73 }; 65 74 } 66 75 { ··· 91 100 }; 92 101 } 93 102 { 103 + goPackagePath = "github.com/dsnet/compress"; 104 + fetch = { 105 + type = "git"; 106 + url = "https://github.com/dsnet/compress"; 107 + rev = "cc9eb1d7ad760af14e8f918698f745e80377af4f"; 108 + sha256 = "159liclywmyb6zx88ga5gn42hfl4cpk1660zss87fkx31hdq9fgx"; 109 + }; 110 + } 111 + { 94 112 goPackagePath = "github.com/go-playground/ansi"; 95 113 fetch = { 96 114 type = "git"; ··· 104 122 fetch = { 105 123 type = "git"; 106 124 url = "https://github.com/go-playground/errors"; 107 - rev = "14d2d30656a95a5fa5a17d2e33540269eda5f158"; 108 - sha256 = "0w13vgxwc1x780x716kqzzwp9ld3w3jpkclabh2qwpcwx821nhpy"; 125 + rev = "9aa88f624b398d37201c30583065aee54071bc0c"; 126 + sha256 = "0d4b73m564gc12ddbss78929kcya81ifqxv28f05zqhrywkih4mh"; 109 127 }; 110 128 } 111 129 { ··· 118 136 }; 119 137 } 120 138 { 139 + goPackagePath = "github.com/golang/snappy"; 140 + fetch = { 141 + type = "git"; 142 + url = "https://github.com/golang/snappy"; 143 + rev = "2e65f85255dbc3072edf28d6b5b8efc472979f5a"; 144 + sha256 = "05w6mpc4qcy0pv8a2bzng8nf4s5rf5phfang4jwy9rgf808q0nxf"; 145 + }; 146 + } 147 + { 121 148 goPackagePath = "github.com/gorilla/handlers"; 122 149 fetch = { 123 150 type = "git"; 124 151 url = "https://github.com/gorilla/handlers"; 125 - rev = "13a38d26174b16d5b4bf6f1094c1389ec9879572"; 126 - sha256 = "0zg43blpyyy667y0kpiifk5a2w35jh8qkk4zwlabb365c0lzrv6v"; 152 + rev = "7e0847f9db758cdebd26c149d0ae9d5d0b9c98ce"; 153 + sha256 = "0mnw81ayjm4d8462qg8spmcwxmchn24158bf93zxjab51pg8n9gm"; 127 154 }; 128 155 } 129 156 { ··· 176 203 fetch = { 177 204 type = "git"; 178 205 url = "https://github.com/mailru/easyjson"; 179 - rev = "3fdea8d05856a0c8df22ed4bc71b3219245e4485"; 180 - sha256 = "0g3crph77yhv4ipdnwqc32z4cp87ahi4ikad5kyy6q4znnxliz74"; 206 + rev = "03f2033d19d5860aef995fe360ac7d395cd8ce65"; 207 + sha256 = "0r62ym6m1ijby7nwplq0gdnhak8in63njyisrwhr3xpx9vkira97"; 208 + }; 209 + } 210 + { 211 + goPackagePath = "github.com/mholt/archiver"; 212 + fetch = { 213 + type = "git"; 214 + url = "https://github.com/mholt/archiver"; 215 + rev = "e4ef56d48eb029648b0e895bb0b6a393ef0829c3"; 216 + sha256 = "1krxyh6iq0s0rwhz7gg6dn795j9qq64rsgq9nivav7fhrqpgr6hb"; 217 + }; 218 + } 219 + { 220 + goPackagePath = "github.com/nwaples/rardecode"; 221 + fetch = { 222 + type = "git"; 223 + url = "https://github.com/nwaples/rardecode"; 224 + rev = "e06696f847aeda6f39a8f0b7cdff193b7690aef6"; 225 + sha256 = "1aj7l8ii7hxnn3q4wzxlx3f92b1aspck6ncyqgb4h2g228phcibw"; 181 226 }; 182 227 } 183 228 { ··· 199 244 }; 200 245 } 201 246 { 247 + goPackagePath = "github.com/otium/ytdl"; 248 + fetch = { 249 + type = "git"; 250 + url = "https://github.com/otium/ytdl"; 251 + rev = "325bc9755fb5979d67b65939b8ff88f480424c0e"; 252 + sha256 = "0r6b9y2jb1cz1q2w722174lk3qvb3ipsi9jj3cizmhq2n6qqfpmk"; 253 + }; 254 + } 255 + { 256 + goPackagePath = "github.com/pierrec/lz4"; 257 + fetch = { 258 + type = "git"; 259 + url = "https://github.com/pierrec/lz4"; 260 + rev = "6b9367c9ff401dbc54fabce3fb8d972e799b702d"; 261 + sha256 = "0bxxap7jn3wvqxr2yqn8m3aqgb9y94j9ci6fwjrk01caq575r1qs"; 262 + }; 263 + } 264 + { 202 265 goPackagePath = "github.com/sevlyar/go-daemon"; 203 266 fetch = { 204 267 type = "git"; ··· 208 271 }; 209 272 } 210 273 { 274 + goPackagePath = "github.com/sirupsen/logrus"; 275 + fetch = { 276 + type = "git"; 277 + url = "https://github.com/sirupsen/logrus"; 278 + rev = "d329d24db4313262a3b0a24d8aeb1dc4bd294fb0"; 279 + sha256 = "1jjmh1nd7lcsrxgr6ycv9m9iwmr8dfn5cxynnj16vw3qazihajk7"; 280 + }; 281 + } 282 + { 211 283 goPackagePath = "github.com/ulikunitz/xz"; 212 284 fetch = { 213 285 type = "git"; 214 286 url = "https://github.com/ulikunitz/xz"; 215 - rev = "0c6b41e72360850ca4f98dc341fd999726ea007f"; 216 - sha256 = "0a6l7sp67ipxim093qh6fvw8knbxj24l7bj5lykcddi5gwfi78n3"; 287 + rev = "636d36a76670e6c700f22fd5f4588679ff2896c4"; 288 + sha256 = "01d71xnhdd60cmd9xk8zcjiq2n7fhgc6kzxd0s0plvs70y6dk27g"; 217 289 }; 218 290 } 219 291 { ··· 239 311 fetch = { 240 312 type = "git"; 241 313 url = "https://go.googlesource.com/crypto"; 242 - rev = "a49355c7e3f8fe157a85be2f77e6e269a0f89602"; 243 - sha256 = "020q1laxjx5kcmnqy4wmdb63zhb0lyq6wpy40axhswzg2nd21s44"; 314 + rev = "c126467f60eb25f8f27e5a981f32a87e3965053f"; 315 + sha256 = "0xvvzwxqi1dbrnsvq00klx4bnjalf90haf1slnxzrdmbadyp992q"; 244 316 }; 245 317 } 246 318 { ··· 248 320 fetch = { 249 321 type = "git"; 250 322 url = "https://go.googlesource.com/net"; 251 - rev = "4cb1c02c05b0e749b0365f61ae859a8e0cfceed9"; 252 - sha256 = "05xdcj0pn245y3gpy9p5iamx09424zqwh1w34gwwn5kh51ybgv7k"; 323 + rev = "f4c29de78a2a91c00474a2e689954305c350adf9"; 324 + sha256 = "02nibjrr1il8sxnr0w1s5fj7gz6ayhg3hsywf948qhc68n5adv8x"; 253 325 }; 254 326 } 255 327 { ··· 257 329 fetch = { 258 330 type = "git"; 259 331 url = "https://go.googlesource.com/sys"; 260 - rev = "7138fd3d9dc8335c567ca206f4333fb75eb05d56"; 261 - sha256 = "09xgxk0d9b88m18sriy4f2l6qavicznxkgsbvjyv56x24r4kmiq0"; 332 + rev = "3dc4335d56c789b04b0ba99b7a37249d9b614314"; 333 + sha256 = "1105b7jqzz8g2bfkdbkj2pdzq4vhfmhm42khir88vjqfd1l7ha31"; 262 334 }; 263 335 } 264 336 { ··· 266 338 fetch = { 267 339 type = "git"; 268 340 url = "https://go.googlesource.com/text"; 269 - rev = "c0fe8dde8a10c9b32154bd9bdf080b8b3d635127"; 270 - sha256 = "0zi15k236nmqrlpfy3hgnxnh3f0n1aag0h6gs41xlxdkr9lpmnsz"; 341 + rev = "96e34ec0e18a62a1e59880c7bf617b655efecb66"; 342 + sha256 = "1n1p5zz0vyvlhac40hxml6c5xwpsw8rjx1pbls9381a0s19ncbdg"; 271 343 }; 272 344 } 273 345 {
+7 -1
pkgs/servers/mpd/default.nix
··· 26 26 , clientSupport ? true, mpd_clientlib 27 27 , opusSupport ? true, libopus 28 28 , soundcloudSupport ? true, yajl 29 + , nfsSupport ? true, libnfs 30 + , smbSupport ? true, samba 29 31 }: 30 32 31 33 assert avahiSupport -> avahi != null && dbus != null; ··· 81 83 ++ opt icuSupport icu 82 84 ++ opt clientSupport mpd_clientlib 83 85 ++ opt opusSupport libopus 84 - ++ opt soundcloudSupport yajl; 86 + ++ opt soundcloudSupport yajl 87 + ++ opt (!stdenv.isDarwin && nfsSupport) libnfs 88 + ++ opt (!stdenv.isDarwin && smbSupport) samba; 85 89 86 90 nativeBuildInputs = [ autoreconfHook pkgconfig ]; 87 91 ··· 116 120 (mkFlag clientSupport "libmpdclient") 117 121 (mkFlag opusSupport "opus") 118 122 (mkFlag soundcloudSupport "soundcloud") 123 + (mkFlag (!stdenv.isDarwin && nfsSupport) "libnfs") 124 + (mkFlag (!stdenv.isDarwin && smbSupport) "smbclient") 119 125 "--enable-debug" 120 126 "--with-zeroconf=avahi" 121 127 ]
+2 -2
pkgs/servers/sql/mariadb/default.nix
··· 22 22 }; 23 23 24 24 common = rec { # attributes common to both builds 25 - version = "10.3.8"; 25 + version = "10.2.16"; 26 26 27 27 src = fetchurl { 28 28 urls = [ 29 29 "https://downloads.mariadb.org/f/mariadb-${version}/source/mariadb-${version}.tar.gz" 30 30 "https://downloads.mariadb.com/MariaDB/mariadb-${version}/source/mariadb-${version}.tar.gz" 31 31 ]; 32 - sha256 = "1f0syfrv0my7sm8cbpic00ldy90psimy8yvm0ld82bfi2isw3gih"; 32 + sha256 = "1i2dwpp96ywjk147qqpcad8vqcy4rxmfbv2cb8ww3sffpa9yx0n1"; 33 33 name = "mariadb-${version}.tar.gz"; 34 34 }; 35 35
+6 -4
pkgs/servers/sql/postgresql/default.nix
··· 1 - { lib, stdenv, glibc, fetchurl, zlib, readline, libossp_uuid, openssl, libxml2, makeWrapper }: 1 + { lib, stdenv, glibc, fetchurl, zlib, readline, libossp_uuid, openssl, libxml2, makeWrapper, tzdata }: 2 2 3 3 let 4 4 ··· 22 22 23 23 makeFlags = [ "world" ]; 24 24 25 + NIX_CFLAGS_COMPILE = [ "-I${libxml2.dev}/include/libxml2" ]; 26 + 25 27 configureFlags = [ 26 28 "--with-openssl" 27 29 "--with-libxml" 28 30 "--sysconfdir=/etc" 29 31 "--libdir=$(lib)/lib" 30 - ] 31 - ++ lib.optional (stdenv.isDarwin) "--with-uuid=e2fs" 32 - ++ lib.optional (!stdenv.isDarwin) "--with-ossp-uuid"; 32 + "--with-system-tzdata=${tzdata}" 33 + (if stdenv.isDarwin then "--with-uuid=e2fs" else "--with-ossp-uuid") 34 + ]; 33 35 34 36 patches = 35 37 [ (if atLeast "9.4" then ./disable-resolve_symlinks-94.patch else ./disable-resolve_symlinks.patch)
+6 -5
pkgs/servers/xmpp/ejabberd/default.nix
··· 1 - { stdenv, writeScriptBin, lib, fetchurl, git, cacert 1 + { stdenv, writeScriptBin, makeWrapper, lib, fetchurl, git, cacert, libpng, libjpeg, libwebp 2 2 , erlang, openssl, expat, libyaml, bash, gnused, gnugrep, coreutils, utillinux, procps, gd 3 3 , flock 4 4 , withMysql ? false ··· 24 24 ctlpath = lib.makeBinPath [ bash gnused gnugrep coreutils utillinux procps ]; 25 25 26 26 in stdenv.mkDerivation rec { 27 - version = "18.01"; 27 + version = "18.06"; 28 28 name = "ejabberd-${version}"; 29 29 30 30 src = fetchurl { 31 31 url = "https://www.process-one.net/downloads/ejabberd/${version}/${name}.tgz"; 32 - sha256 = "01i2n8mlgw293jdf4172f9q8ca8m35vysjws791p7nynpfdb4cn6"; 32 + sha256 = "1c4h6qrckihm8v4vm52h31j5dxg7247vk374rwz41idfb25vx7dc"; 33 33 }; 34 34 35 35 nativeBuildInputs = [ fakegit ]; 36 36 37 - buildInputs = [ erlang openssl expat libyaml gd ] 37 + buildInputs = [ erlang openssl expat libyaml gd makeWrapper ] 38 38 ++ lib.optional withSqlite sqlite 39 39 ++ lib.optional withPam pam 40 40 ++ lib.optional withZlib zlib ··· 75 75 76 76 outputHashMode = "recursive"; 77 77 outputHashAlgo = "sha256"; 78 - outputHash = "1v3h0c7kfifb6wsfxyv5j1wc7rlxbb7r0pgd4s340wiyxnllzzhk"; 78 + outputHash = "1bk3yd10cq6vlgmh2qawl82m29yi5zcbsdlz17xyy76sg2ka622a"; 79 79 }; 80 80 81 81 configureFlags = ··· 106 106 -e 's,\(^ *JOT=\).*,\1,' \ 107 107 -e 's,\(^ *CONNLOCKDIR=\).*,\1/var/lock/ejabberdctl,' \ 108 108 $out/sbin/ejabberdctl 109 + wrapProgram $out/lib/eimp-*/priv/bin/eimp --prefix LD_LIBRARY_PATH : "${stdenv.lib.makeLibraryPath [ libpng libjpeg libwebp ]}" 109 110 ''; 110 111 111 112 meta = with stdenv.lib; {
+3 -3
pkgs/shells/zsh/antibody/default.nix
··· 2 2 3 3 buildGoPackage rec { 4 4 name = "antibody-${version}"; 5 - version = "3.5.1"; 5 + version = "3.6.1"; 6 6 rev = "v${version}"; 7 - 7 + 8 8 goPackagePath = "github.com/getantibody/antibody"; 9 9 10 10 src = fetchFromGitHub { 11 11 inherit rev; 12 12 owner = "getantibody"; 13 13 repo = "antibody"; 14 - sha256 = "0bqq59vnnm80jiqlhn7wfyzj96nkv8k9zp8i4sgcj8gvk1zq2lbc"; 14 + sha256 = "1xlaf3440hs1ffa23ja0fc185sj0rxjv0808ib8li3rq2qfkd0k8"; 15 15 }; 16 16 17 17 goDeps = ./deps.nix;
+30
pkgs/tools/X11/run-scaled/default.nix
··· 1 + { stdenv, fetchFromGitHub, makeWrapper, bc, xorgserver, xpra, xrandr }: 2 + 3 + stdenv.mkDerivation rec { 4 + version = "git-2018-06-03"; 5 + name = "run-scaled-${version}"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "kaueraal"; 9 + repo = "run_scaled"; 10 + rev = "fa71b3c17e627a96ff707ad69f1def5361f2245c"; 11 + sha256 = "1ma4ax7ydq4xvyzrc4zapihmf7v3d9zl9mbi8bgpps7nlgz544ys"; 12 + }; 13 + 14 + buildInputs = [ makeWrapper ]; 15 + 16 + installPhase = '' 17 + mkdir -p $out/bin 18 + cp run_scaled $out/bin 19 + wrapProgram $out/bin/run_scaled --prefix PATH ":" \ 20 + ${stdenv.lib.makeBinPath [ bc xorgserver xpra xrandr ]} 21 + ''; 22 + 23 + meta = with stdenv.lib; { 24 + description = "Run an X application scaled via xpra"; 25 + homepage = https://github.com/kaueraal/run_scaled; 26 + maintainers = [ maintainers.snaar ]; 27 + license = licenses.bsd3; 28 + platforms = platforms.unix; 29 + }; 30 + }
+4 -4
pkgs/tools/admin/awslogs/default.nix
··· 1 - { stdenv, fetchFromGitHub, pythonPackages }: 1 + { stdenv, fetchFromGitHub, python3Packages }: 2 2 3 - pythonPackages.buildPythonApplication rec { 4 - name = "awslogs-${version}"; 3 + python3Packages.buildPythonApplication rec { 4 + pname = "awslogs"; 5 5 version = "0.10"; 6 6 7 7 src = fetchFromGitHub { ··· 13 13 14 14 doCheck = false; 15 15 16 - propagatedBuildInputs = with pythonPackages; [ 16 + propagatedBuildInputs = with python3Packages; [ 17 17 boto3 termcolor dateutil docutils 18 18 ]; 19 19
+10 -9
pkgs/tools/admin/simp_le/default.nix
··· 1 - { stdenv, pythonPackages, bash }: 2 - 3 - pythonPackages.buildPythonApplication rec { 1 + { stdenv, python3Packages, bash }: 2 + 3 + python3Packages.buildPythonApplication rec { 4 4 pname = "simp_le-client"; 5 - version = "0.8.0"; 5 + version = "0.9.0"; 6 6 7 - src = pythonPackages.fetchPypi { 7 + src = python3Packages.fetchPypi { 8 8 inherit pname version; 9 - sha256 = "0nv9mm99rm8i9flgfgwvmajbsxb5rm162nfxlq3wk66bbbyr6y1i"; 9 + sha256 = "1yxfznd78zkg2f657v520zj5w4dvq5n594d0kpm4lra8xnpg4zcv"; 10 10 }; 11 11 12 12 postPatch = '' 13 13 # drop upper bound of acme requirement 14 14 sed -ri "s/'(acme>=[^,]+),<[^']+'/'\1'/" setup.py 15 + # drop upper bound of idna requirement 16 + sed -ri "s/'(idna)<[^']+'/'\1'/" setup.py 15 17 substituteInPlace simp_le.py \ 16 18 --replace "/bin/sh" "${bash}/bin/sh" 17 19 ''; ··· 20 22 $out/bin/simp_le --test 21 23 ''; 22 24 23 - propagatedBuildInputs = with pythonPackages; [ acme setuptools_scm josepy ]; 25 + propagatedBuildInputs = with python3Packages; [ acme setuptools_scm josepy idna ]; 24 26 25 27 meta = with stdenv.lib; { 26 28 homepage = https://github.com/zenhack/simp_le; 27 29 description = "Simple Let's Encrypt client"; 28 30 license = licenses.gpl3; 29 31 maintainers = with maintainers; [ gebner makefu ]; 30 - platforms = platforms.all; 32 + platforms = platforms.linux; 31 33 }; 32 34 } 33 -
+9 -1
pkgs/tools/archivers/sharutils/default.nix
··· 19 19 # remaps /etc/passwd to a trivial file, but we can't do that on Darwin so I do this 20 20 # instead. In this case, I pass in the very imaginative "submitter" as the submitter name 21 21 22 - patchPhase = let 22 + patches = [ 23 + # CVE-2018-1000097 24 + (fetchurl { 25 + url = "https://sources.debian.org/data/main/s/sharutils/1:4.15.2-2+deb9u1/debian/patches/01-fix-heap-buffer-overflow-cve-2018-1000097.patch"; 26 + sha256 = "19g0sxc8g79aj5gd5idz5409311253jf2q8wqkasf0handdvsbxx"; 27 + }) 28 + ]; 29 + 30 + postPatch = let 23 31 # This evaluates to a string containing: 24 32 # 25 33 # substituteInPlace tests/shar-2 --replace '${SHAR}' '${SHAR} -s submitter'
+3 -3
pkgs/tools/backup/ddar/default.nix
··· 1 - { lib, buildPythonApplication, fetchFromGitHub, protobuf, roundup }: 1 + { lib, python2, fetchFromGitHub, roundup }: 2 2 3 - buildPythonApplication rec { 3 + python2.pkgs.buildPythonApplication rec { 4 4 pname = "ddar"; 5 5 version = "1.0"; 6 6 ··· 23 23 make -f Makefile.prep synctus/ddar_pb2.py 24 24 ''; 25 25 26 - propagatedBuildInputs = [ protobuf ]; 26 + propagatedBuildInputs = with python2.pkgs; [ protobuf ]; 27 27 28 28 checkInputs = [ roundup ]; 29 29
+2 -2
pkgs/tools/backup/duply/default.nix
··· 1 - { stdenv, fetchurl, coreutils, python, duplicity, gawk, gnupg1, bash 1 + { stdenv, fetchurl, coreutils, python2, duplicity, gawk, gnupg1, bash 2 2 , gnugrep, txt2man, makeWrapper, which 3 3 }: 4 4 ··· 19 19 mkdir -p "$out/share/man/man1" 20 20 install -vD duply "$out/bin" 21 21 wrapProgram "$out/bin/duply" --set PATH \ 22 - ${stdenv.lib.makeBinPath [ coreutils python duplicity gawk gnupg1 bash gnugrep txt2man which ]} 22 + ${stdenv.lib.makeBinPath [ coreutils python2 duplicity gawk gnupg1 bash gnugrep txt2man which ]} 23 23 "$out/bin/duply" txt2man > "$out/share/man/man1/duply.1" 24 24 ''; 25 25
-23
pkgs/tools/backup/obnam/default.nix
··· 1 - { stdenv, fetchurl, pythonPackages, attr }: 2 - 3 - pythonPackages.buildPythonApplication rec { 4 - name = "obnam-${version}"; 5 - version = "1.22"; 6 - 7 - src = fetchurl rec { 8 - url = "http://code.liw.fi/debian/pool/main/o/obnam/obnam_${version}.orig.tar.xz"; 9 - sha256 = "0z3absbcpdk8zmmi6n3vwmwyv0pnzy7lp1rcsymb292p04alcn3x"; 10 - }; 11 - 12 - buildInputs = [ pythonPackages.sphinx attr ]; 13 - propagatedBuildInputs = with pythonPackages; [ pycrypto paramiko tracing ttystatus cliapp larch pyyaml fuse ]; 14 - 15 - doCheck = false; 16 - 17 - meta = { 18 - homepage = http://obnam.org; 19 - description = "Backup program supporting deduplication, compression and encryption"; 20 - maintainers = [ stdenv.lib.maintainers.rickynils ]; 21 - platforms = stdenv.lib.platforms.linux; 22 - }; 23 - }
+2 -1
pkgs/tools/bluetooth/blueman/default.nix
··· 1 - { stdenv, lib, fetchurl, intltool, pkgconfig, pythonPackages, bluez, gtk3 1 + { stdenv, lib, fetchurl, intltool, pkgconfig, python3Packages, bluez, gtk3 2 2 , obex_data_server, xdg_utils, libnotify, dnsmasq, dhcp 3 3 , hicolor-icon-theme, librsvg, wrapGAppsHook, gobjectIntrospection 4 4 , withPulseAudio ? true, libpulseaudio }: 5 5 6 6 let 7 + pythonPackages = python3Packages; 7 8 binPath = lib.makeBinPath [ xdg_utils dnsmasq dhcp ]; 8 9 9 10 in stdenv.mkDerivation rec {
+2 -2
pkgs/tools/filesystems/f2fs-tools/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "f2fs-tools-${version}"; 5 - version = "1.10.0"; 5 + version = "1.11.0"; 6 6 7 7 src = fetchgit { 8 8 url = "git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs-tools.git"; 9 9 rev = "refs/tags/v${version}"; 10 - sha256 = "1254pd254l1hxkzkkzqmzc0j9vywj2wddg9apqaixjninj21jrbc"; 10 + sha256 = "188yv77ga466wpzbirsx6vspym8idaschgi7cx92z4jwqpnkk5gv"; 11 11 }; 12 12 13 13 nativeBuildInputs = [ autoreconfHook pkgconfig ];
+2 -2
pkgs/tools/filesystems/squashfuse/default.nix
··· 6 6 stdenv.mkDerivation rec { 7 7 8 8 pname = "squashfuse"; 9 - version = "unstable-2018-02-20"; 9 + version = "0.1.103"; 10 10 name = "${pname}-${version}"; 11 11 12 12 meta = { ··· 24 24 src = fetchFromGitHub { 25 25 owner = "vasi"; 26 26 repo = "${pname}"; 27 - rev = "3f4a93f373796e88f7eee3a0c005ef60cb395d30"; 27 + rev = "540204955134eee44201d50132a5f66a246bcfaf"; 28 28 sha256 = "07jv4qjjz9ky3mw3p5prgs19g1bna9dcd7jjdz8083s1wyipdgcq"; 29 29 }; 30 30
+7 -3
pkgs/tools/graphics/oxipng/default.nix
··· 1 1 { stdenv, fetchFromGitHub, rustPlatform }: 2 2 3 3 rustPlatform.buildRustPackage rec { 4 - version = "1.0.1"; 4 + version = "2.1.0"; 5 5 name = "oxipng-${version}"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "shssoichiro"; 9 9 repo = "oxipng"; 10 10 rev = "v${version}"; 11 - sha256 = "0w39f0dhq9cxk25vy0wh8vicxyckvj1vmglx5va4550i3q0hsrws"; 11 + sha256 = "13rzkfb025y4i9dj66fgc74whgs90gyw861dccsj16cpfl6kh5z0"; 12 12 }; 13 13 14 - cargoSha256 = "00nbx6n73yl4ax05pqkmim1vhy0pymgz5la1cc4y18gjbjjj9w4h"; 14 + cargoSha256 = "0l6ad8rnifd5hkv6x2cr0frdddsfwm1xd1v56imlglsjkgz56cva"; 15 15 16 16 meta = with stdenv.lib; { 17 17 homepage = https://github.com/shssoichiro/oxipng; 18 18 description = "A lossless PNG compression optimizer"; 19 19 license = licenses.mit; 20 + maintainers = with maintainers; [ dywedir ]; 20 21 platforms = platforms.all; 22 + 23 + # macro is_arm_feature_detected! is unstable 24 + broken = stdenv.isAarch64; 21 25 }; 22 26 }
+2 -2
pkgs/tools/graphics/pdfredacttools/default.nix
··· 1 - { stdenv, fetchFromGitHub, pythonPackages, imagemagick, exiftool, file, ghostscript }: 1 + { stdenv, fetchFromGitHub, python2Packages, imagemagick, exiftool, file, ghostscript }: 2 2 3 - pythonPackages.buildPythonApplication rec { 3 + python2Packages.buildPythonApplication rec { 4 4 pname = "pdf-redact-tools"; 5 5 version = "0.1.2"; 6 6
+23
pkgs/tools/graphics/scour/default.nix
··· 1 + { stdenv, python3 }: 2 + 3 + with python3.pkgs; 4 + 5 + buildPythonApplication rec { 6 + pname = "scour"; 7 + version = "0.37"; 8 + 9 + src = fetchPypi { 10 + inherit pname version; 11 + sha256 = "05k1f8i8v7sp5v39lian865vwvapq05a6vmvk7fwnxv8kivi6ccn"; 12 + }; 13 + 14 + propagatedBuildInputs = [ six ]; 15 + 16 + meta = with stdenv.lib; { 17 + description = "An SVG Optimizer / Cleaner "; 18 + homepage = https://github.com/scour-project/scour; 19 + license = licenses.asl20; 20 + maintainers = with maintainers; [ worldofpeace ]; 21 + platforms = platforms.unix; 22 + }; 23 + }
+9 -10
pkgs/tools/misc/apt-offline/default.nix
··· 1 - { stdenv, fetchurl, pythonPackages }: 1 + { stdenv, fetchFromGitHub, python3Packages }: 2 2 3 - pythonPackages.buildPythonApplication rec { 4 - version = "1.3"; 5 - name = "apt-offline-${version}"; 3 + python3Packages.buildPythonApplication rec { 4 + version = "1.8.1"; 5 + pname = "apt-offline"; 6 6 7 - src = fetchurl { 8 - #url = "https://alioth.debian.org/frs/download.php/file/3855/${name}.tar.gz"; 9 - # The above URL has two problems: it requires one to be logged in, and it 10 - # uses a CA that curl doesn't know about. Instead, we use this mirror: 11 - url = "http://www.falsifian.org/a/cFi5/${name}.tar.gz"; 12 - sha256 = "1sp7ai2abzhbg9y84700qziybphvpzl2nk3mz1d1asivzyjvxlxy"; 7 + src = fetchFromGitHub { 8 + owner = "rickysarraf"; 9 + repo = pname; 10 + rev = "v${version}"; 11 + sha256 = "0k79d1d8jiwg1s684r05njmk1dz8gsb8a9bl4agz7m31snc11j84"; 13 12 }; 14 13 15 14 doCheck = false;
+3 -3
pkgs/tools/misc/bashplotlib/default.nix
··· 1 - { stdenv, pythonPackages, fetchFromGitHub }: 1 + { stdenv, python3Packages, fetchFromGitHub }: 2 2 3 - pythonPackages.buildPythonApplication rec { 4 - pname = "bashplotlib-${version}"; 3 + python3Packages.buildPythonApplication rec { 4 + pname = "bashplotlib"; 5 5 version = "2017-10-11"; 6 6 7 7 src = fetchFromGitHub {
+4 -4
pkgs/tools/misc/doitlive/default.nix
··· 1 - { stdenv, pythonPackages }: 1 + { stdenv, python3Packages }: 2 2 3 - pythonPackages.buildPythonApplication rec { 3 + python3Packages.buildPythonApplication rec { 4 4 pname = "doitlive"; 5 5 version = "3.0.3"; 6 6 7 - src = pythonPackages.fetchPypi { 7 + src = python3Packages.fetchPypi { 8 8 inherit pname version; 9 9 sha256 = "19i16ca835rb3gal1sxyvpyilj9a80n6nikf0smlzmxck38x86fj"; 10 10 }; 11 11 12 - propagatedBuildInputs = with pythonPackages; [ click ]; 12 + propagatedBuildInputs = with python3Packages; [ click ]; 13 13 14 14 # disable tests (too many failures) 15 15 doCheck = false;
+2 -2
pkgs/tools/misc/lbdb/default.nix
··· 7 7 }: 8 8 9 9 let 10 - version = "0.46"; 10 + version = "0.47"; 11 11 in 12 12 with stdenv.lib; 13 13 with perlPackages; ··· 15 15 name = "lbdb-${version}"; 16 16 src = fetchurl { 17 17 url = "http://www.spinnaker.de/lbdb/download/lbdb_${version}.tar.gz"; 18 - sha256 = "16fx02xk98k3friigq2lcgk535xagp3kfnmngni5kw61f7yj6gxi"; 18 + sha256 = "06zgj03q75gc6ri4cw3jdmi01f22anwchlv2kw4zp9nbm5swv36b"; 19 19 }; 20 20 21 21 buildInputs = [ goobook makeWrapper perl ConvertASN1 perlldap AuthenSASL ]
+2 -2
pkgs/tools/misc/svtplay-dl/default.nix
··· 1 - { stdenv, fetchFromGitHub, makeWrapper, pythonPackages, perl, zip 1 + { stdenv, fetchFromGitHub, makeWrapper, python3Packages, perl, zip 2 2 , rtmpdump }: 3 3 4 4 let 5 - inherit (pythonPackages) python nose pycrypto requests mock; 5 + inherit (python3Packages) python nose pycrypto requests mock; 6 6 in stdenv.mkDerivation rec { 7 7 name = "svtplay-dl-${version}"; 8 8 version = "1.9.11";
+6 -4
pkgs/tools/misc/tldr/default.nix
··· 1 - { stdenv, fetchFromGitHub, clang, curl, libzip, pkgconfig }: 1 + { stdenv, fetchFromGitHub, curl, libzip, pkgconfig }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "tldr-${version}"; ··· 11 11 sha256 = "10ylpiqc06p0qpma72vwksd7hd107s0vlx9c6s9rz4vc3i274lb6"; 12 12 }; 13 13 14 - buildInputs = [ curl clang libzip ]; 14 + buildInputs = [ curl libzip ]; 15 15 nativeBuildInputs = [ pkgconfig ]; 16 16 17 + makeFlags = ["CC=cc" "LD=cc" "CFLAGS="]; 18 + 17 19 installFlags = [ "PREFIX=$(out)" ]; 18 20 19 21 meta = with stdenv.lib; { ··· 24 26 ''; 25 27 homepage = http://tldr-pages.github.io; 26 28 license = licenses.mit; 27 - maintainers = with maintainers; [ taeer ]; 28 - platforms = platforms.linux; 29 + maintainers = with maintainers; [ taeer carlosdagos ]; 30 + platforms = platforms.all; 29 31 }; 30 32 }
+11 -20
pkgs/tools/misc/vdirsyncer/default.nix
··· 1 - { stdenv, python3Packages, glibcLocales, rustPlatform }: 1 + { stdenv, python3Packages, glibcLocales, rustPlatform, pkgconfig, openssl }: 2 2 3 3 # Packaging documentation at: 4 4 # https://github.com/untitaker/vdirsyncer/blob/master/docs/packaging.rst 5 5 let 6 6 pythonPackages = python3Packages; 7 - version = "0.17.0a2"; 7 + version = "0.17.0a3"; 8 8 pname = "vdirsyncer"; 9 9 name = pname + "-" + version; 10 10 src = pythonPackages.fetchPypi { 11 11 inherit pname version; 12 - sha256 = "0y464rsx5la6bp94z2g0nnkbl4nwfya08abynvifw4c84vs1gr4q"; 12 + sha256 = "1n7izfa5x9mh0b4zp20gd8qxfcca5wpjh834bsbi5pk6zam5pfdy"; 13 13 }; 14 14 native = rustPlatform.buildRustPackage { 15 15 name = name + "-native"; 16 16 inherit src; 17 17 sourceRoot = name + "/rust"; 18 - cargoSha256 = "1cr7xs11gbsc3x5slga9qahchwc22qq49amf28g4jgs9lzf57qis"; 19 - postInstall = '' 20 - mkdir $out/include $out/lib 21 - cp $out/bin/libvdirsyncer_rustext* $out/lib 22 - rm -r $out/bin 23 - cp target/vdirsyncer_rustext.h $out/include 24 - ''; 18 + cargoSha256 = "08xq9q5fx37azzkqqgwcnds1yd8687gh26dsl3ivql5h13fa2w3q"; 19 + buildInputs = [ pkgconfig openssl ]; 25 20 }; 26 21 in pythonPackages.buildPythonApplication rec { 27 - inherit version pname src; 22 + inherit version pname src native; 28 23 29 24 propagatedBuildInputs = with pythonPackages; [ 30 25 click click-log click-threading ··· 33 28 requests_oauthlib # required for google oauth sync 34 29 atomicwrites 35 30 milksnake 31 + shippai 36 32 ]; 37 33 38 34 buildInputs = with pythonPackages; [ setuptools_scm ]; ··· 40 36 checkInputs = with pythonPackages; [ hypothesis pytest pytest-localserver pytest-subtesthack ] ++ [ glibcLocales ]; 41 37 42 38 postPatch = '' 43 - sed -i "/cargo build/d" Makefile 39 + sed -i 's/spec.add_external_build(cmd=cmd/spec.add_external_build(cmd="true"/g' setup.py 44 40 ''; 45 41 46 42 preBuild = '' 47 43 mkdir -p rust/target/release 48 - ln -s ${native}/lib/libvdirsyncer_rustext* rust/target/release/ 49 - ln -s ${native}/include/vdirsyncer_rustext.h rust/target/ 44 + ln -s ${native}/bin/libvdirsyncer_rustext* rust/target/release/ 50 45 ''; 51 46 52 47 LC_ALL = "en_US.utf8"; 53 48 54 - preCheck = '' 55 - ln -sf ../dist/tmpbuild/vdirsyncer/vdirsyncer/_native__lib.so vdirsyncer 56 - ''; 57 - 58 49 checkPhase = '' 59 - runHook preCheck 50 + rm -rf vdirsyncer 51 + export PYTHONPATH=$out/${pythonPackages.python.sitePackages}:$PYTHONPATH 60 52 make DETERMINISTIC_TESTS=true test 61 - runHook postCheck 62 53 ''; 63 54 64 55 meta = with stdenv.lib; {
+5 -16
pkgs/tools/networking/haproxy/default.nix
··· 1 1 { useLua ? !stdenv.isDarwin 2 2 , usePcre ? true 3 - , stdenv, fetchurl, fetchpatch 3 + , stdenv, fetchurl 4 4 , openssl, zlib, lua5_3 ? null, pcre ? null 5 5 }: 6 6 ··· 9 9 10 10 stdenv.mkDerivation rec { 11 11 pname = "haproxy"; 12 - version = "1.8.9"; 12 + version = "1.8.13"; 13 13 name = "${pname}-${version}"; 14 14 15 15 src = fetchurl { 16 16 url = "https://www.haproxy.org/download/${stdenv.lib.versions.majorMinor version}/src/${name}.tar.gz"; 17 - sha256 = "00miblgwll3mycsgmp3gd3cn4lwsagxzgjxk5i6csnyqgj97fss3"; 17 + sha256 = "2bf5dafbb5f1530c0e67ab63666565de948591f8e0ee2a1d3c84c45e738220f1"; 18 18 }; 19 19 20 - patches = [ 21 - (fetchpatch { 22 - name = "CVE-2018-11469.patch"; 23 - url = "https://git.haproxy.org/?p=haproxy-1.8.git;a=patch;h=17514045e5d934dede62116216c1b016fe23dd06"; 24 - sha256 = "0hzcvghg8qz45n3mrcgsjgvrvicvbvm52cc4hs5jbk1yb50qvls7"; 25 - }) 26 - ] ++ stdenv.lib.optional stdenv.isDarwin (fetchpatch { 27 - name = "fix-darwin-no-threads-build.patch"; 28 - url = "https://git.haproxy.org/?p=haproxy-1.8.git;a=patch;h=fbf09c441a4e72c4a690bc7ef25d3374767fe5c5;hp=3157ef219c493f3b01192f1b809a086a5b119a1e"; 29 - sha256 = "16ckzb160anf7xih7mmqy59pfz8sdywmyblxnr7lz9xix3jwk55r"; 30 - }); 31 - 32 20 buildInputs = [ openssl zlib ] 33 21 ++ stdenv.lib.optional useLua lua5_3 34 22 ++ stdenv.lib.optional usePcre pcre; ··· 51 39 "USE_LUA=yes" 52 40 "LUA_LIB=${lua5_3}/lib" 53 41 "LUA_INC=${lua5_3}/include" 54 - ] ++ stdenv.lib.optional stdenv.isDarwin "CC=cc"; 42 + ] ++ stdenv.lib.optional stdenv.isDarwin "CC=cc" 43 + ++ stdenv.lib.optional stdenv.isLinux "USE_GETADDRINFO=1"; 55 44 56 45 meta = { 57 46 description = "Reliable, high performance TCP/HTTP load balancer";
+19
pkgs/tools/networking/network-manager/applet.nix
··· 20 20 url = https://gitlab.gnome.org/GNOME/network-manager-applet/merge_requests/12.patch; 21 21 sha256 = "0q5qbjpbrfvhqsprnwjwz4c42nly59cgnbn41w2zlxvqf29gjvwk"; 22 22 }) 23 + 24 + # following 3 patches: 25 + # https://gitlab.gnome.org/GNOME/network-manager-applet/issues/11 26 + # should be fixed in 1.8.16 27 + (fetchpatch { 28 + name = "0001-connection-editor-hold-GApplication-while-the-import.patch"; 29 + url = https://gitlab.gnome.org/GNOME/network-manager-applet/commit/419c459e70ac752eb9226b0db1192fb0433d5d5e.patch; 30 + sha256 = "0zi4fn2ynymi6ckkdrj8vcl78pwmkan4n8l53axaqb4kn0wnahdj"; 31 + }) 32 + (fetchpatch { 33 + name = "0002-connection-list-attempt-a-VPN-import-first.patch"; 34 + url = https://gitlab.gnome.org/GNOME/network-manager-applet/commit/9d79ffdb148b31c7194c66946c87b6cd57ed54a3.patch; 35 + sha256 = "1v0pdvkglrcfl1khp9j17cw0gvwg8scdha0wfziy054s1r6kyj23"; 36 + }) 37 + (fetchpatch { 38 + name = "0003-bluetooth-fix-an-assert-failure-on-creation-cancella.patch"; 39 + url = https://gitlab.gnome.org/GNOME/network-manager-applet/commit/516f3f6c70ef9694d6004c64d50a9f3cd2725ab7.patch; 40 + sha256 = "1msk4hmri3x5chmclxm7sdj1v9jg7pxqqrarlvsmfmshdwq4ljwk"; 41 + }) 23 42 ]; 24 43 25 44 mesonFlags = [
+6 -7
pkgs/tools/networking/network-manager/default.nix
··· 9 9 pname = "NetworkManager"; 10 10 in stdenv.mkDerivation rec { 11 11 name = "network-manager-${version}"; 12 - version = "1.12.0"; 12 + version = "1.12.2"; 13 13 14 14 src = fetchurl { 15 15 url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 16 - sha256 = "15bzjkrfa7sw5p5hkdha4a67y1zfnzh1s6za11sh8s1yxmyvkziq"; 16 + sha256 = "09hsh34m8hg4m402pw5n11f29vsfjw6lm3p5m56yxwq57bwnzq3b"; 17 17 }; 18 18 19 19 outputs = [ "out" "dev" ]; ··· 66 66 ]; 67 67 68 68 patches = [ 69 - # https://bugzilla.gnome.org/show_bug.cgi?id=796752 70 - (fetchurl { 71 - url = https://bugzilla.gnome.org/attachment.cgi?id=372955; 72 - sha256 = "17rl19lprnsz4wjmp54c1qw6a3pf8x97bhd69xavwy7cx6z84b3n"; 73 - }) 74 69 # https://bugzilla.gnome.org/show_bug.cgi?id=796751 75 70 (fetchurl { 76 71 url = https://bugzilla.gnome.org/attachment.cgi?id=372953; 77 72 sha256 = "1crjplyiiipkhjjlifrv6hhvxinlcxd6irp9ijbc7jij31g44i0a"; 73 + }) 74 + (fetchurl { 75 + url = https://gitlab.freedesktop.org/NetworkManager/NetworkManager/commit/0a3755c1799d3a4dc1875d4c59c7c568a64c8456.patch; 76 + sha256 = "af1717f7c6fdd6dadb4082dd847f4bbc42cf1574833299f3e47024e785533f2e"; 78 77 }) 79 78 (substituteAll { 80 79 src = ./fix-paths.patch;
+4 -4
pkgs/tools/networking/p2p/libtorrent/default.nix
··· 6 6 7 7 stdenv.mkDerivation rec { 8 8 name = "libtorrent-${version}"; 9 - version = "20161212"; 9 + version = "0.13.7"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "rakshasa"; 13 13 repo = "libtorrent"; 14 - rev = "c167c5a9e0bcf0df23ae5efd91396aae0e37eb87"; 15 - sha256 = "0y9759sxx5dyamyw8w58dsxq7bmnn57q7s2f4cw2zln2pp5gripw"; 14 + rev = "v${version}"; 15 + sha256 = "027qanwcisxhx0bq8dn8cpg8563q0k2pm8ls278f04n7jqvvwkp0"; 16 16 }; 17 17 18 18 nativeBuildInputs = [ pkgconfig ]; ··· 21 21 preConfigure = "./autogen.sh"; 22 22 23 23 meta = with stdenv.lib; { 24 - homepage = "http://rtorrent.net/downloads/"; 24 + inherit (src.meta) homepage; 25 25 description = "A BitTorrent library written in C++ for *nix, with focus on high performance and good code"; 26 26 27 27 platforms = platforms.unix;
+4 -4
pkgs/tools/networking/p2p/rtorrent/default.nix
··· 9 9 10 10 stdenv.mkDerivation rec { 11 11 name = "rtorrent-${version}"; 12 - version = "20161023"; 12 + version = "0.9.7"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "rakshasa"; 16 16 repo = "rtorrent"; 17 - rev = "226e670decf92e7adaa845a6982aca4f164ea740"; 18 - sha256 = "0cxyakc09bn6wjfj42gh508hc62awx825skzacpizx2bqs6v7xvb"; 17 + rev = "v${version}"; 18 + sha256 = "0a9dk3cz56f7gad8ghsma79iy900rwdvzngs6k6x08nlwaqid8ga"; 19 19 }; 20 20 21 21 nativeBuildInputs = [ pkgconfig ]; ··· 42 42 ''; 43 43 44 44 meta = with stdenv.lib; { 45 - inherit (src.meta) homepage; 45 + homepage = https://rakshasa.github.io/rtorrent/; 46 46 description = "An ncurses client for libtorrent, ideal for use with screen, tmux, or dtach"; 47 47 48 48 platforms = platforms.unix;
+56
pkgs/tools/networking/tinyproxy/default.nix
··· 1 + { stdenv, fetchFromGitHub, automake, autoreconfHook, asciidoc, libxml2, 2 + libxslt, docbook_xsl }: 3 + 4 + stdenv.mkDerivation rec{ 5 + name = "tinyproxy-${version}"; 6 + version = "1.8.4"; 7 + 8 + src = fetchFromGitHub { 9 + sha256 = "043mfqin5bsba9igm1lqbkp2spibk4j3niyjqc868cnzgx60709c"; 10 + rev = "${version}"; 11 + repo = "tinyproxy"; 12 + owner = "tinyproxy"; 13 + }; 14 + 15 + nativeBuildInputs = [ autoreconfHook asciidoc libxml2 libxslt docbook_xsl ]; 16 + 17 + # -z flag is not supported in darwin 18 + preAutoreconf = stdenv.lib.optionalString stdenv.isDarwin '' 19 + substituteInPlace configure.ac --replace \ 20 + 'LDFLAGS="-Wl,-z,defs $LDFLAGS"' \ 21 + 'LDFLAGS="-Wl, $LDFLAGS"' 22 + ''; 23 + 24 + # See: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=154624 25 + postConfigure = '' 26 + substituteInPlace docs/man5/Makefile --replace \ 27 + "-f manpage" \ 28 + "--xsltproc-opts=--nonet \\ 29 + -f manpage \\ 30 + -L" 31 + substituteInPlace docs/man8/Makefile --replace \ 32 + "-f manpage" \ 33 + "--xsltproc-opts=--nonet \\ 34 + -f manpage \\ 35 + -L" 36 + ''; 37 + 38 + configureFlags = [ 39 + "--disable-debug" # Turn off debugging 40 + "--enable-xtinyproxy" # Compile in support for the XTinyproxy header, which is sent to any web server in your domain. 41 + "--enable-filter" # Allows Tinyproxy to filter out certain domains and URLs. 42 + "--enable-upstream" # Enable support for proxying connections through another proxy server. 43 + "--enable-transparent" # Allow Tinyproxy to be used as a transparent proxy daemon. 44 + "--enable-reverse" # Enable reverse proxying. 45 + ] ++ 46 + # See: https://github.com/tinyproxy/tinyproxy/issues/1 47 + stdenv.lib.optional stdenv.isDarwin "--disable-regexcheck"; 48 + 49 + meta = with stdenv.lib; { 50 + homepage = https://tinyproxy.github.io/; 51 + description = "A light-weight HTTP/HTTPS proxy daemon for POSIX operating systems"; 52 + license = licenses.gpl2; 53 + platforms = platforms.all; 54 + maintainers = [ maintainers.carlosdagos ]; 55 + }; 56 + }
+4 -4
pkgs/tools/security/ccid/default.nix
··· 1 1 { stdenv, fetchurl, pcsclite, pkgconfig, libusb1, perl }: 2 2 3 3 stdenv.mkDerivation rec { 4 - version = "1.4.27"; 4 + version = "1.4.29"; 5 5 name = "ccid-${version}"; 6 6 7 7 src = fetchurl { 8 - url = "https://alioth.debian.org/frs/download.php/file/4218/ccid-1.4.27.tar.bz2"; 9 - sha256 = "0dyikpmhsph36ndgd61bs4yx437v5y0bmm8ahjacp1k9c1ly4q56"; 8 + url = "https://ccid.apdu.fr/files/${name}.tar.bz2"; 9 + sha256 = "0kdqmbma6sclsrbxy9w85h7cs0v11if4nc2r9v09613k8pl2lhx5"; 10 10 }; 11 11 12 12 postPatch = '' ··· 23 23 24 24 meta = with stdenv.lib; { 25 25 description = "ccid drivers for pcsclite"; 26 - homepage = http://pcsclite.alioth.debian.org/; 26 + homepage = https://ccid.apdu.fr/; 27 27 license = licenses.gpl2Plus; 28 28 maintainers = with maintainers; [ wkennington ]; 29 29 platforms = platforms.linux;
+23
pkgs/tools/security/certmgr/default.nix
··· 1 + { stdenv, buildGoPackage, fetchFromGitHub }: 2 + 3 + buildGoPackage rec { 4 + version = "1.6.1"; 5 + name = "certmgr-${version}"; 6 + 7 + goPackagePath = "github.com/cloudflare/certmgr/"; 8 + 9 + src = fetchFromGitHub { 10 + owner = "cloudflare"; 11 + repo = "certmgr"; 12 + rev = "v${version}"; 13 + sha256 = "1ky2pw1wxrb2fxfygg50h0mid5l023x6xz9zj5754a023d01qqr2"; 14 + }; 15 + 16 + meta = with stdenv.lib; { 17 + homepage = https://cfssl.org/; 18 + description = "Cloudflare's certificate manager"; 19 + platforms = platforms.linux; 20 + license = licenses.bsd2; 21 + maintainers = with maintainers; [ johanot srhb ]; 22 + }; 23 + }
+3 -1
pkgs/tools/security/pius/default.nix
··· 1 - { fetchFromGitHub, stdenv, pythonPackages, gnupg }: 1 + { fetchFromGitHub, stdenv, pythonPackages, gnupg, perl }: 2 2 3 3 let version = "2.2.6"; in 4 4 pythonPackages.buildPythonApplication { ··· 17 17 sed -i "$file" -E -e's|/usr/bin/gpg2?|${gnupg}/bin/gpg|g' 18 18 done 19 19 ''; 20 + 21 + buildInputs = [ perl ]; 20 22 21 23 meta = { 22 24 homepage = https://www.phildev.net/pius/;
+8 -3
pkgs/tools/system/logrotate/default.nix
··· 1 - { stdenv, fetchFromGitHub, mailutils, gzip, popt, autoreconfHook }: 1 + { stdenv, fetchFromGitHub, gzip, popt, autoreconfHook 2 + , mailutils ? null 3 + }: 2 4 3 5 stdenv.mkDerivation rec { 4 6 name = "logrotate-${version}"; ··· 14 16 # Logrotate wants to access the 'mail' program; to be done. 15 17 patchPhase = '' 16 18 sed -i -e 's,[a-z/]\+gzip,${gzip}/bin/gzip,' \ 17 - -e 's,[a-z/]\+gunzip,${gzip}/bin/gunzip,' \ 18 - -e 's,[a-z/]\+mail,${mailutils}/bin/mail,' configure.ac 19 + -e 's,[a-z/]\+gunzip,${gzip}/bin/gunzip,' configure.ac 20 + 21 + ${stdenv.lib.optionalString (mailutils != null) '' 22 + sed -i -e 's,[a-z/]\+mail,${mailutils}/bin/mail,' configure.ac 23 + ''} 19 24 ''; 20 25 21 26 autoreconfPhase = ''
+2 -5
pkgs/tools/system/netdata/default.nix
··· 1 1 { stdenv, fetchFromGitHub, autoreconfHook, zlib, pkgconfig, libuuid }: 2 2 3 3 stdenv.mkDerivation rec{ 4 - version = "1.9.0"; 4 + version = "1.10.0"; 5 5 name = "netdata-${version}"; 6 6 7 7 src = fetchFromGitHub { 8 8 rev = "v${version}"; 9 9 owner = "firehol"; 10 10 repo = "netdata"; 11 - sha256 = "1vy0jz5lxw63b830l9jgf1qqhp41gzapyhdr5k1gwg3zghvlg10w"; 11 + sha256 = "02spfisabjkkgd9fairldlf84n83vbv2xafg0g5jrpfa972pjl9r"; 12 12 }; 13 13 14 14 nativeBuildInputs = [ autoreconfHook pkgconfig ]; 15 15 buildInputs = [ zlib libuuid ]; 16 - 17 - # Allow UI to load when running as non-root 18 - patches = [ ./web_access.patch ]; 19 16 20 17 # Build will fail trying to create /var/{cache,lib,log}/netdata without this 21 18 postPatch = ''
-20
pkgs/tools/system/netdata/web_access.patch
··· 1 - --- a/src/web_client.c.orig 2 - +++ b/src/web_client.c 3 - @@ -302,7 +302,7 @@ 4 - buffer_strcat_htmlescape(w->response.data, webfilename); 5 - return 404; 6 - } 7 - - 8 - +#if 0 9 - // check if the file is owned by expected user 10 - if(stat.st_uid != web_files_uid()) { 11 - error("%llu: File '%s' is owned by user %u (expected user %u). Access Denied.", w->id, webfilename, stat.st_uid, web_files_uid()); 12 - @@ -320,7 +320,7 @@ 13 - buffer_strcat_htmlescape(w->response.data, webfilename); 14 - return 403; 15 - } 16 - - 17 - +#endif 18 - if((stat.st_mode & S_IFMT) == S_IFDIR) { 19 - snprintfz(webfilename, FILENAME_MAX, "%s/index.html", filename); 20 - return mysendfile(w, webfilename);
+4 -4
pkgs/tools/text/ripgrep/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 name = "ripgrep-${version}"; 5 - version = "0.8.1"; 5 + version = "0.9.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "BurntSushi"; 9 9 repo = "ripgrep"; 10 - rev = "${version}"; 11 - sha256 = "1h7k9ik723qzplwl0a5i0anzdr115wwklfgp0n11p4k2ckh7nygn"; 10 + rev = version; 11 + sha256 = "089xffrqi4wm0w1lhy5iqxrcb82ca44bxl8qps4ilv0ih91vxwfj"; 12 12 }; 13 13 14 - cargoSha256 = "1gld93dxfm4vyiz1b43smbdhxmyzdk2236ksp8vw1zb1yyzn83nf"; 14 + cargoSha256 = "1wsw7s1bc1gnpq4kjzkas5zf2snhpx9f6cyrrf6g5jr8l0hcbyih"; 15 15 16 16 nativeBuildInputs = [ asciidoc docbook_xsl libxslt ]; 17 17
+8 -15
pkgs/tools/typesetting/biber/default.nix
··· 1 - { stdenv, fetchFromGitHub, buildPerlModule, autovivification, BusinessISBN 2 - , BusinessISMN, BusinessISSN, ConfigAutoConf, DataCompare, DataDump, DateSimple 3 - , DateTime, DateTimeFormatBuilder, DateTimeCalendarJulian 4 - , EncodeEUCJPASCII, EncodeHanExtra, EncodeJIS2K, ExtUtilsLibBuilder 5 - , FileSlurp, FileWhich, IPCRun3, LogLog4perl, LWPProtocolHttps, ListAllUtils, ListMoreUtils 6 - , MozillaCA, ReadonlyXS, RegexpCommon, TextBibTeX, UnicodeCollate 7 - , UnicodeLineBreak, URI, XMLLibXMLSimple, XMLLibXSLT, XMLWriter, ClassAccessor 8 - , TextCSV, TextCSV_XS, TextRoman, DataUniqid, LinguaTranslit, UnicodeNormalize, SortKey 9 - , TestDifferences }: 1 + { stdenv, fetchFromGitHub, perlPackages }: 10 2 11 - buildPerlModule rec { 3 + perlPackages.buildPerlModule rec { 12 4 name = "biber-${version}"; 13 5 version = "2.7"; 6 + 14 7 src = fetchFromGitHub { 15 8 owner = "plk"; 16 9 repo = "biber"; ··· 18 11 sha256 = "04jmsh59g2s0b61rm25z0hwb6yliqyh5gjs4y74va93d2b9mrd17"; 19 12 }; 20 13 21 - buildInputs = [ 14 + buildInputs = with perlPackages; [ 22 15 autovivification BusinessISBN BusinessISMN BusinessISSN ConfigAutoConf 23 16 DataCompare DataDump DateSimple EncodeEUCJPASCII EncodeHanExtra EncodeJIS2K 24 17 DateTime DateTimeFormatBuilder DateTimeCalendarJulian ··· 32 25 # Tests depend on the precise Unicode-Collate version (expects 1.19, but we have 1.25) 33 26 doCheck = false; 34 27 35 - meta = { 28 + meta = with stdenv.lib; { 36 29 description = "Backend for BibLaTeX"; 37 - license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 38 - platforms = stdenv.lib.platforms.unix; 39 - maintainers = [ stdenv.lib.maintainers.ttuegel ]; 30 + license = with licenses; [ artistic1 gpl1Plus ]; 31 + platforms = platforms.unix; 32 + maintainers = [ maintainers.ttuegel ]; 40 33 }; 41 34 }
+2 -2
pkgs/tools/typesetting/pdf2djvu/default.nix
··· 1 1 { stdenv, fetchurl, pkgconfig, djvulibre, poppler, fontconfig, libjpeg }: 2 2 3 3 stdenv.mkDerivation rec { 4 - version = "0.9.9"; 4 + version = "0.9.10"; 5 5 name = "pdf2djvu-${version}"; 6 6 7 7 src = fetchurl { 8 8 url = "https://github.com/jwilk/pdf2djvu/releases/download/${version}/${name}.tar.xz"; 9 - sha256 = "0v1his9ph04dllzyxkirc8kd23l41qc41bwg9bfsbzkri16b7xik"; 9 + sha256 = "026vgg4v6wsq8j091yxg3xzh5953kqg5cyay87y7yidnzn39livn"; 10 10 }; 11 11 12 12 nativeBuildInputs = [ pkgconfig ];
+48 -22
pkgs/top-level/all-packages.nix
··· 429 429 430 430 acpica-tools = callPackage ../tools/system/acpica-tools { }; 431 431 432 - actdiag = pythonPackages.actdiag; 432 + actdiag = with python3.pkgs; toPythonApplication actdiag; 433 433 434 434 actkbd = callPackage ../tools/system/actkbd { }; 435 435 ··· 905 905 906 906 blobfuse = callPackage ../tools/filesystems/blobfuse { }; 907 907 908 - blockdiag = pythonPackages.blockdiag; 908 + blockdiag = with python3Packages; toPythonApplication blockdiag; 909 909 910 910 blsd = callPackage ../tools/misc/blsd { 911 911 libgit2 = libgit2_0_27; ··· 1147 1147 1148 1148 dateutils = callPackage ../tools/misc/dateutils { }; 1149 1149 1150 - ddar = pythonPackages.callPackage ../tools/backup/ddar { }; 1150 + ddar = callPackage ../tools/backup/ddar { }; 1151 1151 1152 1152 ddate = callPackage ../tools/misc/ddate { }; 1153 1153 ··· 1456 1456 1457 1457 parallel-rust = callPackage ../tools/misc/parallel-rust { }; 1458 1458 1459 + scour = callPackage ../tools/graphics/scour { }; 1460 + 1459 1461 s2png = callPackage ../tools/graphics/s2png { }; 1460 1462 1461 1463 simg2img = callPackage ../tools/filesystems/simg2img { }; ··· 1605 1607 1606 1608 bgs = callPackage ../tools/X11/bgs { }; 1607 1609 1608 - biber = callPackage ../tools/typesetting/biber { 1609 - inherit (perlPackages) buildPerlModule 1610 - autovivification BusinessISBN BusinessISMN BusinessISSN ConfigAutoConf 1611 - DataCompare DataDump DateSimple EncodeEUCJPASCII EncodeHanExtra EncodeJIS2K 1612 - DateTime DateTimeFormatBuilder DateTimeCalendarJulian 1613 - ExtUtilsLibBuilder FileSlurp FileWhich IPCRun3 LogLog4perl LWPProtocolHttps ListAllUtils 1614 - ListMoreUtils MozillaCA ReadonlyXS RegexpCommon TextBibTeX 1615 - UnicodeCollate UnicodeLineBreak URI XMLLibXMLSimple XMLLibXSLT XMLWriter 1616 - ClassAccessor TextCSV TextCSV_XS TextRoman DataUniqid LinguaTranslit UnicodeNormalize SortKey 1617 - TestDifferences; 1618 - }; 1610 + biber = callPackage ../tools/typesetting/biber { }; 1619 1611 1620 1612 blueman = callPackage ../tools/bluetooth/blueman { 1621 1613 withPulseAudio = config.pulseaudio or true; ··· 1695 1687 libceph = ceph.lib; 1696 1688 ceph = callPackage ../tools/filesystems/ceph { boost = boost165; }; 1697 1689 ceph-dev = ceph; 1690 + 1691 + certmgr = callPackage ../tools/security/certmgr { }; 1698 1692 1699 1693 cfdg = callPackage ../tools/graphics/cfdg { 1700 1694 ffmpeg = ffmpeg_2; ··· 4242 4236 4243 4237 nssmdns = callPackage ../tools/networking/nss-mdns { }; 4244 4238 4245 - nwdiag = pythonPackages.nwdiag; 4239 + nwdiag = with python3Packages; toPythonApplication nwdiag; 4246 4240 4247 4241 nylon = callPackage ../tools/networking/nylon { }; 4248 4242 ··· 4267 4261 obexftp = callPackage ../tools/bluetooth/obexftp { }; 4268 4262 4269 4263 objconv = callPackage ../development/tools/misc/objconv {}; 4270 - 4271 - obnam = callPackage ../tools/backup/obnam { }; 4272 4264 4273 4265 odpdown = callPackage ../tools/typesetting/odpdown { }; 4274 4266 ··· 4682 4674 4683 4675 proot = callPackage ../tools/system/proot { }; 4684 4676 4677 + prototypejs = callPackage ../development/libraries/prototypejs { }; 4678 + 4685 4679 proxychains = callPackage ../tools/networking/proxychains { }; 4686 4680 4687 4681 proxytunnel = callPackage ../tools/misc/proxytunnel { }; ··· 5050 5044 5051 5045 scfbuild = python2.pkgs.callPackage ../tools/misc/scfbuild { }; 5052 5046 5047 + scriptaculous = callPackage ../development/libraries/scriptaculous { }; 5048 + 5053 5049 scrot = callPackage ../tools/graphics/scrot { }; 5054 5050 5055 5051 scrypt = callPackage ../tools/security/scrypt { }; ··· 5074 5070 5075 5071 setserial = callPackage ../tools/system/setserial { }; 5076 5072 5077 - seqdiag = pythonPackages.seqdiag; 5073 + seqdiag = with python3Packages; toPythonApplication seqdiag; 5078 5074 5079 5075 screenfetch = callPackage ../tools/misc/screenfetch { }; 5080 5076 ··· 5170 5166 smartmontools = callPackage ../tools/system/smartmontools { 5171 5167 inherit (darwin.apple_sdk.frameworks) IOKit ApplicationServices; 5172 5168 }; 5169 + 5170 + smarty3 = callPackage ../development/libraries/smarty3 { }; 5173 5171 5174 5172 smbldaptools = callPackage ../tools/networking/smbldaptools { 5175 5173 inherit (perlPackages) perlldap CryptSmbHash DigestSHA1; ··· 5452 5450 5453 5451 tiny8086 = callPackage ../applications/virtualization/8086tiny { }; 5454 5452 5453 + tinyproxy = callPackage ../tools/networking/tinyproxy {}; 5454 + 5455 5455 tio = callPackage ../tools/misc/tio { }; 5456 5456 5457 5457 tldr = callPackage ../tools/misc/tldr { }; ··· 10095 10095 10096 10096 libdbiDrivers = callPackage ../development/libraries/libdbi-drivers { }; 10097 10097 10098 + libunity = callPackage ../development/libraries/libunity { 10099 + inherit (gnome3) gnome-common; 10100 + }; 10101 + 10098 10102 libdbusmenu = callPackage ../development/libraries/libdbusmenu { }; 10099 10103 libdbusmenu-gtk2 = libdbusmenu.override { gtkVersion = "2"; }; 10100 10104 libdbusmenu-gtk3 = libdbusmenu.override { gtkVersion = "3"; }; ··· 12719 12723 12720 12724 clamsmtp = callPackage ../servers/mail/clamsmtp { }; 12721 12725 12722 - clickhouse = callPackage ../servers/clickhouse { }; 12726 + clickhouse = callPackage ../servers/clickhouse { 12727 + inherit (llvmPackages_6) clang-unwrapped lld llvm; 12728 + }; 12723 12729 12724 12730 couchdb = callPackage ../servers/http/couchdb { 12725 12731 spidermonkey = spidermonkey_1_8_5; ··· 15027 15033 15028 15034 hasklig = callPackage ../data/fonts/hasklig {}; 15029 15035 15036 + inter-ui = callPackage ../data/fonts/inter-ui { }; 15037 + 15030 15038 siji = callPackage ../data/fonts/siji { }; 15031 15039 15032 15040 sound-theme-freedesktop = callPackage ../data/misc/sound-theme-freedesktop { }; ··· 15202 15210 androidStudioPackages = recurseIntoAttrs 15203 15211 (callPackage ../applications/editors/android-studio { }); 15204 15212 android-studio = androidStudioPackages.stable; 15205 - android-studio-preview = androidStudioPackages.preview; # TODO: Drop old alias after 18.09 15213 + android-studio-preview = androidStudioPackages.beta; 15206 15214 15207 15215 antfs-cli = callPackage ../applications/misc/antfs-cli {}; 15208 15216 ··· 15259 15267 15260 15268 avocode = callPackage ../applications/graphics/avocode {}; 15261 15269 15270 + cadence = libsForQt5.callPackage ../applications/audio/cadence { }; 15271 + 15262 15272 milkytracker = callPackage ../applications/audio/milkytracker { }; 15263 15273 15264 15274 schismtracker = callPackage ../applications/audio/schismtracker { }; ··· 15290 15300 hevm = self.altcoins.hevm; 15291 15301 15292 15302 parity = self.altcoins.parity; 15303 + parity-beta = self.altcoins.parity-beta; 15293 15304 parity-ui = self.altcoins.parity-ui; 15294 15305 15295 15306 stellar-core = self.altcoins.stellar-core; ··· 17875 17886 pinta = callPackage ../applications/graphics/pinta { 17876 17887 gtksharp = gtk-sharp-2_0; 17877 17888 }; 17889 + 17890 + plex-media-player = libsForQt59.callPackage ../applications/video/plex-media-player { }; 17878 17891 17879 17892 plover = recurseIntoAttrs (callPackage ../applications/misc/plover { }); 17880 17893 ··· 17918 17931 python = python3; 17919 17932 }; 17920 17933 17934 + protonmail-bridge = libsForQt5.callPackage ../applications/networking/protonmail-bridge { }; 17935 + 17921 17936 psi = callPackage ../applications/networking/instant-messengers/psi { }; 17922 17937 17923 17938 psi-plus = callPackage ../applications/networking/instant-messengers/psi-plus { }; ··· 18112 18127 realpine = callPackage ../applications/networking/mailreaders/realpine { 18113 18128 tcl = tcl-8_5; 18114 18129 }; 18130 + 18131 + reaper = callPackage ../applications/audio/reaper { }; 18115 18132 18116 18133 recode = callPackage ../tools/text/recode { }; 18117 18134 ··· 18392 18409 inherit (pkgs.vamp) vampSDK; 18393 18410 }; 18394 18411 18395 - soulseekqt = callPackage ../applications/networking/p2p/soulseekqt { }; 18412 + soulseekqt = libsForQt5.callPackage ../applications/networking/p2p/soulseekqt { }; 18396 18413 18397 18414 sox = callPackage ../applications/misc/audio/sox { 18398 18415 enableLame = config.sox.enableLame or false; ··· 18762 18779 inherit (darwin.apple_sdk.frameworks) CoreServices Cocoa Foundation CoreData; 18763 18780 inherit (darwin) libobjc cf-private; 18764 18781 inherit lua; 18782 + guiSupport = "gtk3"; 18765 18783 }); 18766 18784 18767 18785 vimNox = lowPrio (vim_configurable.override { ··· 20455 20473 20456 20474 ### SCIENCE/MATH 20457 20475 20458 - almonds = pythonPackages.callPackage ../applications/science/math/almonds { }; 20476 + almonds = callPackage ../applications/science/math/almonds { }; 20459 20477 20460 20478 arpack = callPackage ../development/libraries/science/math/arpack { }; 20461 20479 ··· 20485 20503 20486 20504 jags = callPackage ../applications/science/math/jags { }; 20487 20505 20506 + libbraiding = callPackage ../development/libraries/science/math/libbraiding { }; 20507 + 20508 + libhomfly = callPackage ../development/libraries/science/math/libhomfly { }; 20488 20509 20489 20510 # We have essentially 4 permutations of liblapack: version 3.4.1 or 3.5.0, 20490 20511 # and with or without atlas as a dependency. The default `liblapack` is 3.4.1 ··· 21549 21570 21550 21571 rss-glx = callPackage ../misc/screensavers/rss-glx { }; 21551 21572 21573 + run-scaled = callPackage ../tools/X11/run-scaled { }; 21574 + 21552 21575 runit = callPackage ../tools/system/runit { }; 21553 21576 21554 21577 refind = callPackage ../tools/bootloaders/refind { }; ··· 21583 21606 21584 21607 mfcl2740dwcupswrapper = callPackage ../misc/cups/drivers/mfcl2740dwcupswrapper { }; 21585 21608 mfcl2740dwlpr = callPackage ../misc/cups/drivers/mfcl2740dwlpr { }; 21609 + 21610 + mfcl8690cdwcupswrapper = callPackage ../misc/cups/drivers/mfcl8690cdwcupswrapper { }; 21611 + mfcl8690cdwlpr = callPackage ../misc/cups/drivers/mfcl8690cdwlpr { }; 21586 21612 21587 21613 samsung-unified-linux-driver_1_00_37 = callPackage ../misc/cups/drivers/samsung { }; 21588 21614 samsung-unified-linux-driver_4_01_17 = callPackage ../misc/cups/drivers/samsung/4.01.17.nix { };
+20
pkgs/top-level/perl-packages.nix
··· 206 206 propagatedBuildInputs = [ Moose Mouse ]; 207 207 }; 208 208 209 + ApacheAuthCookie = buildPerlPackage rec { 210 + name = "Apache-AuthCookie-3.27"; 211 + src = fetchurl { 212 + url = "mirror://cpan/authors/id/M/MS/MSCHOUT/${name}.tar.gz"; 213 + sha256 = "58daeb3e44c681ff88f8fb00e4aabaa7a40cbee73dbdb84fcf6c285b15d357bd"; 214 + }; 215 + buildInputs = [ ApacheTest URI ]; 216 + propagatedBuildInputs = [ ClassLoad HTTPBody HashMultiValue WWWFormUrlEncoded ]; 217 + 218 + # Fails because /etc/protocols is not available in sandbox and make 219 + # getprotobyname('tcp') in ApacheTest fail. 220 + doCheck = !stdenv.isLinux; 221 + 222 + meta = { 223 + homepage = http://search.cpan.org/dist/Apache-AuthCookie/; 224 + description = "Perl Authentication and Authorization via cookies"; 225 + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 226 + }; 227 + }; 228 + 209 229 ApacheLogFormatCompiler = buildPerlModule rec { 210 230 name = "Apache-LogFormat-Compiler-0.35"; 211 231 src = fetchurl {
+7
pkgs/top-level/php-packages.nix
··· 160 160 buildInputs = with pkgs; [ cyrus_sasl zlib ]; 161 161 }; 162 162 163 + oci8 = buildPecl rec { 164 + name = "oci8-2.1.8"; 165 + sha256 = "1bp6fss2f2qmd5bdk7x22j8vx5qivrdhz4x7csf29vjgj6gvchxy"; 166 + buildInputs = [ pkgs.re2c pkgs.oracle-instantclient ]; 167 + configureFlags = [ "--with-oci8=shared,instantclient,${pkgs.oracle-instantclient}/lib" ]; 168 + }; 169 + 163 170 pcs = buildPecl rec { 164 171 name = "pcs-1.3.3"; 165 172
+35 -212
pkgs/top-level/python-packages.nix
··· 69 69 # See build-setupcfg/default.nix for documentation. 70 70 buildSetupcfg = import ../build-support/build-setupcfg self; 71 71 72 - graphiteVersion = "1.0.2"; 73 - 74 72 fetchPypi = makeOverridable( {format ? "setuptools", ... } @attrs: 75 73 let 76 74 fetchWheel = {pname, version, sha256, python ? "py2.py3", abi ? "none", platform ? "any"}: ··· 424 422 }; 425 423 426 424 pykerberos = callPackage ../development/python-modules/pykerberos { }; 427 - 425 + 428 426 pymatgen = callPackage ../development/python-modules/pymatgen { }; 429 427 430 428 pynisher = callPackage ../development/python-modules/pynisher { }; ··· 927 925 928 926 babelfish = callPackage ../development/python-modules/babelfish {}; 929 927 930 - basiciw = buildPythonPackage rec { 931 - name = "${pname}-${version}"; 932 - version = "0.2.2"; 933 - pname = "basiciw"; 934 - disabled = isPy27 || isPyPy; 935 - 936 - src = pkgs.fetchurl { 937 - url = "mirror://pypi/b/${pname}/${name}.tar.gz"; 938 - sha256 = "1ajmflvvlkflrcmqmkrx0zaira84z8kv4ssb2jprfwvjh8vfkysb"; 939 - }; 940 - 941 - buildInputs = [ pkgs.gcc ]; 942 - propagatedBuildInputs = [ pkgs.wirelesstools ]; 943 - 944 - meta = { 945 - description = "Get info about wireless interfaces using libiw"; 946 - homepage = https://github.com/enkore/basiciw; 947 - platforms = platforms.linux; 948 - license = licenses.gpl2; 949 - }; 928 + basiciw = callPackage ../development/python-modules/basiciw { 929 + inherit (pkgs) gcc wirelesstools; 950 930 }; 951 931 952 932 batinfo = callPackage ../development/python-modules/batinfo {}; ··· 957 937 958 938 beautifulsoup4 = callPackage ../development/python-modules/beautifulsoup4 { }; 959 939 960 - beaker = buildPythonPackage rec { 961 - name = "Beaker-${version}"; 962 - version = "1.8.0"; 963 - 964 - # The pypy release do not contains the tests 965 - src = pkgs.fetchFromGitHub { 966 - owner = "bbangert"; 967 - repo = "beaker"; 968 - rev = "${version}"; 969 - sha256 = "17yfr7a307n8rdl09was4j60xqk2s0hk0hywdkigrpj4qnw0is7g"; 970 - }; 971 - 972 - buildInputs = 973 - [ self.nose 974 - self.mock 975 - self.webtest 976 - ]; 977 - propagatedBuildInputs = [ 978 - self.sqlalchemy 979 - self.pycrypto 980 - ] ++ optionals (isPy27) [ 981 - self.funcsigs 982 - self.pycryptopp 983 - ]; 984 - 985 - meta = { 986 - description = "A Session and Caching library with WSGI Middleware"; 987 - maintainers = with maintainers; [ garbas domenkozar ]; 988 - platforms = platforms.all; 989 - }; 990 - }; 940 + beaker = callPackage ../development/python-modules/beaker { }; 991 941 992 942 betamax = callPackage ../development/python-modules/betamax {}; 993 943 ··· 4782 4732 django_tagging = callPackage ../development/python-modules/django_tagging { }; 4783 4733 4784 4734 django_tagging_0_4_3 = if 4785 - self.django != self.django_1_8 4735 + self.django.version != "1.8.18" 4786 4736 then throw "django_tagging_0_4_3 should be build with django_1_8" 4787 4737 else (callPackage ../development/python-modules/django_tagging {}).overrideAttrs (attrs: rec { 4788 - name = "django-tagging-0.4.3"; 4738 + pname = "django-tagging"; 4739 + version = "0.4.3"; 4789 4740 4790 - src = pkgs.fetchurl { 4791 - url = "mirror://pypi/d/django-tagging/${name}.tar.gz"; 4741 + src = fetchPypi { 4742 + inherit pname version; 4792 4743 sha256 = "0617azpmp6jpg3d88v2ir97qrc9aqcs2s9gyvv9bgf2cp55khxhs"; 4793 4744 }; 4794 4745 propagatedBuildInputs = with self; [ django ]; ··· 6515 6466 license = licenses.bsd2; 6516 6467 }; 6517 6468 }; 6469 + 6470 + imgaug = callPackage ../development/python-modules/imgaug { }; 6518 6471 6519 6472 inflection = callPackage ../development/python-modules/inflection { }; 6520 6473 ··· 12450 12403 }; 12451 12404 }; 12452 12405 12406 + shippai = callPackage ../development/python-modules/shippai {}; 12407 + 12453 12408 simanneal = callPackage ../development/python-modules/simanneal { }; 12454 12409 12455 12410 simplebayes = buildPythonPackage rec { ··· 15401 15356 15402 15357 whichcraft = callPackage ../development/python-modules/whichcraft { }; 15403 15358 15404 - whisper = buildPythonPackage rec { 15405 - name = "whisper-${version}"; 15406 - version = graphiteVersion; 15407 - 15408 - src = pkgs.fetchurl { 15409 - url = "mirror://pypi/w/whisper/${name}.tar.gz"; 15410 - sha256 = "1v1bi3fl1i6p4z4ki692bykrkw6907dn3mfq0151f70lvi3zpns3"; 15411 - }; 15412 - 15413 - # error: invalid command 'test' 15414 - doCheck = false; 15415 - 15416 - meta = { 15417 - homepage = http://graphite.wikidot.com/; 15418 - description = "Fixed size round-robin style database"; 15419 - maintainers = with maintainers; [ rickynils offline ]; 15420 - }; 15421 - }; 15359 + whisper = callPackage ../development/python-modules/whisper { }; 15422 15360 15423 15361 worldengine = buildPythonPackage rec { 15424 15362 name = "worldengine-${version}"; ··· 15468 15406 }; 15469 15407 }; 15470 15408 15471 - carbon = buildPythonPackage rec { 15472 - name = "carbon-${version}"; 15473 - version = graphiteVersion; 15474 - 15475 - disabled = isPy3k; 15476 - 15477 - src = pkgs.fetchurl { 15478 - url = "mirror://pypi/c/carbon/${name}.tar.gz"; 15479 - sha256 = "142smpmgbnjinvfb6s4ijazish4vfgzyd8zcmdkh55y051fkixkn"; 15480 - }; 15481 - 15482 - propagatedBuildInputs = with self; [ whisper txamqp zope_interface twisted ]; 15483 - 15484 - meta = { 15485 - homepage = http://graphite.wikidot.com/; 15486 - description = "Backend data caching and persistence daemon for Graphite"; 15487 - maintainers = with maintainers; [ rickynils offline ]; 15488 - license = licenses.asl20; 15489 - }; 15490 - }; 15491 - 15409 + carbon = callPackage ../development/python-modules/carbon { }; 15492 15410 15493 15411 ujson = buildPythonPackage rec { 15494 15412 name = "ujson-1.35"; ··· 15616 15534 }; 15617 15535 }; 15618 15536 15619 - graphite_web = if 15620 - self.django != self.django_1_8 15621 - || self.django_tagging != self.django_tagging_0_4_3 15622 - then throw "graphite_web should be build with django_1_8 and django_tagging_0_4_3" 15623 - else buildPythonPackage rec { 15624 - name = "graphite-web-${version}"; 15625 - disabled = isPy3k; 15626 - version = graphiteVersion; 15627 - 15628 - src = pkgs.fetchurl rec { 15629 - url = "mirror://pypi/g/graphite-web/${name}.tar.gz"; 15630 - sha256 = "0q8bwlj75jqyzmazfsi5sa26xl58ssa8wdxm2l4j0jqyn8xpfnmc"; 15631 - }; 15632 - 15633 - propagatedBuildInputs = with self; [ 15634 - django django_tagging whisper pycairo cairocffi 15635 - ldap memcached pytz urllib3 scandir 15636 - ]; 15637 - 15638 - postInstall = '' 15639 - wrapProgram $out/bin/run-graphite-devel-server.py \ 15640 - --prefix PATH : ${pkgs.which}/bin 15641 - ''; 15642 - 15643 - preConfigure = '' 15644 - # graphite is configured by storing a local_settings.py file inside the 15645 - # graphite python package. Since that package is stored in the immutable 15646 - # Nix store we can't modify it. So how do we configure graphite? 15647 - # 15648 - # First of all we rename "graphite.local_settings" to 15649 - # "graphite_local_settings" so that the settings are not looked up in the 15650 - # graphite package anymore. Secondly we place a directory containing a 15651 - # graphite_local_settings.py on the PYTHONPATH in the graphite module 15652 - # <nixpkgs/nixos/modules/services/monitoring/graphite.nix>. 15653 - substituteInPlace webapp/graphite/settings.py \ 15654 - --replace "graphite.local_settings" " graphite_local_settings" 15655 - 15656 - substituteInPlace webapp/graphite/settings.py \ 15657 - --replace "join(WEBAPP_DIR, 'content')" "join('$out', 'webapp', 'content')" 15658 - ''; 15659 - 15660 - # error: invalid command 'test' 15661 - doCheck = false; 15662 - 15663 - meta = { 15664 - homepage = http://graphite.wikidot.com/; 15665 - description = "Enterprise scalable realtime graphing"; 15666 - maintainers = with maintainers; [ rickynils offline ]; 15667 - }; 15668 - }; 15537 + graphite-web = callPackage ../development/python-modules/graphite-web { }; 15669 15538 15670 15539 graphite_api = callPackage ../development/python-modules/graphite-api { }; 15671 15540 15672 - graphite_beacon = buildPythonPackage rec { 15673 - name = "graphite_beacon-0.27.0"; 15541 + graphite_beacon = callPackage ../development/python-modules/graphite_beacon { }; 15674 15542 15675 - src = pkgs.fetchurl { 15676 - url = "mirror://pypi/g/graphite_beacon/${name}.tar.gz"; 15677 - sha256 = "03bp4wyfn3xhcqyvs5hnk1n87m4smsmm1p7qp459m7j8hwpbq2ks"; 15678 - }; 15543 + influxgraph = callPackage ../development/python-modules/influxgraph { }; 15679 15544 15680 - propagatedBuildInputs = [ self.tornado self.pyyaml self.funcparserlib ]; 15681 - 15682 - preBuild = "> requirements.txt"; 15683 - 15684 - meta = { 15685 - description = "A simple alerting application for Graphite metrics"; 15686 - homepage = https://github.com/klen/graphite-beacon; 15687 - maintainers = [ maintainers.offline ]; 15688 - license = licenses.mit; 15689 - }; 15690 - }; 15691 - 15692 - graphite_influxdb = buildPythonPackage rec { 15693 - name = "graphite-influxdb-0.3"; 15694 - 15695 - src = pkgs.fetchgit { 15696 - url = "https://github.com/vimeo/graphite-influxdb.git"; 15697 - rev = "2273d12a24e1d804685a36debfd4224b7416b62f"; 15698 - sha256 = "1v00fgrnmsd9c0ahggyw9sia5m7dyzz16i5pa4vy6w2sbfyrmm4v"; 15699 - }; 15700 - 15701 - propagatedBuildInputs = with self; [ influxdb graphite_api ]; 15702 - 15703 - passthru.moduleName = "graphite_influxdb.InfluxdbFinder"; 15704 - 15705 - meta = { 15706 - description = "An influxdb backend for Graphite-web and graphite-api"; 15707 - homepage = https://github.com/vimeo/graphite-influxdb; 15708 - license = licenses.asl20; 15709 - }; 15710 - }; 15711 - 15712 - graphite_pager = buildPythonPackage rec { 15713 - name = "graphite-pager-${version}"; 15714 - version = "2bbfe91220ec1e0ca1cdf4b5564386482a44ed7d"; 15715 - 15716 - src = pkgs.fetchgit { 15717 - url = "https://github.com/offlinehacker/graphite-pager.git"; 15718 - sha256 = "0ylal0vkc2yrjvssfz1gls84yk9vkvvkx3pyv4lx15jm2qqzdmxd"; 15719 - rev = version; 15720 - }; 15721 - 15722 - buildInputs = with self; [ nose mock ]; 15723 - propagatedBuildInputs = with self; [ 15724 - jinja2 pyyaml redis requests pagerduty 15725 - python-simple-hipchat pushbullet 15726 - ]; 15727 - 15728 - patchPhase = "> requirements.txt"; 15729 - checkPhase = "nosetests"; 15730 - 15731 - meta = { 15732 - description = "A simple alerting application for Graphite metrics"; 15733 - homepage = https://github.com/seatgeek/graphite-pager; 15734 - maintainers = with maintainers; [ offline ]; 15735 - license = licenses.bsd2; 15736 - }; 15737 - }; 15738 - 15545 + graphitepager = callPackage ../development/python-modules/graphitepager { }; 15739 15546 15740 15547 pyspotify = buildPythonPackage rec { 15741 15548 name = "pyspotify-${version}"; ··· 17090 16897 17091 16898 Keras = callPackage ../development/python-modules/keras { }; 17092 16899 16900 + keras-applications = callPackage ../development/python-modules/keras-applications { }; 16901 + 16902 + keras-preprocessing = callPackage ../development/python-modules/keras-preprocessing { }; 16903 + 17093 16904 Lasagne = buildPythonPackage rec { 17094 16905 name = "Lasagne-${version}"; 17095 16906 version = "0.1"; ··· 17743 17554 })).python; 17744 17555 17745 17556 rfc7464 = callPackage ../development/python-modules/rfc7464 { }; 17557 + 17558 + foundationdb51 = (toPythonModule (pkgs.fdbPackages.override { 17559 + inherit python; 17560 + }).foundationdb51).python; 17561 + 17562 + foundationdb52 = (toPythonModule (pkgs.fdbPackages.override { 17563 + inherit python; 17564 + }).foundationdb52).python; 17565 + 17566 + foundationdb60 = (toPythonModule (pkgs.fdbPackages.override { 17567 + inherit python; 17568 + }).foundationdb60).python; 17746 17569 }); 17747 17570 17748 17571 in fix' (extends overrides packages)