Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Merge master into staging

+4426 -1936
-3
.github/FUNDING.yml
··· 1 - # These are supported funding model platforms 2 - 3 - open_collective: nixos
+32 -19
doc/package-specific-user-notes.xml
··· 409 409 </section> 410 410 411 411 <section xml:id="sec-citrix"> 412 - <title>Citrix Receiver</title> 412 + <title>Citrix Receiver &amp; Citrix Workspace App</title> 413 413 414 414 <para> 415 - The <link xlink:href="https://www.citrix.com/products/receiver/">Citrix 416 - Receiver</link> is a remote desktop viewer which provides access to 415 + <note> 416 + <para> 417 + Please note that the <literal>citrix_receiver</literal> package has been deprecated since its 418 + development was <link xlink:href="https://docs.citrix.com/en-us/citrix-workspace-app.html">discontinued by upstream</link> 419 + and will be replaced by <link xlink:href="https://www.citrix.com/products/workspace-app/">the citrix workspace app</link>. 420 + </para> 421 + </note> 422 + <link xlink:href="https://www.citrix.com/products/receiver/">Citrix Receiver</link> and 423 + <link xlink:href="https://www.citrix.com/products/workspace-app/">Citrix Workspace App</link> 424 + are a remote desktop viewers which provide access to 417 425 <link xlink:href="https://www.citrix.com/products/xenapp-xendesktop/">XenDesktop</link> 418 426 installations. 419 427 </para> ··· 423 431 424 432 <para> 425 433 The tarball archive needs to be downloaded manually as the license 426 - agreements of the vendor need to be accepted first. This is available at 427 - the 428 - <link xlink:href="https://www.citrix.com/downloads/citrix-receiver/">download 429 - page at citrix.com</link>. Then run <literal>nix-prefetch-url 430 - file://$PWD/linuxx64-$version.tar.gz</literal>. With the archive available 434 + agreements of the vendor for 435 + <link xlink:href="https://www.citrix.com/downloads/citrix-receiver/">Citrix Receiver</link> 436 + or <link xlink:href="https://www.citrix.de/downloads/workspace-app/linux/workspace-app-for-linux-latest.html">Citrix Workspace</link> 437 + need to be accepted first. 438 + Then run <command>nix-prefetch-url file://$PWD/linuxx64-$version.tar.gz</command>. 439 + With the archive available 431 440 in the store the package can be built and installed with Nix. 432 441 </para> 433 442 434 - <para> 435 - <emphasis>Note: it's recommended to install <literal>Citrix 436 - Receiver</literal> using <literal>nix-env -i</literal> or globally to 437 - ensure that the <literal>.desktop</literal> files are installed properly 438 - into <literal>$XDG_CONFIG_DIRS</literal>. Otherwise it won't be possible to 439 - open <literal>.ica</literal> files automatically from the browser to start 440 - a Citrix connection.</emphasis> 441 - </para> 443 + <warning> 444 + <title>Caution with <command>nix-shell</command> installs</title> 445 + <para> 446 + It's recommended to install <literal>Citrix Receiver</literal> 447 + and/or <literal>Citrix Workspace</literal> using 448 + <literal>nix-env -i</literal> or globally to 449 + ensure that the <literal>.desktop</literal> files are installed properly 450 + into <literal>$XDG_CONFIG_DIRS</literal>. Otherwise it won't be possible to 451 + open <literal>.ica</literal> files automatically from the browser to start 452 + a Citrix connection. 453 + </para> 454 + </warning> 442 455 </section> 443 456 444 457 <section xml:id="sec-citrix-custom-certs"> 445 458 <title>Custom certificates</title> 446 459 447 460 <para> 448 - The <literal>Citrix Receiver</literal> in <literal>nixpkgs</literal> trusts 449 - several certificates 461 + The <literal>Citrix Receiver</literal> and <literal>Citrix Workspace App</literal> 462 + in <literal>nixpkgs</literal> trust several certificates 450 463 <link xlink:href="https://curl.haxx.se/docs/caextract.html">from the 451 464 Mozilla database</link> by default. However several companies using Citrix 452 465 might require their own corporate certificate. On distros with imperative ··· 459 472 <programlisting> 460 473 <![CDATA[with import <nixpkgs> { config.allowUnfree = true; }; 461 474 let extraCerts = [ ./custom-cert-1.pem ./custom-cert-2.pem /* ... */ ]; in 462 - citrix_receiver.override { 475 + citrix_workspace.override { # the same applies for `citrix_receiver` if used. 463 476 inherit extraCerts; 464 477 }]]> 465 478 </programlisting>
+42
maintainers/maintainer-list.nix
··· 333 333 github = "andersk"; 334 334 name = "Anders Kaseorg"; 335 335 }; 336 + anderslundstedt = { 337 + email = "git@anderslundstedt.se"; 338 + github = "anderslundstedt"; 339 + name = "Anders Lundstedt"; 340 + }; 336 341 AndersonTorres = { 337 342 email = "torres.anderson.85@protonmail.com"; 338 343 github = "AndersonTorres"; ··· 1147 1152 email = "oliver@codersoffortune.net"; 1148 1153 github = "cwoac"; 1149 1154 name = "Oliver Matthews"; 1155 + }; 1156 + cypherpunk2140 = { 1157 + email = "stefan.mihaila@pm.me"; 1158 + github = "cypherpunk2140"; 1159 + name = "Ștefan D. Mihăilă"; 1160 + keys = [ 1161 + { longkeyid = "rsa4096/6E68A39BF16A3ECB"; 1162 + fingerprint = "CBC9 C7CC 51F0 4A61 3901 C723 6E68 A39B F16A 3ECB"; 1163 + } 1164 + { longkeyid = "rsa4096/6220AD7846220A52"; 1165 + fingerprint = "7EAB 1447 5BBA 7DDE 7092 7276 6220 AD78 4622 0A52"; 1166 + } 1167 + ]; 1150 1168 }; 1151 1169 dalance = { 1152 1170 email = "dalance@gmail.com"; ··· 2119 2137 github = "henrytill"; 2120 2138 name = "Henry Till"; 2121 2139 }; 2140 + herberteuler = { 2141 + email = "herberteuler@gmail.com"; 2142 + github = "herberteuler"; 2143 + name = "Guanpeng Xu"; 2144 + }; 2122 2145 hhm = { 2123 2146 email = "heehooman+nixpkgs@gmail.com"; 2124 2147 github = "hhm0"; ··· 2284 2307 email = "jhyphenkeck@gmail.com"; 2285 2308 github = "j-keck"; 2286 2309 name = "Jürgen Keck"; 2310 + }; 2311 + j03 = { 2312 + email = "github@johannesloetzsch.de"; 2313 + github = "johannesloetzsch"; 2314 + name = "Johannes Lötzsch"; 2287 2315 }; 2288 2316 jagajaga = { 2289 2317 email = "ars.seroka@gmail.com"; ··· 2573 2601 github = "jraygauthier"; 2574 2602 name = "Raymond Gauthier"; 2575 2603 }; 2604 + jtobin = { 2605 + email = "jared@jtobin.io"; 2606 + github = "jtobin"; 2607 + name = "Jared Tobin"; 2608 + }; 2576 2609 jtojnar = { 2577 2610 email = "jtojnar@gmail.com"; 2578 2611 github = "jtojnar"; ··· 2940 2973 email = "linusarver@gmail.com"; 2941 2974 github = "listx"; 2942 2975 name = "Linus Arver"; 2976 + }; 2977 + livnev = { 2978 + email = "lev@liv.nev.org.uk"; 2979 + github = "livnev"; 2980 + name = "Lev Livnev"; 2981 + keys = [{ 2982 + longkeyid = "rsa2048/0x68FF81E6A7850F49"; 2983 + fingerprint = "74F5 E5CC 19D3 B5CB 608F 6124 68FF 81E6 A785 0F49"; 2984 + }]; 2943 2985 }; 2944 2986 luis = { 2945 2987 email = "luis.nixos@gmail.com";
+30 -3
nixos/doc/manual/release-notes/rl-1909.xml
··· 149 149 </listitem> 150 150 <listitem> 151 151 <para> 152 - Several of the apache subservices have been replaced with full NixOS 153 - modules including LimeSurvey, WordPress, and Zabbix. 154 - These modules can be enabled using the <option>services.limesurvey.enable</option>, 152 + The httpd service no longer attempts to start the postgresql service. If you have come to depend 153 + on this behaviour then you can preserve the behavior with the following configuration: 154 + <literal>systemd.services.httpd.after = [ "postgresql.service" ];</literal> 155 + </para> 156 + <para> 157 + The option <option>services.httpd.extraSubservices</option> has been 158 + marked as deprecated. You may still use this feature, but it will be 159 + removed in a future release of NixOS. You are encouraged to convert any 160 + httpd subservices you may have written to a full NixOS module. 161 + </para> 162 + <para> 163 + Most of the httpd subservices packaged with NixOS have been replaced with 164 + full NixOS modules including LimeSurvey, WordPress, and Zabbix. These 165 + modules can be enabled using the <option>services.limesurvey.enable</option>, 155 166 <option>services.wordpress.enable</option>, and <option>services.zabbixWeb.enable</option> options. 156 167 </para> 157 168 </listitem> ··· 193 204 <para> 194 205 The setopt declarations will be evaluated at the end of <literal>/etc/zshrc</literal>, so any code in <xref linkend="opt-programs.zsh.interactiveShellInit" />, 195 206 <xref linkend="opt-programs.zsh.loginShellInit" /> and <xref linkend="opt-programs.zsh.promptInit" /> may break if it relies on those options being set. 207 + </para> 208 + </listitem> 209 + <listitem> 210 + <para> 211 + The <literal>prometheus-nginx-exporter</literal> package now uses the offical exporter provided by NGINX Inc. 212 + Its metrics are differently structured and are incompatible to the old ones. For information about the metrics, 213 + have a look at the <link xlink:href="https://github.com/nginxinc/nginx-prometheus-exporter">official repo</link>. 196 214 </para> 197 215 </listitem> 198 216 </itemizedlist> ··· 345 363 <listitem> 346 364 <para> 347 365 The <literal>tomcat-connector</literal> <literal>httpd.extraSubservice</literal> has been removed from nixpkgs. 366 + </para> 367 + </listitem> 368 + <listitem> 369 + <para> 370 + It's now possible to change configuration in 371 + <link linkend="opt-services.nextcloud.enable">services.nextcloud</link> after the initial deploy 372 + since all config parameters are persisted in an additional config file generated by the module. 373 + Previously core configuration like database parameters were set using their imperative 374 + installer after creating <literal>/var/lib/nextcloud</literal>. 348 375 </para> 349 376 </listitem> 350 377 </itemizedlist>
+1 -1
nixos/modules/config/no-x-libs.nix
··· 34 34 networkmanager-openvpn = super.networkmanager-openvpn.override { withGnome = false; }; 35 35 networkmanager-vpnc = super.networkmanager-vpnc.override { withGnome = false; }; 36 36 networkmanager-iodine = super.networkmanager-iodine.override { withGnome = false; }; 37 - pinentry = super.pinentry.override { gtk2 = null; gcr = null; qt = null; }; 37 + pinentry = super.pinentry.override { gtk2 = null; gcr = null; qt4 = null; qt5 = null; }; 38 38 gobject-introspection = super.gobject-introspection.override { x11Support = false; }; 39 39 })); 40 40 };
+3
nixos/modules/module-list.nix
··· 198 198 ./services/audio/slimserver.nix 199 199 ./services/audio/snapserver.nix 200 200 ./services/audio/squeezelite.nix 201 + ./services/audio/spotifyd.nix 201 202 ./services/audio/ympd.nix 202 203 ./services/backup/automysqlbackup.nix 203 204 ./services/backup/bacula.nix ··· 422 423 ./services/misc/gollum.nix 423 424 ./services/misc/gpsd.nix 424 425 ./services/misc/headphones.nix 426 + ./services/misc/greenclip.nix 425 427 ./services/misc/home-assistant.nix 426 428 ./services/misc/ihaskell.nix 427 429 ./services/misc/irkerd.nix ··· 691 693 ./services/networking/tcpcrypt.nix 692 694 ./services/networking/teamspeak3.nix 693 695 ./services/networking/tedicross.nix 696 + ./services/networking/thelounge.nix 694 697 ./services/networking/tinc.nix 695 698 ./services/networking/tinydns.nix 696 699 ./services/networking/tftpd.nix
+42
nixos/modules/services/audio/spotifyd.nix
··· 1 + { config, lib, pkgs, ... }: 2 + 3 + with lib; 4 + 5 + let 6 + cfg = config.services.spotifyd; 7 + spotifydConf = pkgs.writeText "spotifyd.conf" cfg.config; 8 + in 9 + { 10 + options = { 11 + services.spotifyd = { 12 + enable = mkEnableOption "spotifyd, a Spotify playing daemon"; 13 + 14 + config = mkOption { 15 + default = ""; 16 + type = types.lines; 17 + description = '' 18 + Configuration for Spotifyd. For syntax and directives, see 19 + https://github.com/Spotifyd/spotifyd#Configuration. 20 + ''; 21 + }; 22 + }; 23 + }; 24 + 25 + config = mkIf cfg.enable { 26 + systemd.services.spotifyd = { 27 + wantedBy = [ "multi-user.target" ]; 28 + after = [ "network-online.target" "sound.target" ]; 29 + description = "spotifyd, a Spotify playing daemon"; 30 + serviceConfig = { 31 + ExecStart = "${pkgs.spotifyd}/bin/spotifyd --no-daemon --cache_path /var/cache/spotifyd --config ${spotifydConf}"; 32 + Restart = "always"; 33 + RestartSec = 12; 34 + DynamicUser = true; 35 + CacheDirectory = "spotifyd"; 36 + SupplementaryGroups = ["audio"]; 37 + }; 38 + }; 39 + }; 40 + 41 + meta.maintainers = [ maintainers.anderslundstedt ]; 42 + }
+1 -1
nixos/modules/services/databases/postgresql.xml
··· 52 52 53 53 <para> 54 54 By default, PostgreSQL stores its databases in 55 - <filename>/var/db/postgresql</filename>. You can override this using 55 + <filename>/var/lib/postgresql/$psqlSchema</filename>. You can override this using 56 56 <xref linkend="opt-services.postgresql.dataDir"/>, e.g. 57 57 <programlisting> 58 58 <xref linkend="opt-services.postgresql.dataDir"/> = "/data/postgresql";
+1
nixos/modules/services/misc/gitlab.nix
··· 585 585 after = [ "network.target" ]; 586 586 wantedBy = [ "multi-user.target" ]; 587 587 path = with pkgs; [ 588 + exiftool 588 589 gitAndTools.git 589 590 gnutar 590 591 gzip
+31
nixos/modules/services/misc/greenclip.nix
··· 1 + { config, lib, pkgs, ... }: 2 + 3 + with lib; 4 + 5 + let 6 + cfg = config.services.greenclip; 7 + in { 8 + 9 + options.services.greenclip = { 10 + enable = mkEnableOption "Greenclip daemon"; 11 + 12 + package = mkOption { 13 + type = types.package; 14 + default = pkgs.haskellPackages.greenclip; 15 + defaultText = "pkgs.haskellPackages.greenclip"; 16 + description = "greenclip derivation to use."; 17 + }; 18 + }; 19 + 20 + config = mkIf cfg.enable { 21 + systemd.user.services.greenclip = { 22 + enable = true; 23 + description = "greenclip daemon"; 24 + wantedBy = [ "graphical-session.target" ]; 25 + after = [ "graphical-session.target" ]; 26 + serviceConfig.ExecStart = "${cfg.package}/bin/greenclip daemon"; 27 + }; 28 + 29 + environment.systemPackages = [ cfg.package ]; 30 + }; 31 + }
+32 -24
nixos/modules/services/monitoring/prometheus/exporters.nix
··· 1 - { config, pkgs, lib, ... }: 2 - 3 - with lib; 1 + { config, pkgs, lib, options, ... }: 4 2 5 3 let 4 + inherit (lib) concatStrings foldl foldl' genAttrs literalExample maintainers 5 + mapAttrsToList mkDefault mkEnableOption mkIf mkMerge mkOption 6 + optional types; 7 + 6 8 cfg = config.services.prometheus.exporters; 7 9 8 10 # each attribute in `exporterOpts` is expected to have specified: ··· 17 19 # Note that `extraOpts` is optional, but a script for the exporter's 18 20 # systemd service must be provided by specifying either 19 21 # `serviceOpts.script` or `serviceOpts.serviceConfig.ExecStart` 20 - exporterOpts = { 21 - blackbox = import ./exporters/blackbox.nix { inherit config lib pkgs; }; 22 - collectd = import ./exporters/collectd.nix { inherit config lib pkgs; }; 23 - dnsmasq = import ./exporters/dnsmasq.nix { inherit config lib pkgs; }; 24 - dovecot = import ./exporters/dovecot.nix { inherit config lib pkgs; }; 25 - fritzbox = import ./exporters/fritzbox.nix { inherit config lib pkgs; }; 26 - json = import ./exporters/json.nix { inherit config lib pkgs; }; 27 - minio = import ./exporters/minio.nix { inherit config lib pkgs; }; 28 - nginx = import ./exporters/nginx.nix { inherit config lib pkgs; }; 29 - node = import ./exporters/node.nix { inherit config lib pkgs; }; 30 - postfix = import ./exporters/postfix.nix { inherit config lib pkgs; }; 31 - snmp = import ./exporters/snmp.nix { inherit config lib pkgs; }; 32 - surfboard = import ./exporters/surfboard.nix { inherit config lib pkgs; }; 33 - tor = import ./exporters/tor.nix { inherit config lib pkgs; }; 34 - unifi = import ./exporters/unifi.nix { inherit config lib pkgs; }; 35 - varnish = import ./exporters/varnish.nix { inherit config lib pkgs; }; 36 - bind = import ./exporters/bind.nix { inherit config lib pkgs; }; 37 - wireguard = import ./exporters/wireguard.nix { inherit config lib pkgs; }; 38 - }; 22 + 23 + exporterOpts = genAttrs [ 24 + "bind" 25 + "blackbox" 26 + "collectd" 27 + "dnsmasq" 28 + "dovecot" 29 + "fritzbox" 30 + "json" 31 + "minio" 32 + "nginx" 33 + "node" 34 + "postfix" 35 + "snmp" 36 + "surfboard" 37 + "tor" 38 + "unifi" 39 + "varnish" 40 + "wireguard" 41 + ] (name: 42 + import (./. + "/exporters/${name}.nix") { inherit config lib pkgs options; } 43 + ); 39 44 40 45 mkExporterOpts = ({ name, port }: { 41 46 enable = mkEnableOption "the prometheus ${name} exporter"; ··· 97 102 }; 98 103 }); 99 104 100 - mkSubModule = { name, port, extraOpts, ... }: { 105 + mkSubModule = { name, port, extraOpts, imports }: { 101 106 ${name} = mkOption { 102 107 type = types.submodule { 108 + inherit imports; 103 109 options = (mkExporterOpts { 104 110 inherit name port; 105 111 } // extraOpts); ··· 112 118 mkSubModules = (foldl' (a: b: a//b) {} 113 119 (mapAttrsToList (name: opts: mkSubModule { 114 120 inherit name; 115 - inherit (opts) port serviceOpts; 121 + inherit (opts) port; 116 122 extraOpts = opts.extraOpts or {}; 123 + imports = opts.imports or []; 117 124 }) exporterOpts) 118 125 ); 119 126 120 127 mkExporterConf = { name, conf, serviceOpts }: 121 128 mkIf conf.enable { 129 + warnings = conf.warnings or []; 122 130 networking.firewall.extraCommands = mkIf conf.openFirewall (concatStrings [ 123 131 "ip46tables -A nixos-fw ${conf.firewallFilter} " 124 132 "-m comment --comment ${name}-exporter -j nixos-fw-accept"
+40 -2
nixos/modules/services/monitoring/prometheus/exporters.xml
··· 17 17 exporter</link>, it provides hardware and OS metrics from the host it's 18 18 running on. The exporter could be configured as follows: 19 19 <programlisting> 20 - services.promtheus.exporters.node = { 20 + services.prometheus.exporters.node = { 21 21 enable = true; 22 22 enabledCollectors = [ 23 23 "logind" ··· 113 113 specific options and configuration: 114 114 <programlisting> 115 115 # nixpgs/nixos/modules/services/prometheus/exporters/postfix.nix 116 - { config, lib, pkgs }: 116 + { config, lib, pkgs, options }: 117 117 118 118 with lib; 119 119 ··· 184 184 </listitem> 185 185 </itemizedlist> 186 186 </section> 187 + <section xml:id="module-services-prometheus-exporters-update-exporter-module"> 188 + <title>Updating an exporter module</title> 189 + <para> 190 + Should an exporter option change at some point, it is possible to add 191 + information about the change to the exporter definition similar to 192 + <literal>nixpkgs/nixos/modules/rename.nix</literal>: 193 + <programlisting> 194 + { config, lib, pkgs, options }: 195 + 196 + with lib; 197 + 198 + let 199 + cfg = config.services.prometheus.exporters.nginx; 200 + in 201 + { 202 + port = 9113; 203 + extraOpts = { 204 + # additional module options 205 + # ... 206 + }; 207 + serviceOpts = { 208 + # service configuration 209 + # ... 210 + }; 211 + imports = [ 212 + # 'services.prometheus.exporters.nginx.telemetryEndpoint' -> 'services.prometheus.exporters.nginx.telemetryPath' 213 + (mkRenamedOptionModule [ "telemetryEndpoint" ] [ "telemetryPath" ]) 214 + 215 + # removed option 'services.prometheus.exporters.nginx.insecure' 216 + (mkRemovedOptionModule [ "insecure" ] '' 217 + This option was replaced by 'prometheus.exporters.nginx.sslVerify' which defaults to true. 218 + '') 219 + ({ options.warnings = options.warnings; }) 220 + ]; 221 + } 222 + </programlisting> 223 + </para> 224 + </section> 187 225 </chapter>
+1 -1
nixos/modules/services/monitoring/prometheus/exporters/bind.nix
··· 1 - { config, lib, pkgs }: 1 + { config, lib, pkgs, options }: 2 2 3 3 with lib; 4 4
+1 -1
nixos/modules/services/monitoring/prometheus/exporters/blackbox.nix
··· 1 - { config, lib, pkgs }: 1 + { config, lib, pkgs, options }: 2 2 3 3 with lib; 4 4
+1 -1
nixos/modules/services/monitoring/prometheus/exporters/collectd.nix
··· 1 - { config, lib, pkgs }: 1 + { config, lib, pkgs, options }: 2 2 3 3 with lib; 4 4
+1 -1
nixos/modules/services/monitoring/prometheus/exporters/dnsmasq.nix
··· 1 - { config, lib, pkgs }: 1 + { config, lib, pkgs, options }: 2 2 3 3 with lib; 4 4
+1 -1
nixos/modules/services/monitoring/prometheus/exporters/dovecot.nix
··· 1 - { config, lib, pkgs }: 1 + { config, lib, pkgs, options }: 2 2 3 3 with lib; 4 4
+1 -1
nixos/modules/services/monitoring/prometheus/exporters/fritzbox.nix
··· 1 - { config, lib, pkgs }: 1 + { config, lib, pkgs, options }: 2 2 3 3 with lib; 4 4
+1 -1
nixos/modules/services/monitoring/prometheus/exporters/json.nix
··· 1 - { config, lib, pkgs }: 1 + { config, lib, pkgs, options }: 2 2 3 3 with lib; 4 4
+1 -1
nixos/modules/services/monitoring/prometheus/exporters/minio.nix
··· 1 - { config, lib, pkgs }: 1 + { config, lib, pkgs, options }: 2 2 3 3 with lib; 4 4
+17 -9
nixos/modules/services/monitoring/prometheus/exporters/nginx.nix
··· 1 - { config, lib, pkgs }: 1 + { config, lib, pkgs, options }: 2 2 3 3 with lib; 4 4 ··· 16 16 Can be enabled with services.nginx.statusPage = true. 17 17 ''; 18 18 }; 19 - telemetryEndpoint = mkOption { 19 + telemetryPath = mkOption { 20 20 type = types.str; 21 21 default = "/metrics"; 22 22 description = '' 23 23 Path under which to expose metrics. 24 24 ''; 25 25 }; 26 - insecure = mkOption { 26 + sslVerify = mkOption { 27 27 type = types.bool; 28 28 default = true; 29 29 description = '' 30 - Ignore server certificate if using https. 30 + Whether to perform certificate verification for https. 31 31 ''; 32 32 }; 33 + 33 34 }; 34 35 serviceOpts = { 35 36 serviceConfig = { 36 37 DynamicUser = true; 37 38 ExecStart = '' 38 - ${pkgs.prometheus-nginx-exporter}/bin/nginx_exporter \ 39 - --nginx.scrape_uri '${cfg.scrapeUri}' \ 40 - --telemetry.address ${cfg.listenAddress}:${toString cfg.port} \ 41 - --telemetry.endpoint ${cfg.telemetryEndpoint} \ 42 - --insecure ${toString cfg.insecure} \ 39 + ${pkgs.prometheus-nginx-exporter}/bin/nginx-prometheus-exporter \ 40 + --nginx.scrape-uri '${cfg.scrapeUri}' \ 41 + --nginx.ssl-verify ${toString cfg.sslVerify} \ 42 + --web.listen-address ${cfg.listenAddress}:${toString cfg.port} \ 43 + --web.telemetry-path ${cfg.telemetryPath} \ 43 44 ${concatStringsSep " \\\n " cfg.extraFlags} 44 45 ''; 45 46 }; 46 47 }; 48 + imports = [ 49 + (mkRenamedOptionModule [ "telemetryEndpoint" ] [ "telemetryPath" ]) 50 + (mkRemovedOptionModule [ "insecure" ] '' 51 + This option was replaced by 'prometheus.exporters.nginx.sslVerify'. 52 + '') 53 + ({ options.warnings = options.warnings; }) 54 + ]; 47 55 }
+1 -1
nixos/modules/services/monitoring/prometheus/exporters/node.nix
··· 1 - { config, lib, pkgs }: 1 + { config, lib, pkgs, options }: 2 2 3 3 with lib; 4 4
+1 -1
nixos/modules/services/monitoring/prometheus/exporters/postfix.nix
··· 1 - { config, lib, pkgs }: 1 + { config, lib, pkgs, options }: 2 2 3 3 with lib; 4 4
+1 -1
nixos/modules/services/monitoring/prometheus/exporters/snmp.nix
··· 1 - { config, lib, pkgs }: 1 + { config, lib, pkgs, options }: 2 2 3 3 with lib; 4 4
+1 -1
nixos/modules/services/monitoring/prometheus/exporters/surfboard.nix
··· 1 - { config, lib, pkgs }: 1 + { config, lib, pkgs, options }: 2 2 3 3 with lib; 4 4
+1 -1
nixos/modules/services/monitoring/prometheus/exporters/tor.nix
··· 1 - { config, lib, pkgs }: 1 + { config, lib, pkgs, options }: 2 2 3 3 with lib; 4 4
+1 -1
nixos/modules/services/monitoring/prometheus/exporters/unifi.nix
··· 1 - { config, lib, pkgs }: 1 + { config, lib, pkgs, options }: 2 2 3 3 with lib; 4 4
+1 -2
nixos/modules/services/monitoring/prometheus/exporters/varnish.nix
··· 1 - { config, lib, pkgs }: 1 + { config, lib, pkgs, options }: 2 2 3 3 with lib; 4 4 ··· 68 68 serviceOpts = { 69 69 path = [ pkgs.varnish ]; 70 70 serviceConfig = { 71 - DynamicUser = true; 72 71 RestartSec = mkDefault 1; 73 72 ExecStart = '' 74 73 ${pkgs.prometheus-varnish-exporter}/bin/prometheus_varnish_exporter \
+1 -1
nixos/modules/services/monitoring/prometheus/exporters/wireguard.nix
··· 1 - { config, lib, pkgs }: 1 + { config, lib, pkgs, options }: 2 2 3 3 with lib; 4 4
+3 -1
nixos/modules/services/networking/bind.nix
··· 33 33 ${cfg.extraConfig} 34 34 35 35 ${ concatMapStrings 36 - ({ name, file, master ? true, slaves ? [], masters ? [] }: 36 + ({ name, file, master ? true, slaves ? [], masters ? [], extraConfig ? "" }: 37 37 '' 38 38 zone "${name}" { 39 39 type ${if master then "master" else "slave"}; ··· 52 52 '' 53 53 } 54 54 allow-query { any; }; 55 + ${extraConfig} 55 56 }; 56 57 '') 57 58 cfg.zones } ··· 131 132 file = "/var/dns/example.com"; 132 133 masters = ["192.168.0.1"]; 133 134 slaves = []; 135 + extraConfig = ""; 134 136 }]; 135 137 }; 136 138
+4 -10
nixos/modules/services/networking/syncthing.nix
··· 291 291 292 292 group = mkOption { 293 293 type = types.str; 294 - default = "nogroup"; 294 + default = defaultUser; 295 295 description = '' 296 296 Syncthing will be run under this group (group will not be created if it doesn't exist. 297 297 This can be your user name). ··· 403 403 Group = cfg.group; 404 404 ExecStartPre = mkIf (cfg.declarative.cert != null || cfg.declarative.key != null) 405 405 "+${pkgs.writers.writeBash "syncthing-copy-keys" '' 406 - mkdir -p ${cfg.configDir} 407 - chown ${cfg.user}:${cfg.group} ${cfg.configDir} 408 - chmod 700 ${cfg.configDir} 406 + install -dm700 -o ${cfg.user} -g ${cfg.group} ${cfg.configDir} 409 407 ${optionalString (cfg.declarative.cert != null) '' 410 - cp ${toString cfg.declarative.cert} ${cfg.configDir}/cert.pem 411 - chown ${cfg.user}:${cfg.group} ${cfg.configDir}/cert.pem 412 - chmod 400 ${cfg.configDir}/cert.pem 408 + install -Dm400 -o ${cfg.user} -g ${cfg.group} ${toString cfg.declarative.cert} ${cfg.configDir}/cert.pem 413 409 ''} 414 410 ${optionalString (cfg.declarative.key != null) '' 415 - cp ${toString cfg.declarative.key} ${cfg.configDir}/key.pem 416 - chown ${cfg.user}:${cfg.group} ${cfg.configDir}/key.pem 417 - chmod 400 ${cfg.configDir}/key.pem 411 + install -Dm400 -o ${cfg.user} -g ${cfg.group} ${toString cfg.declarative.key} ${cfg.configDir}/key.pem 418 412 ''} 419 413 ''}" 420 414 ;
+75
nixos/modules/services/networking/thelounge.nix
··· 1 + { pkgs, lib, config, ... }: 2 + 3 + with lib; 4 + 5 + let 6 + cfg = config.services.thelounge; 7 + dataDir = "/var/lib/thelounge"; 8 + configJsData = "module.exports = " + builtins.toJSON ( 9 + { private = cfg.private; port = cfg.port; } // cfg.extraConfig 10 + ); 11 + in { 12 + options.services.thelounge = { 13 + enable = mkEnableOption "The Lounge web IRC client"; 14 + 15 + private = mkOption { 16 + type = types.bool; 17 + default = false; 18 + description = '' 19 + Make your The Lounge instance private. You will need to configure user 20 + accounts by using the (<command>thelounge</command>) command or by adding 21 + entries in <filename>${dataDir}/users</filename>. You might need to restart 22 + The Lounge after making changes to the state directory. 23 + ''; 24 + }; 25 + 26 + port = mkOption { 27 + type = types.port; 28 + default = 9000; 29 + description = "TCP port to listen on for http connections."; 30 + }; 31 + 32 + extraConfig = mkOption { 33 + default = {}; 34 + type = types.attrs; 35 + example = literalExample ''{ 36 + reverseProxy = true; 37 + defaults = { 38 + name = "Your Network"; 39 + host = "localhost"; 40 + port = 6697; 41 + }; 42 + }''; 43 + description = '' 44 + The Lounge's <filename>config.js</filename> contents as attribute set (will be 45 + converted to JSON to generate the configuration file). 46 + 47 + The options defined here will be merged to the default configuration file. 48 + Note: In case of duplicate configuration, options from <option>extraConfig</option> have priority. 49 + 50 + Documentation: <link xlink:href="https://thelounge.chat/docs/server/configuration" /> 51 + ''; 52 + }; 53 + }; 54 + 55 + config = mkIf cfg.enable { 56 + users.users.thelounge = { 57 + description = "thelounge service user"; 58 + group = "thelounge"; 59 + }; 60 + users.groups.thelounge = {}; 61 + systemd.services.thelounge = { 62 + description = "The Lounge web IRC client"; 63 + wantedBy = [ "multi-user.target" ]; 64 + environment = { THELOUNGE_HOME = dataDir; }; 65 + preStart = "ln -sf ${pkgs.writeText "config.js" configJsData} ${dataDir}/config.js"; 66 + serviceConfig = { 67 + User = "thelounge"; 68 + StateDirectory = baseNameOf dataDir; 69 + ExecStart = "${pkgs.thelounge}/bin/thelounge start"; 70 + }; 71 + }; 72 + 73 + environment.systemPackages = [ pkgs.thelounge ]; 74 + }; 75 + }
-18
nixos/modules/services/system/nscd.conf
··· 7 7 # is not aware of the path in which the nss modules live. As a workaround, we 8 8 # have `enable-cache yes` with an explicit ttl of 0 9 9 server-user nscd 10 - threads 1 11 - paranoia no 12 - debug-level 0 13 10 14 11 enable-cache passwd yes 15 12 positive-time-to-live passwd 0 16 13 negative-time-to-live passwd 0 17 - suggested-size passwd 211 18 - check-files passwd yes 19 - persistent passwd no 20 14 shared passwd yes 21 15 22 16 enable-cache group yes 23 17 positive-time-to-live group 0 24 18 negative-time-to-live group 0 25 - suggested-size group 211 26 - check-files group yes 27 - persistent group no 28 19 shared group yes 29 20 30 21 enable-cache netgroup yes 31 22 positive-time-to-live netgroup 0 32 23 negative-time-to-live netgroup 0 33 - suggested-size netgroup 211 34 - check-files netgroup yes 35 - persistent netgroup no 36 24 shared netgroup yes 37 25 38 26 enable-cache hosts yes 39 27 positive-time-to-live hosts 600 40 28 negative-time-to-live hosts 0 41 - suggested-size hosts 211 42 - check-files hosts yes 43 - persistent hosts no 44 29 shared hosts yes 45 30 46 31 enable-cache services yes 47 32 positive-time-to-live services 0 48 33 negative-time-to-live services 0 49 - suggested-size services 211 50 - check-files services yes 51 - persistent services no 52 34 shared services yes
+9 -22
nixos/modules/services/system/nscd.nix
··· 39 39 config = mkIf cfg.enable { 40 40 environment.etc."nscd.conf".text = cfg.config; 41 41 42 - users.users.nscd = 43 - { isSystemUser = true; 44 - description = "Name service cache daemon user"; 45 - }; 46 - 47 42 systemd.services.nscd = 48 43 { description = "Name Service Cache Daemon"; 49 44 ··· 51 46 52 47 environment = { LD_LIBRARY_PATH = nssModulesPath; }; 53 48 54 - preStart = 55 - '' 56 - mkdir -m 0755 -p /run/nscd 57 - rm -f /run/nscd/nscd.pid 58 - mkdir -m 0755 -p /var/db/nscd 59 - ''; 60 - 61 49 restartTriggers = [ 62 50 config.environment.etc.hosts.source 63 51 config.environment.etc."nsswitch.conf".source 64 52 config.environment.etc."nscd.conf".source 65 53 ]; 66 54 55 + # We use DynamicUser because in default configurations nscd doesn't 56 + # create any files that need to survive restarts. However, in some 57 + # configurations, nscd needs to be started as root; it will drop 58 + # privileges after all the NSS modules have read their configuration 59 + # files. So prefix the ExecStart command with "!" to prevent systemd 60 + # from dropping privileges early. See ExecStart in systemd.service(5). 67 61 serviceConfig = 68 - { ExecStart = "@${pkgs.glibc.bin}/sbin/nscd nscd"; 62 + { ExecStart = "!@${pkgs.glibc.bin}/sbin/nscd nscd"; 69 63 Type = "forking"; 64 + DynamicUser = true; 65 + RuntimeDirectory = "nscd"; 70 66 PIDFile = "/run/nscd/nscd.pid"; 71 67 Restart = "always"; 72 68 ExecReload = ··· 75 71 "${pkgs.glibc.bin}/sbin/nscd --invalidate hosts" 76 72 ]; 77 73 }; 78 - 79 - # Urgggggh... Nscd forks before opening its socket and writing 80 - # its pid. So wait until it's ready. 81 - postStart = 82 - '' 83 - while ! ${pkgs.glibc.bin}/sbin/nscd -g > /dev/null; do 84 - sleep 0.2 85 - done 86 - ''; 87 74 }; 88 75 89 76 };
+28 -5
nixos/modules/services/web-apps/nextcloud.nix
··· 297 297 298 298 systemd.services = { 299 299 "nextcloud-setup" = let 300 + c = cfg.config; 301 + writePhpArrary = a: "[${concatMapStringsSep "," (val: ''"${toString val}"'') a}]"; 300 302 overrideConfig = pkgs.writeText "nextcloud-config.php" '' 301 303 <?php 304 + ${optionalString (c.dbpassFile != null) '' 305 + function nix_read_pwd() { 306 + $file = "${c.dbpassFile}"; 307 + if (!file_exists($file)) { 308 + throw new \RuntimeException(sprintf( 309 + "Cannot start Nextcloud, dbpass file %s set by NixOS doesn't exist!", 310 + $file 311 + )); 312 + } 313 + 314 + return trim(file_get_contents($file)); 315 + } 316 + ''} 302 317 $CONFIG = [ 303 318 'apps_paths' => [ 304 319 [ 'path' => '${cfg.home}/apps', 'url' => '/apps', 'writable' => false ], ··· 309 324 ${optionalString cfg.caching.apcu "'memcache.local' => '\\OC\\Memcache\\APCu',"} 310 325 'log_type' => 'syslog', 311 326 'log_level' => '${builtins.toString cfg.logLevel}', 312 - ${optionalString (cfg.config.overwriteProtocol != null) "'overwriteprotocol' => '${cfg.config.overwriteProtocol}',"} 327 + ${optionalString (c.overwriteProtocol != null) "'overwriteprotocol' => '${c.overwriteProtocol}',"} 328 + ${optionalString (c.dbname != null) "'dbname' => '${c.dbname}',"} 329 + ${optionalString (c.dbhost != null) "'dbhost' => '${c.dbhost}',"} 330 + ${optionalString (c.dbport != null) "'dbport' => '${toString c.dbport}',"} 331 + ${optionalString (c.dbuser != null) "'dbuser' => '${c.dbuser}',"} 332 + ${optionalString (c.dbtableprefix != null) "'dbtableprefix' => '${toString c.dbtableprefix}',"} 333 + ${optionalString (c.dbpass != null) "'dbpassword' => '${c.dbpass}',"} 334 + ${optionalString (c.dbpassFile != null) "'dbpassword' => nix_read_pwd(),"} 335 + 'dbtype' => '${c.dbtype}', 336 + 'trusted_domains' => ${writePhpArrary ([ cfg.hostName ] ++ c.extraTrustedDomains)}, 313 337 ]; 314 338 ''; 315 339 occInstallCmd = let 316 - c = cfg.config; 317 - adminpass = if c.adminpassFile != null 318 - then ''"$(<"${toString c.adminpassFile}")"'' 319 - else ''"${toString c.adminpass}"''; 320 340 dbpass = if c.dbpassFile != null 321 341 then ''"$(<"${toString c.dbpassFile}")"'' 322 342 else if c.dbpass != null 323 343 then ''"${toString c.dbpass}"'' 324 344 else null; 345 + adminpass = if c.adminpassFile != null 346 + then ''"$(<"${toString c.adminpassFile}")"'' 347 + else ''"${toString c.adminpass}"''; 325 348 installFlags = concatStringsSep " \\\n " 326 349 (mapAttrsToList (k: v: "${k} ${toString v}") { 327 350 "--database" = ''"${c.dbtype}"'';
+30 -34
nixos/modules/services/web-apps/nextcloud.xml
··· 42 42 43 43 services.postgresql = { 44 44 <link linkend="opt-services.postgresql.enable">enable</link> = true; 45 - <link linkend="opt-services.postgresql.initialScript">initialScript</link> = pkgs.writeText "psql-init" '' 46 - CREATE ROLE nextcloud WITH LOGIN; 47 - CREATE DATABASE nextcloud WITH OWNER nextcloud; 48 - ''; 45 + <link linkend="opt-services.postgresql.ensureDatabases">ensureDatabases</link> = [ "nextcloud" ]; 46 + <link linkend="opt-services.postgresql.ensureUsers">ensureUsers</link> = [ 47 + { name = "nextcloud"; 48 + ensurePermissions."DATABASE nextcloud" = "ALL PRIVILEGES"; 49 + } 50 + ]; 49 51 }; 50 52 51 53 # ensure that postgres is running *before* running the setup ··· 63 65 are used internally to configure an HTTP server using 64 66 <literal><link xlink:href="https://php-fpm.org/">PHP-FPM</link></literal> 65 67 and <literal>nginx</literal>. The <literal>config</literal> attribute set is 66 - used for the <literal>config.php</literal> which is used for the 67 - application's configuration. <emphasis>Beware: this isn't entirely pure 68 - since the config is modified by the application's runtime!</emphasis> 68 + used by the imperative installer and all values are written to an additional file 69 + to ensure that changes can be applied by changing the module's options. 69 70 </para> 70 71 71 72 <para> 72 - In case the application serves multiple hosts (those are checked with 73 + In case the application serves multiple domains (those are checked with 73 74 <literal><link xlink:href="http://php.net/manual/en/reserved.variables.server.php">$_SERVER['HTTP_HOST']</link></literal>) 74 - those can be added using 75 + it's needed to add them to 75 76 <literal><link linkend="opt-services.nextcloud.config.extraTrustedDomains">services.nextcloud.config.extraTrustedDomains</link></literal>. 76 77 </para> 78 + 79 + <para> 80 + Auto updates for Nextcloud apps can be enabled using 81 + <literal><link linkend="opt-services.nextcloud.autoUpdateApps.enable">services.nextcloud.autoUpdateApps</link></literal>. 82 + </para> 83 + 77 84 </section> 78 85 <section xml:id="module-services-nextcloud-pitfalls-during-upgrade"> 79 86 <title>Pitfalls</title> ··· 87 94 </para> 88 95 89 96 <para> 90 - Right now changes to the <literal>services.nextcloud.config</literal> 91 - attribute set won't take effect after the first install (except 92 - <literal><link linkend="opt-services.nextcloud.config.extraTrustedDomains">services.nextcloud.config.extraTrustedDomains</link></literal>) 93 - since the actual configuration file is generated by the NextCloud installer 94 - which also sets up critical parts such as the database structure. 97 + All configuration parameters are also stored in 98 + <literal>/var/lib/nextcloud/config/override.config.php</literal> which is generated by 99 + the module and linked from the store to ensure that all values from <literal>config.php</literal> 100 + can be modified by the module. 101 + However <literal>config.php</literal> manages the application's state and shouldn't be touched 102 + manually because of that. 95 103 </para> 96 104 97 - <para> 98 - <emphasis>Warning: don't delete <literal>config.php</literal>! This file 105 + <warning> 106 + <para>Don't delete <literal>config.php</literal>! This file 99 107 tracks the application's state and a deletion can cause unwanted 100 - side-effects!</emphasis> 101 - </para> 108 + side-effects!</para> 109 + </warning> 102 110 103 - <para> 104 - <emphasis>Warning: don't rerun <literal>nextcloud-occ 111 + <warning> 112 + <para>Don't rerun <literal>nextcloud-occ 105 113 maintenance:install</literal>! This command tries to install the application 106 - and can cause unwanted side-effects!</emphasis> 107 - </para> 108 - 109 - <para> 110 - The issues are known and reported in 111 - <link xlink:href="https://github.com/NixOS/nixpkgs/issues/49783">#49783</link>, 112 - for now it's unfortunately necessary to manually work around these issues. 113 - </para> 114 - 115 - <para> 116 - Right now app installation and configuration is done imperatively in the nextcloud web ui or via the <literal>nextcloud-occ</literal> command line utility. 117 - You can activate auto updates for your apps via 118 - <literal><link linkend="opt-services.nextcloud.autoUpdateApps.enable">services.nextcloud.autoUpdateApps</link></literal>. 119 - </para> 114 + and can cause unwanted side-effects!</para> 115 + </warning> 120 116 </section> 121 117 </chapter>
+5 -6
nixos/modules/services/web-servers/apache-httpd/default.nix
··· 21 21 else [{ip = "*"; port = 80;}]; 22 22 23 23 getListen = cfg: 24 - let list = (lib.optional (cfg.port != 0) {ip = "*"; port = cfg.port;}) ++ cfg.listen; 25 - in if list == [] 26 - then defaultListen cfg 27 - else list; 24 + if cfg.listen == [] 25 + then defaultListen cfg 26 + else cfg.listen; 28 27 29 28 listenToString = l: "${l.ip}:${toString l.port}"; 30 29 ··· 638 637 message = "SSL is enabled for httpd, but sslServerCert and/or sslServerKey haven't been specified."; } 639 638 ]; 640 639 641 - warnings = map (cfg: ''apache-httpd's port option is deprecated. Use listen = [{/*ip = "*"; */ port = ${toString cfg.port};}]; instead'' ) (lib.filter (cfg: cfg.port != 0) allHosts); 640 + warnings = map (cfg: "apache-httpd's extraSubservices option is deprecated. Most existing subservices have been ported to the NixOS module system. Please update your configuration accordingly.") (lib.filter (cfg: cfg.extraSubservices != []) allHosts); 642 641 643 642 users.users = optionalAttrs (mainCfg.user == "wwwrun") (singleton 644 643 { name = "wwwrun"; ··· 672 671 673 672 wantedBy = [ "multi-user.target" ]; 674 673 wants = [ "keys.target" ]; 675 - after = [ "network.target" "fs.target" "postgresql.service" "keys.target" ]; 674 + after = [ "network.target" "fs.target" "keys.target" ]; 676 675 677 676 path = 678 677 [ httpd pkgs.coreutils pkgs.gnugrep ]
-8
nixos/modules/services/web-servers/apache-httpd/per-server-options.nix
··· 24 24 ''; 25 25 }; 26 26 27 - port = mkOption { 28 - type = types.int; 29 - default = 0; 30 - description = '' 31 - Port for the server. Option will be removed, use <option>listen</option> instead. 32 - ''; 33 - }; 34 - 35 27 listen = mkOption { 36 28 type = types.listOf (types.submodule ( 37 29 {
+69 -65
nixos/modules/services/x11/compton.nix
··· 7 7 8 8 cfg = config.services.compton; 9 9 10 - literalAttrs = v: 11 - if isString v then toString v 12 - else if isAttrs v then "{\n" 13 - + concatStringsSep "\n" (mapAttrsToList 14 - (name: value: "${literalAttrs name} = ${literalAttrs value};") 15 - v) 16 - + "\n}" 17 - else generators.toPretty {} v; 10 + pairOf = x: with types; addCheck (listOf x) (y: length y == 2); 18 11 19 12 floatBetween = a: b: with lib; with types; 20 13 addCheck str (x: versionAtLeast x a && versionOlder x b); 21 14 22 - pairOf = x: with types; addCheck (listOf x) (y: length y == 2); 23 - 24 - opacityRules = optionalString (length cfg.opacityRules != 0) 25 - (concatMapStringsSep ",\n" (rule: ''"${rule}"'') cfg.opacityRules); 26 - 27 - configFile = pkgs.writeText "compton.conf" 28 - (optionalString cfg.fade '' 29 - # fading 30 - fading = true; 31 - fade-delta = ${toString cfg.fadeDelta}; 32 - fade-in-step = ${elemAt cfg.fadeSteps 0}; 33 - fade-out-step = ${elemAt cfg.fadeSteps 1}; 34 - fade-exclude = ${toJSON cfg.fadeExclude}; 35 - '' + optionalString cfg.shadow '' 36 - 37 - # shadows 38 - shadow = true; 39 - shadow-offset-x = ${toString (elemAt cfg.shadowOffsets 0)}; 40 - shadow-offset-y = ${toString (elemAt cfg.shadowOffsets 1)}; 41 - shadow-opacity = ${cfg.shadowOpacity}; 42 - shadow-exclude = ${toJSON cfg.shadowExclude}; 43 - '' + '' 44 - 45 - # opacity 46 - active-opacity = ${cfg.activeOpacity}; 47 - inactive-opacity = ${cfg.inactiveOpacity}; 15 + toConf = attrs: concatStringsSep "\n" 16 + (mapAttrsToList 17 + (k: v: let 18 + sep = if isAttrs v then ":" else "="; 19 + # Basically a tinkered lib.generators.mkKeyValueDefault 20 + mkValueString = v: 21 + if isBool v then boolToString v 22 + else if isInt v then toString v 23 + else if isFloat v then toString v 24 + else if isString v then ''"${escape [ ''"'' ] v}"'' 25 + else if isList v then "[ " 26 + + concatMapStringsSep " , " mkValueString v 27 + + " ]" 28 + else if isAttrs v then "{ " 29 + + concatStringsSep " " 30 + (mapAttrsToList 31 + (key: value: "${toString key}=${mkValueString value};") 32 + v) 33 + + " }" 34 + else abort "compton.mkValueString: unexpected type (v = ${v})"; 35 + in "${escape [ sep ] k}${sep}${mkValueString v};") 36 + attrs); 48 37 49 - wintypes: 50 - ${literalAttrs cfg.wintypes}; 51 - 52 - opacity-rule = [ 53 - ${opacityRules} 54 - ]; 55 - 56 - # other options 57 - backend = ${toJSON cfg.backend}; 58 - vsync = ${boolToString cfg.vSync}; 59 - refresh-rate = ${toString cfg.refreshRate}; 60 - '' + cfg.extraOptions); 38 + configFile = pkgs.writeText "compton.conf" (toConf cfg.settings); 61 39 62 40 in { 63 41 ··· 236 214 ''; 237 215 }; 238 216 239 - package = mkOption { 240 - type = types.package; 241 - default = pkgs.compton; 242 - defaultText = "pkgs.compton"; 243 - example = literalExample "pkgs.compton"; 244 - description = '' 245 - Compton derivation to use. 246 - ''; 247 - }; 248 - 249 - extraOptions = mkOption { 250 - type = types.lines; 251 - default = ""; 252 - example = '' 253 - unredir-if-possible = true; 254 - dbe = true; 255 - ''; 217 + settings = let 218 + configTypes = with types; either bool (either int (either float str)); 219 + # types.loaOf converts lists to sets 220 + loaOf = t: with types; either (listOf t) (attrsOf t); 221 + in mkOption { 222 + type = loaOf (types.either configTypes (loaOf (types.either configTypes (loaOf configTypes)))); 223 + default = {}; 256 224 description = '' 257 225 Additional Compton configuration. 258 226 ''; ··· 260 228 }; 261 229 262 230 config = mkIf cfg.enable { 231 + services.compton.settings = let 232 + # Hard conversion to float, literally lib.toInt but toFloat 233 + toFloat = str: let 234 + may_be_float = builtins.fromJSON str; 235 + in if builtins.isFloat may_be_float 236 + then may_be_float 237 + else throw "Could not convert ${str} to float."; 238 + in { 239 + # fading 240 + fading = mkDefault cfg.fade; 241 + fade-delta = mkDefault cfg.fadeDelta; 242 + fade-in-step = mkDefault (toFloat (elemAt cfg.fadeSteps 0)); 243 + fade-out-step = mkDefault (toFloat (elemAt cfg.fadeSteps 1)); 244 + fade-exclude = mkDefault cfg.fadeExclude; 245 + 246 + # shadows 247 + shadow = mkDefault cfg.shadow; 248 + shadow-offset-x = mkDefault (elemAt cfg.shadowOffsets 0); 249 + shadow-offset-y = mkDefault (elemAt cfg.shadowOffsets 1); 250 + shadow-opacity = mkDefault (toFloat cfg.shadowOpacity); 251 + shadow-exclude = mkDefault cfg.shadowExclude; 252 + 253 + # opacity 254 + active-opacity = mkDefault (toFloat cfg.activeOpacity); 255 + inactive-opacity = mkDefault (toFloat cfg.inactiveOpacity); 256 + 257 + wintypes = mkDefault cfg.wintypes; 258 + 259 + opacity-rule = mkDefault cfg.opacityRules; 260 + 261 + # other options 262 + backend = mkDefault cfg.backend; 263 + vsync = mkDefault cfg.vSync; 264 + refresh-rate = mkDefault cfg.refreshRate; 265 + }; 266 + 263 267 systemd.user.services.compton = { 264 268 description = "Compton composite manager"; 265 269 wantedBy = [ "graphical-session.target" ]; ··· 271 275 }; 272 276 273 277 serviceConfig = { 274 - ExecStart = "${cfg.package}/bin/compton --config ${configFile}"; 278 + ExecStart = "${pkgs.compton}/bin/compton --config ${configFile}"; 275 279 RestartSec = 3; 276 280 Restart = "always"; 277 281 }; 278 282 }; 279 283 280 - environment.systemPackages = [ cfg.package ]; 284 + environment.systemPackages = [ pkgs.compton ]; 281 285 }; 282 286 283 287 }
-2
nixos/modules/services/x11/desktop-managers/pantheon.nix
··· 145 145 isSystem = true; 146 146 }; 147 147 148 - xdg.portal.extraPortals = [ pkgs.xdg-desktop-portal-gtk ]; 149 - 150 148 networking.networkmanager.enable = mkDefault true; 151 149 networking.networkmanager.basePackages = 152 150 { inherit (pkgs) networkmanager modemmanager wpa_supplicant;
+10 -5
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 configurationLimit; 25 + configurationLimit = if cfg.configurationLimit == null then 0 else cfg.configurationLimit; 26 + 27 + inherit (cfg) consoleMode; 26 28 27 29 inherit (efi) efiSysMountPoint canTouchEfiVariables; 28 30 ··· 58 60 }; 59 61 60 62 configurationLimit = mkOption { 61 - default = 100; 63 + default = null; 62 64 example = 120; 63 - type = types.int; 65 + type = types.nullOr types.int; 64 66 description = '' 65 - Maximum of configurations in boot menu. Otherwise boot partition could 66 - run out of disk space. 67 + Maximum number of latest generations in the boot menu. 68 + Useful to prevent boot partition running out of disk space. 69 + 70 + <literal>null</literal> means no limit i.e. all generations 71 + that were not garbage collected yet. 67 72 ''; 68 73 }; 69 74
+7 -8
nixos/tests/nextcloud/with-postgresql-and-redis.nix
··· 27 27 dbtype = "pgsql"; 28 28 dbname = "nextcloud"; 29 29 dbuser = "nextcloud"; 30 - dbhost = "localhost"; 31 - dbpassFile = toString (pkgs.writeText "db-pass-file" '' 32 - hunter2 33 - ''); 30 + dbhost = "/run/postgresql"; 34 31 inherit adminuser; 35 32 adminpassFile = toString (pkgs.writeText "admin-pass-file" '' 36 33 ${adminpass} ··· 84 81 85 82 services.postgresql = { 86 83 enable = true; 87 - initialScript = pkgs.writeText "psql-init" '' 88 - create role nextcloud with login password 'hunter2'; 89 - create database nextcloud with owner nextcloud; 90 - ''; 84 + ensureDatabases = [ "nextcloud" ]; 85 + ensureUsers = [ 86 + { name = "nextcloud"; 87 + ensurePermissions."DATABASE nextcloud" = "ALL PRIVILEGES"; 88 + } 89 + ]; 91 90 }; 92 91 }; 93 92 };
+6 -4
nixos/tests/prometheus-exporters.nix
··· 3 3 , pkgs ? import ../.. { inherit system config; } 4 4 }: 5 5 6 - with pkgs.lib; 7 - with import ../lib/testing.nix { inherit system pkgs; }; 6 + let 7 + inherit (import ../lib/testing.nix { inherit system pkgs; }) makeTest; 8 + inherit (pkgs.lib) concatStringsSep maintainers mapAttrs mkMerge 9 + removeSuffix replaceChars singleton splitString; 8 10 9 - let 10 11 escape' = str: replaceChars [''"'' "$" "\n"] [''\\\"'' "\\$" ""] str; 11 12 12 13 /* ··· 73 74 exporterTest = '' 74 75 waitForUnit("prometheus-bind-exporter.service"); 75 76 waitForOpenPort(9119); 76 - succeed("curl -sSf http://localhost:9119/metrics" | grep -q 'bind_query_recursions_total 0'); 77 + succeed("curl -sSf http://localhost:9119/metrics | grep -q 'bind_query_recursions_total 0'"); 77 78 ''; 78 79 }; 79 80 ··· 311 312 }; 312 313 exporterTest = '' 313 314 waitForUnit("prometheus-varnish-exporter.service"); 315 + waitForOpenPort(6081); 314 316 waitForOpenPort(9131); 315 317 succeed("curl -sSf http://localhost:9131/metrics | grep -q 'varnish_up 1'"); 316 318 '';
+2
pkgs/applications/altcoins/default.nix
··· 65 65 }; 66 66 litecoind = litecoin.override { withGui = false; }; 67 67 68 + lnd = callPackage ./lnd.nix { }; 69 + 68 70 masari = callPackage ./masari.nix { boost = boost165; }; 69 71 70 72 memorycoin = callPackage ./memorycoin.nix { boost = boost165; withGui = true; };
+2 -2
pkgs/applications/altcoins/go-ethereum.nix
··· 2 2 3 3 buildGoPackage rec { 4 4 pname = "go-ethereum"; 5 - version = "1.9.0"; 5 + version = "1.9.1"; 6 6 7 7 goPackagePath = "github.com/ethereum/go-ethereum"; 8 8 ··· 17 17 owner = "ethereum"; 18 18 repo = pname; 19 19 rev = "v${version}"; 20 - sha256 = "03gkrvps1syvyjna7769n4j3mlpxcgdj461gzds2l90k02ajvh7x"; 20 + sha256 = "05vnjdjwahdp2j7c6g81jchpdhxmdpbr20mjzpszylp9824v4cba"; 21 21 }; 22 22 23 23 meta = with stdenv.lib; {
+22
pkgs/applications/altcoins/lnd.nix
··· 1 + { buildGoModule, fetchFromGitHub, lib }: 2 + 3 + buildGoModule rec { 4 + pname = "lnd"; 5 + version = "0.7.0-beta"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "lightningnetwork"; 9 + repo = "lnd"; 10 + rev = "v${version}"; 11 + sha256 = "0d6m1vfy33rg6d7qmkpydiypav1girxsnxan9njyjz0vhinmq0sx"; 12 + }; 13 + 14 + modSha256 = "0akxi7xhyz7xx0vc003abidva02sp940cc2gfjg4fmzkc95cajc9"; 15 + 16 + meta = with lib; { 17 + description = "Lightning Network Daemon"; 18 + homepage = "https://github.com/lightningnetwork/lnd"; 19 + license = lib.licenses.mit; 20 + maintainers = with maintainers; [ cypherpunk2140 ]; 21 + }; 22 + }
+16
pkgs/applications/audio/bitwig-studio/bitwig-studio3.nix
··· 1 + { fetchurl, bitwig-studio1, 2 + pulseaudio }: 3 + 4 + bitwig-studio1.overrideAttrs (oldAttrs: rec { 5 + name = "bitwig-studio-${version}"; 6 + version = "3.0"; 7 + 8 + src = fetchurl { 9 + url = "https://downloads.bitwig.com/stable/${version}/bitwig-studio-${version}.deb"; 10 + sha256 = "0p7wi1srfzalb0rl94vqppfbnxdfwqzgg5blkdwkf4sx977aihpv"; 11 + }; 12 + 13 + runtimeDependencies = [ 14 + pulseaudio 15 + ]; 16 + })
+2 -2
pkgs/applications/audio/drumkv1/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "drumkv1-${version}"; 5 - version = "0.9.8"; 5 + version = "0.9.9"; 6 6 7 7 src = fetchurl { 8 8 url = "mirror://sourceforge/drumkv1/${name}.tar.gz"; 9 - sha256 = "010p8nwnmqgj5mw324psig3hxi1g2gylxrigd6sj6sgcpy3kdm23"; 9 + sha256 = "02sa29fdjgwcf7izly685gxvga3bxyyqvskvfiisgm2xg3h9r983"; 10 10 }; 11 11 12 12 buildInputs = [ libjack2 alsaLib libsndfile liblo lv2 qt5.qtbase qt5.qttools ];
+46
pkgs/applications/audio/helio-workstation/default.nix
··· 1 + { stdenv, fetchFromGitHub 2 + , alsaLib, freetype, xorg, curl, libGL, libjack2, gnome3 3 + , pkgconfig, makeWrapper 4 + }: 5 + 6 + stdenv.mkDerivation rec { 7 + pname = "helio-workstation"; 8 + version = "2.2"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "helio-fm"; 12 + repo = pname; 13 + rev = version; 14 + fetchSubmodules = true; 15 + sha256 = "16iwj4mjs1nm8dlk70q97svp3vkcgs7hdj9hfda9h67acn4a8vvk"; 16 + }; 17 + 18 + buildInputs = [ 19 + alsaLib freetype xorg.libX11 xorg.libXext xorg.libXinerama xorg.libXrandr 20 + xorg.libXcursor xorg.libXcomposite curl libGL libjack2 gnome3.zenity 21 + ]; 22 + 23 + nativeBuildInputs = [ pkgconfig makeWrapper ]; 24 + 25 + preBuild = "cd Projects/LinuxMakefile"; 26 + buildFlags = [ "CONFIG=Release64" ]; 27 + 28 + installPhase = '' 29 + mkdir -p $out/bin 30 + install -Dm755 build/Helio $out/bin 31 + wrapProgram $out/bin/Helio --prefix PATH ":" ${gnome3.zenity}/bin 32 + 33 + mkdir -p $out/share 34 + cp -r ../Deployment/Linux/Debian/x64/usr/share/* $out/share 35 + substituteInPlace $out/share/applications/Helio.desktop \ 36 + --replace "/usr/bin/helio" "$out/bin/Helio" 37 + ''; 38 + 39 + meta = with stdenv.lib; { 40 + description = "One music sequencer for all major platforms, both desktop and mobile"; 41 + homepage = https://helio.fm/; 42 + license = licenses.gpl3; 43 + maintainers = [ maintainers.suhr ]; 44 + platforms = [ "x86_64-linux" ]; 45 + }; 46 + }
+52
pkgs/applications/audio/klystrack/default.nix
··· 1 + { stdenv, fetchFromGitHub, fetchpatch 2 + , SDL2, SDL2_image 3 + , pkgconfig 4 + }: 5 + 6 + stdenv.mkDerivation rec { 7 + pname = "klystrack"; 8 + version = "1.7.6"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "kometbomb"; 12 + repo = pname; 13 + rev = version; 14 + fetchSubmodules = true; 15 + sha256 = "1h99sm2ddaq483hhk2s3z4bjbgn0d2h7qna7l7qq98wvhqix8iyz"; 16 + }; 17 + 18 + buildInputs = [ 19 + SDL2 SDL2_image 20 + ]; 21 + nativeBuildInputs = [ pkgconfig ]; 22 + 23 + patches = [ 24 + (fetchpatch { 25 + url = "https://github.com/kometbomb/klystrack/commit/bb537595d02140176831c4a1b8e9121978b32d22.patch"; 26 + sha256 = "06gl9q0jwg039kpxb13lg9x0k59s11968qn4lybgkadvzmhxkgmi"; 27 + }) 28 + ]; 29 + 30 + buildFlags = [ "PREFIX=${placeholder "out"}" "CFG=release" ]; 31 + 32 + installPhase = '' 33 + install -Dm755 bin.release/klystrack $out/bin/klystrack 34 + 35 + mkdir -p $out/lib/klystrack 36 + cp -R res $out/lib/klystrack 37 + cp -R key $out/lib/klystrack 38 + 39 + install -DT icon/256x256.png $out/share/icons/hicolor/256x256/apps/klystrack.png 40 + mkdir -p $out/share/applications 41 + substitute linux/klystrack.desktop $out/share/applications/klystrack.desktop \ 42 + --replace "klystrack %f" "$out/bin/klystrack %f" 43 + ''; 44 + 45 + meta = with stdenv.lib; { 46 + description = "A chiptune tracker"; 47 + homepage = "https://kometbomb.github.io/klystrack"; 48 + license = licenses.mit; 49 + maintainers = with maintainers; [ suhr ]; 50 + platforms = platforms.linux; 51 + }; 52 + }
+2 -2
pkgs/applications/audio/reaper/default.nix
··· 6 6 7 7 stdenv.mkDerivation rec { 8 8 name = "reaper-${version}"; 9 - version = "5.979"; 9 + version = "5.980"; 10 10 11 11 src = fetchurl { 12 12 url = "https://www.reaper.fm/files/${stdenv.lib.versions.major version}.x/reaper${builtins.replaceStrings ["."] [""] version}_linux_x86_64.tar.xz"; 13 - sha256 = "0v9i7wgl68clwlw5k6rwligk3b3bl6c8xxabklglbxnx5i6iw5ia"; 13 + sha256 = "0ij5cx43gf05q0d57p4slsp7wkq2cdb3ymh2n5iqgqjl9rf26h1q"; 14 14 }; 15 15 16 16 nativeBuildInputs = [ autoPatchelfHook makeWrapper ];
+2 -2
pkgs/applications/audio/snd/default.nix
··· 4 4 }: 5 5 6 6 stdenv.mkDerivation rec { 7 - name = "snd-19.4"; 7 + name = "snd-19.5"; 8 8 9 9 src = fetchurl { 10 10 url = "mirror://sourceforge/snd/${name}.tar.gz"; 11 - sha256 = "1g96r1js9rfxxczpaa1ggrz7i1zsj4px4fyz64kbqawzsn9xapg9"; 11 + sha256 = "0sk6iyykwi2mm3f1g4r0iqbsrwk3zmyagp6jjqkh8njbq42cjr1y"; 12 12 }; 13 13 14 14 nativeBuildInputs = [ pkgconfig ];
+40
pkgs/applications/audio/spotifyd/default.nix
··· 1 + { stdenv, fetchFromGitHub, rustPlatform, pkgconfig, openssl 2 + , withALSA ? true, alsaLib ? null 3 + , withPulseAudio ? false, libpulseaudio ? null 4 + , withPortAudio ? false, portaudio ? null 5 + }: 6 + 7 + rustPlatform.buildRustPackage rec { 8 + pname = "spotifyd"; 9 + version = "0.2.11"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "Spotifyd"; 13 + repo = "spotifyd"; 14 + rev = "${version}"; 15 + sha256 = "1iybk9xrrvhrcl2xl5r2xhyn1ydhrgwnnb8ldhsw5c16b32z03q1"; 16 + }; 17 + 18 + cargoSha256 = "0879p1h32259schmy8j3xnwpw3sw80f8mrj8s6b5aihi3yyzz521"; 19 + 20 + cargoBuildFlags = [ 21 + "--no-default-features" 22 + "--features" 23 + "${stdenv.lib.optionalString withALSA "alsa_backend,"}${stdenv.lib.optionalString withPulseAudio "pulseaudio_backend,"}${stdenv.lib.optionalString withPortAudio "portaudio_backend,"}" 24 + ]; 25 + 26 + nativeBuildInputs = [ pkgconfig ]; 27 + 28 + buildInputs = [ openssl ] 29 + ++ stdenv.lib.optional withALSA alsaLib 30 + ++ stdenv.lib.optional withPulseAudio libpulseaudio 31 + ++ stdenv.lib.optional withPortAudio portaudio; 32 + 33 + meta = with stdenv.lib; { 34 + description = "An open source Spotify client running as a UNIX daemon"; 35 + homepage = "https://github.com/Spotifyd/spotifyd"; 36 + license = with licenses; [ gpl3 ]; 37 + maintainers = [ maintainers.anderslundstedt ]; 38 + platforms = platforms.unix; 39 + }; 40 + }
+3
pkgs/applications/audio/tree-from-tags/Gemfile
··· 1 + source "https://rubygems.org" 2 + 3 + gem "taglib-ruby"
+13
pkgs/applications/audio/tree-from-tags/Gemfile.lock
··· 1 + GEM 2 + remote: https://rubygems.org/ 3 + specs: 4 + taglib-ruby (0.7.1) 5 + 6 + PLATFORMS 7 + ruby 8 + 9 + DEPENDENCIES 10 + taglib-ruby 11 + 12 + BUNDLED WITH 13 + 1.16.3
+37
pkgs/applications/audio/tree-from-tags/default.nix
··· 1 + { stdenv, bundlerEnv, ruby, fetchFromGitHub }: 2 + let 3 + version = "1.1"; 4 + gems = bundlerEnv { 5 + name = "tree-from-tags-${version}-gems"; 6 + inherit ruby; 7 + gemdir = ./.; 8 + }; 9 + in stdenv.mkDerivation { 10 + name = "tree-from-tags-${version}"; 11 + src = fetchFromGitHub { 12 + owner = "dbrock"; 13 + repo = "bongo"; 14 + rev = version; 15 + sha256 = "1nszph9mn98flyhn1jq3y6mdh6jymjkvj5ng36ql016dj92apvhv"; 16 + }; 17 + buildInputs = [ gems ruby ]; 18 + installPhase = '' 19 + mkdir -p $out/{bin,share} 20 + cp tree-from-tags.rb $out/share/ 21 + bin=$out/bin/tree-from-tags 22 + # we are using bundle exec to start in the bundled environment 23 + cat > $bin <<EOF 24 + #!/bin/sh -e 25 + exec ${gems}/bin/bundle exec ${ruby}/bin/ruby "$out"/share/tree-from-tags.rb "\$@" 26 + EOF 27 + chmod +x $bin 28 + ''; 29 + 30 + meta = with stdenv.lib; { 31 + description = "Create file hierarchies from media tags"; 32 + homepage = https://www.emacswiki.org/emacs/Bongo; 33 + platforms = ruby.meta.platforms; 34 + maintainers = [ maintainers.livnev maintainers.dbrock ]; 35 + license = licenses.gpl2Plus; 36 + }; 37 + }
+10
pkgs/applications/audio/tree-from-tags/gemset.nix
··· 1 + { 2 + taglib-ruby = { 3 + source = { 4 + remotes = ["https://rubygems.org"]; 5 + sha256 = "0r8g7zdncc6243d000jn0grc1n70rn9mx16vggy3q7c4wgsa37xi"; 6 + type = "gem"; 7 + }; 8 + version = "0.7.1"; 9 + }; 10 + }
+4
pkgs/applications/editors/emacs-modes/melpa-packages.nix
··· 59 59 inherit (self.melpaPackages) easy-kill; 60 60 }; 61 61 62 + editorconfig = super.editorconfig.overrideAttrs (attrs: { 63 + propagatedUserEnvPkgs = [ external.editorconfig-core-c ]; 64 + }); 65 + 62 66 egg = super.egg.overrideAttrs (attrs: { 63 67 # searches for Git at build time 64 68 nativeBuildInputs =
+2 -2
pkgs/applications/graphics/drawio/default.nix
··· 11 11 12 12 stdenv.mkDerivation rec { 13 13 pname = "drawio"; 14 - version = "10.8.0"; 14 + version = "10.9.5"; 15 15 16 16 src = fetchurl { 17 17 url = "https://github.com/jgraph/drawio-desktop/releases/download/v${version}/draw.io-x86_64-${version}.rpm"; 18 - sha256 = "0c5wymzhbp72x0yhvw7vb4akkdvj97npl9kglk79vqjbzfn5di9k"; 18 + sha256 = "13687d5bfxj7wlbh5j13pvxvs69whlg820wllk3pb1xb3syynlpn"; 19 19 }; 20 20 21 21 nativeBuildInputs = [
+2 -2
pkgs/applications/graphics/feh/default.nix
··· 6 6 7 7 stdenv.mkDerivation rec { 8 8 name = "feh-${version}"; 9 - version = "3.2"; 9 + version = "3.2.1"; 10 10 11 11 src = fetchurl { 12 12 url = "https://feh.finalrewind.org/${name}.tar.bz2"; 13 - sha256 = "004vapxpl001yanqvw3cq37fmkdr527jyz0s5nybz1mnl4926660"; 13 + sha256 = "070axq8jpibcabmjfv4fmjmpk3k349vzvh4qhsi4n62bkcwl35wg"; 14 14 }; 15 15 16 16 outputs = [ "out" "man" "doc" ];
+2 -2
pkgs/applications/graphics/pdfcpu/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "pdfcpu"; 5 - version = "0.1.25"; 5 + version = "0.2.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "hhrutter"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "0vmmc7nnvpvsf92yi69rvqif1irkpya2shqyz49sa3s42jh1446b"; 11 + sha256 = "0cg17nph3qv1ca86j3wcd33vqs6clkzi6y2nrajmk7dq5vbzr6nn"; 12 12 }; 13 13 14 14 modSha256 = "0cz4gs88s9z2yv1gc9ap92vv2j93ab6kr25zjgl2r7z6clbl5fzp";
+11 -18
pkgs/applications/misc/barrier/default.nix
··· 1 - { stdenv, fetchpatch, fetchurl, cmake, curl, xorg, avahi, qt5, 1 + { stdenv, fetchFromGitHub, cmake, curl, xorg, avahi, qtbase, mkDerivation, 2 2 avahiWithLibdnssdCompat ? avahi.override { withLibdnssdCompat = true; } 3 3 }: 4 4 5 - stdenv.mkDerivation rec { 6 - name = "barrier-${version}"; 7 - version = "2.1.1"; 8 - src = fetchurl { 9 - url = "https://github.com/debauchee/barrier/archive/v${version}.tar.gz"; 10 - sha256 = "0x17as5ikfx2r5hawr368a9risvcavyc8zv5g724s709nr6m0pbp"; 5 + mkDerivation rec { 6 + pname = "barrier"; 7 + version = "2.3.0"; 8 + 9 + src = fetchFromGitHub { 10 + owner = "debauchee"; 11 + repo = pname; 12 + rev = "v${version}"; 13 + sha256 = "1fy7xjwqyisapf8wv50gwpbgbv5b4ldf7766w453h5iw10d18kh0"; 11 14 }; 12 15 13 - buildInputs = [ cmake curl xorg.libX11 xorg.libXext xorg.libXtst avahiWithLibdnssdCompat ]; 14 - propagatedBuildInputs = with qt5; [ qtbase ]; 15 - 16 - patches = [ 17 - # Fix compilation on Qt 5.11 18 - # Patch should be removed on next version bump from 2.1.1! 19 - (fetchpatch { 20 - url = "https://github.com/debauchee/barrier/commit/a956cad0da23f544b874888c6c3540dc7f8f22cf.patch"; 21 - sha256 = "0x5045bdks1f9casp0v7svx9ml1gxhkhw5sqc7xk36h184m24a21"; 22 - }) 23 - ]; 16 + buildInputs = [ cmake curl xorg.libX11 xorg.libXext xorg.libXtst avahiWithLibdnssdCompat qtbase ]; 24 17 25 18 postFixup = '' 26 19 substituteInPlace "$out/share/applications/barrier.desktop" --replace "Exec=barrier" "Exec=$out/bin/barrier"
+38
pkgs/applications/misc/brewtarget/default.nix
··· 1 + { lib 2 + , mkDerivation 3 + , fetchFromGitHub 4 + , bash 5 + , cmake 6 + , qtbase 7 + , qttools 8 + , qtmultimedia 9 + , qtwebkit 10 + , qtsvg 11 + }: 12 + 13 + mkDerivation rec { 14 + pname = "brewtarget"; 15 + version = "2.3.1"; 16 + 17 + src = fetchFromGitHub { 18 + owner = "Brewtarget"; 19 + repo = pname; 20 + rev = "v${version}"; 21 + sha256 = "14xmm6f8xmvypagx4qdw8q9llzmyi9zzfhnzh4kbbflhjbcr7isz"; 22 + }; 23 + 24 + nativeBuildInputs = [ cmake ]; 25 + buildInputs = [ qtbase qttools qtmultimedia qtwebkit qtsvg ]; 26 + 27 + preConfigure = '' 28 + chmod +x configure 29 + substituteInPlace configure --replace /bin/bash "${bash}/bin/bash" 30 + ''; 31 + 32 + meta = with lib; { 33 + description = "Open source beer recipe creation tool"; 34 + homepage = "http://www.brewtarget.org/"; 35 + license = licenses.gpl3; 36 + maintainers = [ maintainers.mmahut ]; 37 + }; 38 + }
+43
pkgs/applications/misc/kjv/default.nix
··· 1 + { stdenv, fetchFromGitHub, fetchpatch }: 2 + 3 + let 4 + 5 + patch-base = https://github.com/LukeSmithxyz/kjv/commit/; 6 + 7 + add-apocrypha = fetchpatch { 8 + url = patch-base + "b92b7622285d10464f9274f11e740bef90705bbc.patch"; 9 + sha256 = "0n4sj8p9m10fcair4msc129jxkkx5whqzhjbr5k4lfgp6nb1zk8k"; 10 + }; 11 + 12 + add-install-target = fetchpatch { 13 + url = patch-base + "f4ad73539eb73f1890f4b791d8d38dd95900a4a4.patch"; 14 + sha256 = "1yzj72i5fkzn2i4wl09q6jx7nwn2h4jwm49fc23nxfwchzar9m1q"; 15 + }; 16 + 17 + in 18 + 19 + stdenv.mkDerivation rec { 20 + pname = "kjv"; 21 + version = "unstable-2018-12-25"; 22 + 23 + src = fetchFromGitHub { 24 + owner = "bontibon"; 25 + repo = pname; 26 + rev = "fda81a610e4be0e7c5cf242de655868762dda1d4"; 27 + sha256 = "1favfcjvd3pzz1ywwv3pbbxdg7v37s8vplgsz8ag016xqf5ykqqf"; 28 + }; 29 + 30 + patches = [ add-apocrypha add-install-target ]; 31 + 32 + makeFlags = [ 33 + "PREFIX=${placeholder ''out''}" 34 + ]; 35 + 36 + meta = with stdenv.lib; { 37 + description = "The Bible, King James Version"; 38 + homepage = "https://github.com/bontibon/kjv"; 39 + license = licenses.publicDomain; 40 + maintainers = [ maintainers.jtobin ]; 41 + }; 42 + } 43 +
+3 -3
pkgs/applications/misc/rescuetime/default.nix
··· 5 5 if stdenv.hostPlatform.system == "i686-linux" then fetchurl { 6 6 name = "rescuetime-installer.deb"; 7 7 url = "https://www.rescuetime.com/installers/rescuetime_current_i386.deb"; 8 - sha256 = "136ci4q0ns0qzikndlkbab947m47zv2nmnn8mda2374ip43kn6ri"; 8 + sha256 = "03bky9vja7fijz45n44b6gawd6q8yd30nx6nya9lqdlxd1bkqmji"; 9 9 } else fetchurl { 10 10 name = "rescuetime-installer.deb"; 11 11 url = "https://www.rescuetime.com/installers/rescuetime_current_amd64.deb"; 12 - sha256 = "1cw10lr7hrsr9xvq3wv1wkyk7jqsgfnnlkq4km9kxr39f51hv6na"; 12 + sha256 = "03bky9vja7fijz45n44b6gawd6q8yd30nx6nya9lqdlxd1bkqmji"; 13 13 }; 14 14 in stdenv.mkDerivation { 15 15 # https://www.rescuetime.com/updates/linux_release_notes.html 16 - name = "rescuetime-2.14.2.1"; 16 + name = "rescuetime-2.14.3.1"; 17 17 inherit src; 18 18 buildInputs = [ dpkg makeWrapper ]; 19 19 # avoid https://github.com/NixOS/patchelf/issues/99
+1 -1
pkgs/applications/misc/st/xst.nix
··· 9 9 inherit name; 10 10 11 11 src = fetchFromGitHub { 12 - owner = "neeasade"; 12 + owner = "gnotclub"; 13 13 repo = "xst"; 14 14 rev = "v${version}"; 15 15 sha256 = "1fh4y2w0icaij99kihl3w8j5d5b38d72afp17c81pi57f43ss6pc";
+33
pkgs/applications/misc/xygrib/default.nix
··· 1 + { stdenv, fetchFromGitHub, cmake, bzip2, qtbase, qttools, libnova, proj, libpng, openjpeg } : 2 + 3 + stdenv.mkDerivation rec { 4 + version = "1.2.6.1"; 5 + pname = "xygrib"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "opengribs"; 9 + repo = "XyGrib"; 10 + rev = "v${version}"; 11 + sha256 = "0xzsm8pr0zjk3f8j880fg5n82jyxn8xf1330qmmq1fqv7rsrg9ia"; 12 + }; 13 + 14 + nativeBuildInputs = [ cmake qttools ]; 15 + buildInputs = [ bzip2 qtbase libnova proj openjpeg libpng ]; 16 + cmakeFlags = [ "-DOPENJPEG_INCLUDE_DIR=${openjpeg.dev}/include/openjpeg-2.3" ]; 17 + 18 + postInstall = '' 19 + mkdir $out/bin 20 + ln -s $out/XyGrib/XyGrib $out/bin/XyGrib 21 + ''; 22 + 23 + meta = with stdenv.lib; { 24 + homepage = "https://opengribs.org"; 25 + description = "Weather Forecast Visualization"; 26 + longDescription = ''XyGrib is a leading opensource weather visualization package. 27 + It interacts with OpenGribs's Grib server providing a choice 28 + of global and large area atmospheric and wave models.''; 29 + license = licenses.gpl3; 30 + platforms = platforms.all; 31 + maintainers = [ maintainers.j03 ]; 32 + }; 33 + }
+373 -373
pkgs/applications/networking/browsers/firefox-bin/release_sources.nix
··· 1 1 { 2 - version = "68.0"; 2 + version = "68.0.1"; 3 3 sources = [ 4 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/ach/firefox-68.0.tar.bz2"; 4 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/ach/firefox-68.0.1.tar.bz2"; 5 5 locale = "ach"; 6 6 arch = "linux-x86_64"; 7 - sha512 = "d101eef9be53196197eadf6035d09bdce1682f90dc3c740bc87be945790692647f8ca70d9fdeaa7bbaf58a5e5cf44d64138254f5454e4460f69b6288b052ba53"; 7 + sha512 = "afebe9f5723ce941fe5f00a4135ae8efaf9659c6d7645f024d0e971c37ec2ca84193848ebfdd4eb3125784986a4093e86884d88a1b68d5180f6deeef18daa9f3"; 8 8 } 9 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/af/firefox-68.0.tar.bz2"; 9 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/af/firefox-68.0.1.tar.bz2"; 10 10 locale = "af"; 11 11 arch = "linux-x86_64"; 12 - sha512 = "3f3e4728fce97a06e683a6c3642f8a87ce6226d2053c315026d4c8995739d000bc98874a08d2a008751854ec42a1e24ba6cec64e455b354334988f14b31221a3"; 12 + sha512 = "c06bdcb1e67f29005cedfd8255ebe120ac774766ee21acea659752cbc886c014f88caf21e48c2595f69e518fd54c50cca379f46c8b1ba2271bc3ec42b57c2952"; 13 13 } 14 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/an/firefox-68.0.tar.bz2"; 14 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/an/firefox-68.0.1.tar.bz2"; 15 15 locale = "an"; 16 16 arch = "linux-x86_64"; 17 - sha512 = "a763419d711c5985b45c4983249517767da75ae4e866ed7aec05d5762d724fed1f465dd755ae8059953d832bef2098670124745ee54ef02416d919599bcc9826"; 17 + sha512 = "990fc0b0982c5793b7b2f8f95730335091c31c322001302fcbf9a0802425a8e218278c5b65cbc66d1a5078e51a32bde10baeb633c564fa5f639bbd985fb6e441"; 18 18 } 19 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/ar/firefox-68.0.tar.bz2"; 19 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/ar/firefox-68.0.1.tar.bz2"; 20 20 locale = "ar"; 21 21 arch = "linux-x86_64"; 22 - sha512 = "80e2942cc30772b50e13cb3dacff3142cb73b16a67ed5c2dfedcce89c7a82e9e678a858c467dc79e8b5d68c34310532a1a9711d2888777ff7d7a44fca5b55880"; 22 + sha512 = "436134d474b5f76eca8edcd16661ffe6af7e169ea617fef6605a513be628fc662eb5f64c491813a8bd31fdb20b574f5937ad1287a32465b8024e21699845069e"; 23 23 } 24 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/ast/firefox-68.0.tar.bz2"; 24 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/ast/firefox-68.0.1.tar.bz2"; 25 25 locale = "ast"; 26 26 arch = "linux-x86_64"; 27 - sha512 = "0c8648f85936373e0d18f9ca91b2f77976d116f3ef876a857a76ad2c82ac7cb1c021e44b84cfca7cb05993692a89e8cdf624c40ca42028ea7c61b1d134c7d5db"; 27 + sha512 = "ebb609e71fa97a43b55f14af6ab96f757d3d4f8feb27ca36a29f1dbae2a8cad7ff2ec186d715000399b300ef4ac222b339c0935acfb36efa39cff7878150fa71"; 28 28 } 29 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/az/firefox-68.0.tar.bz2"; 29 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/az/firefox-68.0.1.tar.bz2"; 30 30 locale = "az"; 31 31 arch = "linux-x86_64"; 32 - sha512 = "3011e7445fa2b6c5fdbbfb56de6718b601c90d7de004083edcbe29f8aaec0976ffde21351a1444f38a88df4dd8892050d9e3bd5fb578a59d4c84bb88e0b77b67"; 32 + sha512 = "545f0fdc8e872d22dca7dfff9162634d58250f2575c09ee534aa537db02d641cbed2c70b93b06e35677ae061a25518813e69a771fd10f02149df658bdf20835a"; 33 33 } 34 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/be/firefox-68.0.tar.bz2"; 34 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/be/firefox-68.0.1.tar.bz2"; 35 35 locale = "be"; 36 36 arch = "linux-x86_64"; 37 - sha512 = "967dbfff34c92199d00e2f2a5d8270f8d8039527b25c80406db7b647d383f836c8e79e5ac0f86e3055e5386afef7d157b4c88ebf9928745f3b95c8239b374cb4"; 37 + sha512 = "1a6e1130c20af4c72f21ab5fb9cfbf206a20dbbbb3f2a96ffeb2f5c4e755a545eece645f5d022cda6989890715cdd633be14391344ebbcf20d8ae7e6077f8f28"; 38 38 } 39 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/bg/firefox-68.0.tar.bz2"; 39 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/bg/firefox-68.0.1.tar.bz2"; 40 40 locale = "bg"; 41 41 arch = "linux-x86_64"; 42 - sha512 = "401a394d1f9abb91894932ffd31c92280e2a94ec499bb41b851b000b5eaac701c553781b7a520a862037f854ac7323bd554707b304440914d10232e94fec2b63"; 42 + sha512 = "bd2001033e785eccb2fd1007231aa290042a4c8be1a39cf9770545dc8c779f3caaae8f4709f62753c0d7442082592864f2c8077ab9decad1bce9b817631a3e21"; 43 43 } 44 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/bn/firefox-68.0.tar.bz2"; 44 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/bn/firefox-68.0.1.tar.bz2"; 45 45 locale = "bn"; 46 46 arch = "linux-x86_64"; 47 - sha512 = "25b613ace3f48fab8d13f0b7da414cd96f74908ad15f7c0f8858e222d8b261a4c3569609845f0c6ac755d1c3dac16968b6e7557d048a543eaa774ffff9db9736"; 47 + sha512 = "0426330b97dc387ba6e418c1d8410f7acfe6461da9cf8527286d97e8716886e743ff874ae6d4ecf50b2cf40ebafecd0ea0a4282aa4eb1e6e89ad85d84567558d"; 48 48 } 49 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/br/firefox-68.0.tar.bz2"; 49 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/br/firefox-68.0.1.tar.bz2"; 50 50 locale = "br"; 51 51 arch = "linux-x86_64"; 52 - sha512 = "e1638c65de18fab7669cf684eca3cc2c2fc2f5c4dfec76aa71f30f8a6e31868727be4979868f684c43d0c3c9da383e4d0c02718ad096ee84d88586e5b67b2f95"; 52 + sha512 = "9373aa27dc0b00588d90f9d08b0c65fde1153a79edd69b886fa01052f84cbd5c041d6b06cdc8c441f8bb33b9abd29dff98b6d0cf6a79de0111cdad0383317338"; 53 53 } 54 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/bs/firefox-68.0.tar.bz2"; 54 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/bs/firefox-68.0.1.tar.bz2"; 55 55 locale = "bs"; 56 56 arch = "linux-x86_64"; 57 - sha512 = "1cd0e4893bf9b1270533a4f1e66b3392240d25e0f62492a1cdb9e7c9e4455bc7966b2373915b9235788f5a419c38ef81c57fd6d4633968c8a3b2706306f64b39"; 57 + sha512 = "5268133d1f1a22d8c4577ec39c772d30430cdfc8a1038ec817a045bce5de08dd09b1cc980ca124e3bf6675cca30d7a2f728397484e6218f859e6c2c7b3f67f9a"; 58 58 } 59 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/ca/firefox-68.0.tar.bz2"; 59 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/ca/firefox-68.0.1.tar.bz2"; 60 60 locale = "ca"; 61 61 arch = "linux-x86_64"; 62 - sha512 = "62fcd17294fe8560acd0f5288fdd3e46cdf47f12663e92c2bc6f8b5f27efb8d8d03769d364c187fe6a36e784da62ab5bc77c596ff04f6db4f2bb207952dcb237"; 62 + sha512 = "96137fff14c26d3ed2fa6d27ca9a3a16773dbb37cd6f00aeef68cb88797ea9159684594d9b6252b384d878e9439e630b5b1e208bfa32251627ee187bc059742f"; 63 63 } 64 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/cak/firefox-68.0.tar.bz2"; 64 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/cak/firefox-68.0.1.tar.bz2"; 65 65 locale = "cak"; 66 66 arch = "linux-x86_64"; 67 - sha512 = "d520b16988f435d9617e470f6404b249365cc4069bbdf1a011958e19d9b4d277389f259220345a735e534f18147da3262d7d6ccc5a17690273ba9d750f7beb33"; 67 + sha512 = "f3aeb0953e86f6bbb8a7f6bf3be70ed80b653c4473fea54ab49025976d3752ff58c32f24700056ff9d176055ef6708c930ef98f29bec2ee82bfdab6f2fa721e9"; 68 68 } 69 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/cs/firefox-68.0.tar.bz2"; 69 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/cs/firefox-68.0.1.tar.bz2"; 70 70 locale = "cs"; 71 71 arch = "linux-x86_64"; 72 - sha512 = "9d86ed813c8c96a9743ad67ab424d50c3363468c7a53c7ae0d1835b91a63fadeb3f6305d6960b84e4b9e3cf5d5e3f77e383f6b25439b91df8c8f7a1888d6c103"; 72 + sha512 = "a233241811e4616cb1bfa2d772c29895b3f4be669fd4e5d7a247b572d840ec4987246b556df23958a6a7953b8e4f04e891071ad5cad21be9017bc70d6e21e0e7"; 73 73 } 74 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/cy/firefox-68.0.tar.bz2"; 74 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/cy/firefox-68.0.1.tar.bz2"; 75 75 locale = "cy"; 76 76 arch = "linux-x86_64"; 77 - sha512 = "5ba474d654323792da1dc0c5be474b43186c27fc1c060a46b348003a4c9c1333dcf9cc60a8dfebea136d275263cf40efa1e724f805cec153be7b59cf18b0efd1"; 77 + sha512 = "2c13078a947961c7d91a3646f760ab85121e01d2b3f7b521a14aef4fe8fe0c341a0d605df0966a03ce58a6214cfd9f463504be4bfbedf22253d73c18781c0076"; 78 78 } 79 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/da/firefox-68.0.tar.bz2"; 79 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/da/firefox-68.0.1.tar.bz2"; 80 80 locale = "da"; 81 81 arch = "linux-x86_64"; 82 - sha512 = "86550341ce9cfc1942e611c2ef718123424a495c7c7fa2b964063f3503bba477027c62f355c861ad0afefbd7d0279ac8b945719db8f428236a6d91ed5032efb0"; 82 + sha512 = "9e146040a61915fba2531d798b3e4874154cf9750ed55af2018542df6ff294f690929747fb110286fb1176be016034c637d18f97599e54a28e05f639c5ced4aa"; 83 83 } 84 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/de/firefox-68.0.tar.bz2"; 84 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/de/firefox-68.0.1.tar.bz2"; 85 85 locale = "de"; 86 86 arch = "linux-x86_64"; 87 - sha512 = "81df9031e8b1adec65c9fe5a34564f425a60affbdc5e1662392d70dc4724dd08624ddabacb2fb6cd6739e87ea117f0433d2a2034e883c2097a09e62fa7bb1480"; 87 + sha512 = "af243d5764a47c3df49661e1011a9cb776ced13483ebdd054ee4be507e56136dcbc734988849e61c87ea9795b364ca002431eeef16c343a4cd8508583e7cc5bb"; 88 88 } 89 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/dsb/firefox-68.0.tar.bz2"; 89 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/dsb/firefox-68.0.1.tar.bz2"; 90 90 locale = "dsb"; 91 91 arch = "linux-x86_64"; 92 - sha512 = "7a8bb3cd4c4dd1907a2a86026a81eab2f456520ef28f0c1c8751f17faae23ef9f3063d773fe9bfd7efd1285f06096daa2e9dfeabc621906ce344239c32a4f1e5"; 92 + sha512 = "5f4335d5bbed003c3692cd3fc6fbc196559d629d9b09ef1e6d94f758658bcd637c300e9c72ee7a53fa5ecfc998b276ddd94f87e961df914e193b762bb2889c94"; 93 93 } 94 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/el/firefox-68.0.tar.bz2"; 94 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/el/firefox-68.0.1.tar.bz2"; 95 95 locale = "el"; 96 96 arch = "linux-x86_64"; 97 - sha512 = "cbb7ff2010719ae2cc278d4243f72bcb0ea1170ba3729c49aca0e1c500a3c5905e6768702af3ac3b5568fcd529258aadf4ed6584d1f98250f3a2a0f71e6e62b0"; 97 + sha512 = "ff2d55b5658b4c2718b9b0d62d1926bf6735a2342b3c91c49a94cc25af19fe28194588c7c75d24298815d7fa8dd32e30511716db57ff521f14def69b22c7441b"; 98 98 } 99 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/en-CA/firefox-68.0.tar.bz2"; 99 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/en-CA/firefox-68.0.1.tar.bz2"; 100 100 locale = "en-CA"; 101 101 arch = "linux-x86_64"; 102 - sha512 = "aadb72f6dd1360e93549b0a0470276d7a9e97c050fba6cdc2b0309d87d8bba5614e366f0b526d31f1840e3fe67e5143aa1ab00173bba36b9c0ba376a070cadad"; 102 + sha512 = "788c6f0aeb2c5a4565b2d187115c948978c02c4143d20cfeb47421c8afd81c0bb5f0285d15fc0ce2129455347a0dd61bd75b01c8774c9fddf1915c653c874739"; 103 103 } 104 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/en-GB/firefox-68.0.tar.bz2"; 104 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/en-GB/firefox-68.0.1.tar.bz2"; 105 105 locale = "en-GB"; 106 106 arch = "linux-x86_64"; 107 - sha512 = "a6969f9873b430341b324b0e0d99a384520bc09b3156f2d4d969f80a0784399e0b297166db0456b96c10e6773b85cb1a4047107d71ac061240ef970ed8c1a1b8"; 107 + sha512 = "97ee51e6fdb76d690adc2fdccf5decf18a1a3fb34ec3542c795aef8cf45e3e97bfc7def170535057f3362685f5fa75a3dcc8b7b1383f3b08e5b16c08c5edd9e0"; 108 108 } 109 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/en-US/firefox-68.0.tar.bz2"; 109 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/en-US/firefox-68.0.1.tar.bz2"; 110 110 locale = "en-US"; 111 111 arch = "linux-x86_64"; 112 - sha512 = "e93ab3bb54f14b59d8e0a1339bf1f0193ea081116e1fbd706c37ce218788e827520920e1a67c5fd35c500364949d257db7183ee95a13889a40543e2fdaa42897"; 112 + sha512 = "4c489c1cdb76ade26918307af3d8d69ea1e407013382a84d4511ee4fa9e40d0627814ee57ca87faea38e1b879486d57481d74dd0f3344cea90b4101e403fb25a"; 113 113 } 114 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/eo/firefox-68.0.tar.bz2"; 114 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/eo/firefox-68.0.1.tar.bz2"; 115 115 locale = "eo"; 116 116 arch = "linux-x86_64"; 117 - sha512 = "78b134194bd1eeee34f3ca405a55c368ba345d17c82495b227a04149bd93af233c27df62374e12adfe6637dd9cfb3d69394243cab6558468f159481468a9fb08"; 117 + sha512 = "16392ea6d0aa5c63af1f2b81444ffa091f462a686e911a425b7938a5f34c300f39487fdd4322bb13b5f7631be55dc8bf2c53dcd6a57c347c3862c47cca0c6559"; 118 118 } 119 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/es-AR/firefox-68.0.tar.bz2"; 119 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/es-AR/firefox-68.0.1.tar.bz2"; 120 120 locale = "es-AR"; 121 121 arch = "linux-x86_64"; 122 - sha512 = "6729b204377653635f62b161c4022f1598fbd5a49f8edcf1603e416a0fa525d1f89182400f4fec087b13a9b3566cb51b5d964e895e7a46efc734ffc92daa9467"; 122 + sha512 = "e4c612f300a210470d166bb1386fd9a8308c3de1d107da53b31356a091d8a1a1aff00f60e8feb0fc1d4a6526acf0510f95bf9d266b72f52f887af52337048172"; 123 123 } 124 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/es-CL/firefox-68.0.tar.bz2"; 124 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/es-CL/firefox-68.0.1.tar.bz2"; 125 125 locale = "es-CL"; 126 126 arch = "linux-x86_64"; 127 - sha512 = "761d623120743a8bc8191f0996bdd4e48242531000b58e80aa74b6af99142b91a39195b647b662833bf494c3db3e105d01cf0301eea5ac085b4ca766df79ac98"; 127 + sha512 = "608decca1ff70bac17bbe0160b00c1fef3b0f0e65f53caa2cc549ac1250c2e5973439123c8e34fd0b5e130269ca5816a7cca78632a15724cf8ebbde3e08fa9a3"; 128 128 } 129 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/es-ES/firefox-68.0.tar.bz2"; 129 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/es-ES/firefox-68.0.1.tar.bz2"; 130 130 locale = "es-ES"; 131 131 arch = "linux-x86_64"; 132 - sha512 = "10f9f0980376ce0799925d4f9e86b03c2cac7dfa857f8f4c874b9aa069ee1b021f25bb274d6c8357cc51aa9b4ac4b3b877e782c4dcd5ffc846ce5190a960c9f3"; 132 + sha512 = "b8b56148d7d08d560b9b34be4034a6d2abd1b59f1b1da993a92d80bdb83c44bb261860573aab5726af56835bb03c13c65a32b1f8b0b5f5d02df855b576d0a398"; 133 133 } 134 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/es-MX/firefox-68.0.tar.bz2"; 134 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/es-MX/firefox-68.0.1.tar.bz2"; 135 135 locale = "es-MX"; 136 136 arch = "linux-x86_64"; 137 - sha512 = "3b8df6f200e71234cc9ab5d096c84084c24886aa08389572bd952e3c6178b20f6d8e2e44012327942713716d4bc26f087792869e246708f0cbdb6bbd0839b7de"; 137 + sha512 = "c4040e736647fff866f69a054b1b917d66799c29f54dcbf968942b6447adeed8ce8cd24bb4195be44bd134710053daeba996bafe6e029f5e6c7fba767904d084"; 138 138 } 139 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/et/firefox-68.0.tar.bz2"; 139 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/et/firefox-68.0.1.tar.bz2"; 140 140 locale = "et"; 141 141 arch = "linux-x86_64"; 142 - sha512 = "f7d0b6c4d7692baf332460ce41d9bf243e41f3fed0a547ad2acf82101429e1301aee18b5168aab00e758b6953e8c28e6466efc524a48b0dde686d5a18c2ac10d"; 142 + sha512 = "ee0d9b469bb717ac317daeecd1fccf10290e72e2359d17ebf58f62fe7d4c266b740ff235438d937f30550cfd4f66387b9d1535156d37e3b689c323cb732b37f0"; 143 143 } 144 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/eu/firefox-68.0.tar.bz2"; 144 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/eu/firefox-68.0.1.tar.bz2"; 145 145 locale = "eu"; 146 146 arch = "linux-x86_64"; 147 - sha512 = "a5146238c071f3361f24b016a24bfab8449e8d79d1357614694bb42aa24e8266cedc127be3ffa107f3f4481a791e9c16aa914f0edb1433d3f8120cecd7104cf8"; 147 + sha512 = "5f94492be3a70be304c3e6c0068c8d50f5e3b94cc8ea0559a5cc521564cfcbb4facaa90a4e237425e63dce093a0c51987b40c6cdda8d1e72792327d6f5562cf8"; 148 148 } 149 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/fa/firefox-68.0.tar.bz2"; 149 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/fa/firefox-68.0.1.tar.bz2"; 150 150 locale = "fa"; 151 151 arch = "linux-x86_64"; 152 - sha512 = "6150cc3f001910963c83b9c6baea10396c79aaf78d74ba35af73821b5c8ddd9c41f867fd9fdc143a532e693c9c42601c54bdfa01391700b22f3e571133bebf8a"; 152 + sha512 = "7a89b49ca9eadedc2a84a990ba2601740dd3494a27694f6d728f2dfa9b7e7bf41e171b2ff9bb004797da1d30f18f65d70d9a94a398483b1b604633bd3388b7be"; 153 153 } 154 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/ff/firefox-68.0.tar.bz2"; 154 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/ff/firefox-68.0.1.tar.bz2"; 155 155 locale = "ff"; 156 156 arch = "linux-x86_64"; 157 - sha512 = "e93a1a41ea65433e7b55c72519d0b1d5d3b742887ea380c62e19345fdd9715124804e161eedb59eba9ff61431eca2d3f74fcf788315080733ddaf89e6bc2475a"; 157 + sha512 = "a889efda3c2acf0d0d96d857689c8264f1ac79d4103f7188458e1232ebe1646357194aef9e6c448e2636cfabef2c5948d0158c933c04405c6587b1cc745ec741"; 158 158 } 159 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/fi/firefox-68.0.tar.bz2"; 159 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/fi/firefox-68.0.1.tar.bz2"; 160 160 locale = "fi"; 161 161 arch = "linux-x86_64"; 162 - sha512 = "8462ee57dd9e5affe5acb78290916c45b68ba4219a9ee0a71fc3c7eca5a1174ae4b738bb6807de4dbe4216851b6e13b49f367bdd9ab17e0ae3c336937831f318"; 162 + sha512 = "363ea795d1dbf428124885f475dc93d962a8c4ddcd253dbfffe1471777616d3c3c348223d5f3a1249a89a636ee99a9d4b48ac644e5009f9ce1a4236200b3f23e"; 163 163 } 164 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/fr/firefox-68.0.tar.bz2"; 164 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/fr/firefox-68.0.1.tar.bz2"; 165 165 locale = "fr"; 166 166 arch = "linux-x86_64"; 167 - sha512 = "270c53b297ac3164ef791800a4e1413e58b4ce95e3006456e3ac4c24da054001c4efc0ac2be61d814d6d0b04ebe0e427437cc75cfc80b4a85cb51363ec6ee26b"; 167 + sha512 = "0b869afa50f2212bdb1312551ba3c552fb9f7008f0bcf4f0c5f9c5f4deee920cf96064120b7442050233bf6367b232a79874321b7b4d98c3326ee12d9151a7a6"; 168 168 } 169 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/fy-NL/firefox-68.0.tar.bz2"; 169 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/fy-NL/firefox-68.0.1.tar.bz2"; 170 170 locale = "fy-NL"; 171 171 arch = "linux-x86_64"; 172 - sha512 = "6d748ffa25bc34d8bdbde1d849ddc683e947a4e046114ec97aceb7703d67241f395cffd0a056cb01c50c616cb19a03a9d1c94d292031e39b9326fffe4c96f1dc"; 172 + sha512 = "40fa18e5e8aa1c987c81832b7ce7ae7ac7314a0bc058b3eb226101457b2f7af65e7a5d33cdcd85d10f87d54336ff348bf2a743505f16b904c5d6d09a3d64221d"; 173 173 } 174 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/ga-IE/firefox-68.0.tar.bz2"; 174 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/ga-IE/firefox-68.0.1.tar.bz2"; 175 175 locale = "ga-IE"; 176 176 arch = "linux-x86_64"; 177 - sha512 = "7b5437f7da1d7b991896e4cd9599248f6336a0303f9cf4e6e59979d5c49eec768393994ff788912a69e52153e3b85b21d5faf6988a642c197a44393eb363b638"; 177 + sha512 = "3b2c8b42c6290c41ce08e4857b53ee8838e06f0822c7eabd820071058dc70479bcc1886f6436295cba2ed94ba8d7daf1eff8b6a22e1be3014ec838b3a3d77804"; 178 178 } 179 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/gd/firefox-68.0.tar.bz2"; 179 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/gd/firefox-68.0.1.tar.bz2"; 180 180 locale = "gd"; 181 181 arch = "linux-x86_64"; 182 - sha512 = "4fbeba40f7c87d5121586768acfa86b652a37fc5ea6886ada09e77e637952ec00f6875be5260daf35274c9800f1838ba89e711bf7f93c6bbe948d40b16402100"; 182 + sha512 = "8724028836689cf83f4529eb04c747f2990d7b10f17e5f19295bbb2d53b301ae427d4aa836dbe994c3ba5b7a986a3ceeb2e32eec02a09539ec972ee9f180649e"; 183 183 } 184 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/gl/firefox-68.0.tar.bz2"; 184 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/gl/firefox-68.0.1.tar.bz2"; 185 185 locale = "gl"; 186 186 arch = "linux-x86_64"; 187 - sha512 = "3605779f504f5e6cadd6e185244a008156290779e3dd3f243a86792d8aa8d967a3f9e83cbbb509eee0ba698729a51a01626d956c2ddd5f337eb58f0ca4adc8dc"; 187 + sha512 = "587dabdfce3ba644f10cfc4998ea6492611e8480166f44d97a6733496e55a7a4662b8a296de6361d8f515bdf4122f2bc73f3337763323e3ed0884a6d4300106f"; 188 188 } 189 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/gn/firefox-68.0.tar.bz2"; 189 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/gn/firefox-68.0.1.tar.bz2"; 190 190 locale = "gn"; 191 191 arch = "linux-x86_64"; 192 - sha512 = "1feb11fbc99bd526ae43b9e377262803e092ce973f68fa5703b07ba296012f9e707d1b3ecb627bf4b5b1a97383c7af0d460e60665a87c10f79ba644d463415a8"; 192 + sha512 = "8945bf41a214bc79ef0dfaa774afa4bc2a16a1f92da02e6ea1e9813cd96c1a874da93b17086de587d232cd0e78c13873beb647b87afd74d98be7fa1aa6658dc6"; 193 193 } 194 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/gu-IN/firefox-68.0.tar.bz2"; 194 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/gu-IN/firefox-68.0.1.tar.bz2"; 195 195 locale = "gu-IN"; 196 196 arch = "linux-x86_64"; 197 - sha512 = "8d857d0b09d23bbec739e3a6dd7a834f16bf9a7f7c60ebd36e68ccbcca121535201b43d7d5eb206e1801250dbbbc509bfc3acc8b5cec814307aa7fc680c77661"; 197 + sha512 = "05dcc39f297723e287476103f149ba80408a015d92442f0aaa791e29a73195605aabcf13a1c11e1030eb74dbab52570600c1848fec0a474b986d580effe8ca60"; 198 198 } 199 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/he/firefox-68.0.tar.bz2"; 199 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/he/firefox-68.0.1.tar.bz2"; 200 200 locale = "he"; 201 201 arch = "linux-x86_64"; 202 - sha512 = "816c8855effaebd765383c4fa355dbe50694ec2916431be9c4665927f906c8d705f4913ebccfc822f56ef44c74e74a532f3d3f46dc003302672b0e766dbe8616"; 202 + sha512 = "ec76920d51958ba23d1a63f4c2432cd8054f88ac024cc55be040dd92c5828ab05dfcd654d35552be30ddf3dd49ab3a5870ea90b5f0757a0fffbb269f97ad5b61"; 203 203 } 204 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/hi-IN/firefox-68.0.tar.bz2"; 204 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/hi-IN/firefox-68.0.1.tar.bz2"; 205 205 locale = "hi-IN"; 206 206 arch = "linux-x86_64"; 207 - sha512 = "338ad80834548cde84be8dc26d597b8f69ff0fc7770dd69758d71301ef749723c634d5abc757326c8b4caea1b81341108ce4a3641a967437c77b4eebc31e55c3"; 207 + sha512 = "a7e368618ace4281eee7b52b2d053c37f43d6077022400d81da5bd3f896d135476a06579d4e60042277f9410ae2b993bfdcea973184a45bd58d5d5b55c7ed306"; 208 208 } 209 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/hr/firefox-68.0.tar.bz2"; 209 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/hr/firefox-68.0.1.tar.bz2"; 210 210 locale = "hr"; 211 211 arch = "linux-x86_64"; 212 - sha512 = "5c501a55279fadb611b872510235e3ab905116f4e6f107977ae9a790fbc2df9690ba6e96cdd5a51522eb3fc88d2dda35657691991129acce7cca2a65210885dd"; 212 + sha512 = "88cfa3193770dbb074ef0e23860e2d6f30214e0f886c1f38c966b3eff3f395b8229f4a2051369c7f7a13dc2af50e442a1b1f08e6c9e582c6634a3037ec37e990"; 213 213 } 214 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/hsb/firefox-68.0.tar.bz2"; 214 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/hsb/firefox-68.0.1.tar.bz2"; 215 215 locale = "hsb"; 216 216 arch = "linux-x86_64"; 217 - sha512 = "254b5d2d8127638a9c75140e562be7bd51915f4870306ba1f8d5fbdfa89a6d62d24a529e0951d7aaf88454a2a7197f1ac32a030a08968e22ca7b81649af6846c"; 217 + sha512 = "277d1bfc26fe19776d5696ca34f63893ead25a203a7a447365a253bed7ed575da6c5569549d3b4f55d7c9e7e36bc36b732bed1d50a214371724589e02cd7666e"; 218 218 } 219 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/hu/firefox-68.0.tar.bz2"; 219 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/hu/firefox-68.0.1.tar.bz2"; 220 220 locale = "hu"; 221 221 arch = "linux-x86_64"; 222 - sha512 = "0d2f182d9640bc5af616145715808a2bc24327b4066e9e0f92fd98932d33dfe45f5bbb24a1ea4595be85d29919aab31e4a8d805e628418ad7497c727fd523492"; 222 + sha512 = "207f279661c57534519a8134f64153b219e5d604d3a1bf0265765658ee9390abcfe051d8f1c11c8dfea975da38c1d9f8bcc50f2090813f091251dfd326216eb6"; 223 223 } 224 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/hy-AM/firefox-68.0.tar.bz2"; 224 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/hy-AM/firefox-68.0.1.tar.bz2"; 225 225 locale = "hy-AM"; 226 226 arch = "linux-x86_64"; 227 - sha512 = "efa98720171d7f4793c02c6270badc7f7c5fd0951dcd6e569216e642da112c94e39de7bf67fea4a535da17cb6d852ef34983f573e210440958fc540cbf54963d"; 227 + sha512 = "567d75ed252779c89c23dbacfb23138cde921c24c798190d93f4fe20b3b2366caea44ede5b0e66678d5befa0d22e91ccf350aa91733938dda9a6ccc21fda58dd"; 228 228 } 229 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/ia/firefox-68.0.tar.bz2"; 229 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/ia/firefox-68.0.1.tar.bz2"; 230 230 locale = "ia"; 231 231 arch = "linux-x86_64"; 232 - sha512 = "bf60c3d07c9d3008d0ca4cc4e09759d9176df6e9632150d03435f1eb1edab76bf4504d4055d1826c526c435fcf7747546f7574ac85fd87e497165bf2f6a3c34c"; 232 + sha512 = "6e0b22dd63a5e04cd4f61d5ffce9a5ec1569f8e1d4df4abb29e22c8f3c63143233c7b91410d020c00afa6f6aeb3375c2a9a795e20a8efa9ba284f60ed782762f"; 233 233 } 234 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/id/firefox-68.0.tar.bz2"; 234 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/id/firefox-68.0.1.tar.bz2"; 235 235 locale = "id"; 236 236 arch = "linux-x86_64"; 237 - sha512 = "ae11410bf6338659b3259d144461706bfcb1c85e6f9e3484bdae75c72cf1f015ff1d8acbb7daea7dc78df1bd1428462b52c5b2fbc32ac22a2264e501758712e9"; 237 + sha512 = "3294e5b22144d3d79dd72b00cd71817e55127ac42e2409953f4052751e07cbd40dc195d00133d7bedbaf5cd760a7f72d85a1acf5e7041be5cf91c40ce9f40e4e"; 238 238 } 239 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/is/firefox-68.0.tar.bz2"; 239 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/is/firefox-68.0.1.tar.bz2"; 240 240 locale = "is"; 241 241 arch = "linux-x86_64"; 242 - sha512 = "703c104d9cbc3c36394a8854000a5fc1e919c28c382347f23e09f348808f84cc173ce3b20cdbe615594536a0817e77b942a4ba211eb4019d45b224d6a074c2dc"; 242 + sha512 = "76e409bc8a84fea6a2b257e91171309afcd5a0a95803a741d50012fdb602f98d58e6f2b90d1d81c73b8a4cb961aa619ef7702a467e247657c12f721ab6495351"; 243 243 } 244 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/it/firefox-68.0.tar.bz2"; 244 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/it/firefox-68.0.1.tar.bz2"; 245 245 locale = "it"; 246 246 arch = "linux-x86_64"; 247 - sha512 = "13381af9f0b85c7eca0c17b5ebbd7918f8dfdc1228c19804855dd78e84966de7d95dc104ac93d002deeea0689ed9e64a965062541dc4464e63b783683d3baf99"; 247 + sha512 = "e40c3231959d8f2e96387a4726852f45c05c5a3b2e191b44dee4d718fa10e15e98c701eaa0d4f61bfcb027a832b21b3080c84a55073f6bbb6e199edbeb8d9ca6"; 248 248 } 249 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/ja/firefox-68.0.tar.bz2"; 249 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/ja/firefox-68.0.1.tar.bz2"; 250 250 locale = "ja"; 251 251 arch = "linux-x86_64"; 252 - sha512 = "22aa65d53fea68d327725e78d8e6226bbf97b76abb0361917faddba0704c1dff81e4b8ce5e3bfb3e719625cde2257cc64e361791e6c9eb02d25614ce2e072d07"; 252 + sha512 = "fe74f30aed27e57be51f3840a5035219062149a1fa63dace282ebb257757a8baf0c82c31a506b416b505a640348799a22e7299cb1e6f1b2355a0a649fdba5625"; 253 253 } 254 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/ka/firefox-68.0.tar.bz2"; 254 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/ka/firefox-68.0.1.tar.bz2"; 255 255 locale = "ka"; 256 256 arch = "linux-x86_64"; 257 - sha512 = "c1d6e80fcc16ac47c23123d871230d96295820e0a406ec7f20e4829b00378a4fcdb205a1556abd218d126a7b6873440cce3ca651b552117ea179bb8542e6c925"; 257 + sha512 = "a8508d13328f23a967e1083fc0a9faeb9e4cdfc0c412ffb36e8fd962de9e34f5d264e4462cecc716bf40ce45de83e976b114ab1bf541c8fb8be005c574b2fa11"; 258 258 } 259 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/kab/firefox-68.0.tar.bz2"; 259 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/kab/firefox-68.0.1.tar.bz2"; 260 260 locale = "kab"; 261 261 arch = "linux-x86_64"; 262 - sha512 = "6e5b60fbaf1221e035ad6341b3d8fc154d663c0e361f768df0182416b66f3705cf0d2c14caf2787c915a981e9ee7c67848576e3204a50975d1160ad23fbcd7ff"; 262 + sha512 = "f825b1786530690f0ecba3c4e486ca42dee067496c58e2e3930fa433dd7f7991df1bd7d6180103d695a565d9a3cd908d84276395a29f854c306f8149ecf94da1"; 263 263 } 264 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/kk/firefox-68.0.tar.bz2"; 264 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/kk/firefox-68.0.1.tar.bz2"; 265 265 locale = "kk"; 266 266 arch = "linux-x86_64"; 267 - sha512 = "48484e9b8e67dee1f5c02c654b3bd4212e36ae2397a30b4e443f769ef10d8309f76ec0bd0bbbcd59f2cb9cc37e96482970777a573b099d864160ca9a546d87f7"; 267 + sha512 = "7c5939ff37c83f31c1a18932c50bc6dbbdf059b2ce191e892bdabaef64b60530f8e54340d2231fdd3223d087c94f55e0b922df2ad21687384dc05d780631b0bf"; 268 268 } 269 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/km/firefox-68.0.tar.bz2"; 269 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/km/firefox-68.0.1.tar.bz2"; 270 270 locale = "km"; 271 271 arch = "linux-x86_64"; 272 - sha512 = "00f10438a68194ee206603df9583e737191fb323e71412b9ab5f41486376725f285019b9429a4048b48a363b66c2dc821b3f761a3b1f529bf43dcdfa0f18dec2"; 272 + sha512 = "3e304bfaebd97cebec3f5bc517e763ad55af6fd44ba1e9a58fd5835a1bb1f7e688ce04de9f5f4a0c01f670faa2f60a0bdd137dacd7eff735fa5f43bfb162a5e9"; 273 273 } 274 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/kn/firefox-68.0.tar.bz2"; 274 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/kn/firefox-68.0.1.tar.bz2"; 275 275 locale = "kn"; 276 276 arch = "linux-x86_64"; 277 - sha512 = "d73e519768ae0e5b16f33ab8ff2277d865e856ae4fa8242de3ecf6df9f74f1e04d0cbce9c4c7e351362dd2cd419ad67019fa0d8c05d0f718a585284c51748261"; 277 + sha512 = "665b75da1af2a98d69999ea578fcb86fc6c770bd638eee98b5096731b63db5803c0c298a922cd6bc77a686fff78d38ed193fe64c17e73e7a8bd9b7faf381e6b2"; 278 278 } 279 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/ko/firefox-68.0.tar.bz2"; 279 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/ko/firefox-68.0.1.tar.bz2"; 280 280 locale = "ko"; 281 281 arch = "linux-x86_64"; 282 - sha512 = "38a54be34b004a4a378af09a354e96a41814303fca0cc55d693cfc6c70e40e927e1ac47d554457a1be6efdc0981d68eb9463a406c415db677b8a6c9e1097992c"; 282 + sha512 = "52fac04c41e6a5396688f7cd80f9df1c4515cab7b0821a67170ab301d056e00fe37555a1c3d8aba1afb309102b97c518bae215dd777622e55339d0f4a63b8827"; 283 283 } 284 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/lij/firefox-68.0.tar.bz2"; 284 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/lij/firefox-68.0.1.tar.bz2"; 285 285 locale = "lij"; 286 286 arch = "linux-x86_64"; 287 - sha512 = "30432760846675034194e36f005e71eea19c13f8063472aa30b00bd8f2cb359c577c194b71d2aee21fe6371ef01918c3ccc77b4d9adac7dc5e8697d1ae788d29"; 287 + sha512 = "9dff958a02e26e378ca64337875ad9890b7f574dcec338f96e9253a1bd9ef6e640959faf0f8a46621822a5d1947589ed9705ac7b7be374b9c6114133b732c72e"; 288 288 } 289 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/lt/firefox-68.0.tar.bz2"; 289 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/lt/firefox-68.0.1.tar.bz2"; 290 290 locale = "lt"; 291 291 arch = "linux-x86_64"; 292 - sha512 = "06036a7271e654dafa39519e52f1e860a7e0c9c554a10b9a2e06ba3e8fd684b1dc12f1fed969db580939ab534b399c3bea3556668de32a3e6755bed5ed1f05d6"; 292 + sha512 = "e089fc095ce21ded59dc553a1cb500453541e564296348fa7e0d64c2c649a3da8b838601e03dbd431724e693ad96e91919bb64b598e19a5f64d716c8d41c10de"; 293 293 } 294 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/lv/firefox-68.0.tar.bz2"; 294 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/lv/firefox-68.0.1.tar.bz2"; 295 295 locale = "lv"; 296 296 arch = "linux-x86_64"; 297 - sha512 = "6ee8f158bd9995fa02cab38272fcb493400778cd398557e9b8c8335c66199ee64fded5dafe5f46a2a082611602024a7571fca8377dd74014f36c50059dccc008"; 297 + sha512 = "038161a7d0cfd81f47146d6cce5ac8b3acbef126c05c28e832b554820ef107cc7d33b01c892c1a4bf59dbe7ba2d6b97c2f5820c02fdafb0e2e32e12a27a3f9e2"; 298 298 } 299 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/mk/firefox-68.0.tar.bz2"; 299 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/mk/firefox-68.0.1.tar.bz2"; 300 300 locale = "mk"; 301 301 arch = "linux-x86_64"; 302 - sha512 = "68e85cdebd1b4811ea8a90666bdf18e519b2731be8a01b099ab55ee2d2823267e76d7329e8cbbcb6a3e9b31553a8e882a8f4590402f4883ea600c81d4c861519"; 302 + sha512 = "100f67b45de3ec311eead8fbea6ecd1e9d767c19cb9cce00dc87568c6e123c9bd558b43dea27f6163cd5dfee3e4db84da80f646effef27637f9ce603bb6eb110"; 303 303 } 304 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/mr/firefox-68.0.tar.bz2"; 304 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/mr/firefox-68.0.1.tar.bz2"; 305 305 locale = "mr"; 306 306 arch = "linux-x86_64"; 307 - sha512 = "06267cf13d3bde94280fc7ee837a24809e8e856fdf769e6f5e6f9d2583863d70b00d0da262ee3c96fb2b72d7cbe0b04e8697e4d3b73eb128ba26b25c0a304e8b"; 307 + sha512 = "02c4a73dfade16aef4688cbc38aeea0092da846ebe85589dcad472acd2fb06e2ec2a3264b0241e64d7346237238602e5c46f21335f9d0eb965d8c804a73ca561"; 308 308 } 309 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/ms/firefox-68.0.tar.bz2"; 309 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/ms/firefox-68.0.1.tar.bz2"; 310 310 locale = "ms"; 311 311 arch = "linux-x86_64"; 312 - sha512 = "d52ac748c903b763308bf83f9da8e898fe7f97418da43061c8c717ddab97aaa778647b241529d023490bb7c28434b1b04284234d6c1f1ac6c4bc4bfaf0133e1e"; 312 + sha512 = "2e417277438a82212b82c11da36b826ba64a1c9994b11b6b2e4d5c00e6d62d928e8870fdf97ead915d69ebf5125a9a13d8ee37515b55f2c0da9cbfbc3592608d"; 313 313 } 314 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/my/firefox-68.0.tar.bz2"; 314 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/my/firefox-68.0.1.tar.bz2"; 315 315 locale = "my"; 316 316 arch = "linux-x86_64"; 317 - sha512 = "c59fe9e91260af739f37de4ea81b3fa09a6202fe76e9cc03922b136de8e8deae140798de1b9645732c31203e4617954da83d8e2f279330f0a3ddcc949b95d550"; 317 + sha512 = "c7050e05d39e3050987062337569f1cb30bf5505e92c01de313fa5d0c882ece4c1e62e9caa64f5ea7b87d9bb6c63ab2fb7f88c8b52eefeb7e88233427cf381a0"; 318 318 } 319 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/nb-NO/firefox-68.0.tar.bz2"; 319 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/nb-NO/firefox-68.0.1.tar.bz2"; 320 320 locale = "nb-NO"; 321 321 arch = "linux-x86_64"; 322 - sha512 = "87c37012c85ce2301655d81b8b388bf5412c19e401e4e48713607b69157e017fc9cd0a9dd7ec980761ff11bdf74e3b3899c568c808f98a77005add4a23632b33"; 322 + sha512 = "4e90965dd0f2fd44c8a87cea7dda3c3cf5ebd49a2321be18f133f78f93a4b3728ce1a4ba83d52e274b4367652a280143814a88515a07635f27b98ffb28acf59d"; 323 323 } 324 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/ne-NP/firefox-68.0.tar.bz2"; 324 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/ne-NP/firefox-68.0.1.tar.bz2"; 325 325 locale = "ne-NP"; 326 326 arch = "linux-x86_64"; 327 - sha512 = "5847c023bf23b8f399b13b85e9d41006d7871593b64c158ea873b9dc1d272345b7daf08b89faf0af072336d09523025997d2d769035e4bcd0fda6919a9afcd68"; 327 + sha512 = "8a367b81d5dd1dd30abc02fcf60b406de2e9735cd4eaf39f9d50ec62817abae18d1255781648981120362beed305f3c126c721536faee7712b1f95209fdad463"; 328 328 } 329 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/nl/firefox-68.0.tar.bz2"; 329 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/nl/firefox-68.0.1.tar.bz2"; 330 330 locale = "nl"; 331 331 arch = "linux-x86_64"; 332 - sha512 = "55543a83655090fc326c0c58714faace33c43ac478f3471efc1508bb66c6cc60a306bedd9a059c3eb8c130a330bffced32eade1d93c5a2efad6c168f801b8c80"; 332 + sha512 = "e17960bc934d3e17a04f3ca27133a9c98e6e9b992683eb541bfa47e8b71c077456f03f281d1534560b96bb4ee6bbd5a0613f6f1cc5e99968856eb3b3e9b7611f"; 333 333 } 334 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/nn-NO/firefox-68.0.tar.bz2"; 334 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/nn-NO/firefox-68.0.1.tar.bz2"; 335 335 locale = "nn-NO"; 336 336 arch = "linux-x86_64"; 337 - sha512 = "110778a27744add44dd912af54bd72a304e6ffe8627e8d2e557fe52b4ff616ff65649d8be21bb34d5c3198125bd4e645050a761795877ed2bc52ffb18a19c74d"; 337 + sha512 = "675d15cadeb505b4afe801f593dc6d012854b80e9aaa195aededca6b0ea4ae580a0c366cfc99ef5858bc5fa11bc4855cd17cfb66baabe4d0f8ca2c65615234cd"; 338 338 } 339 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/oc/firefox-68.0.tar.bz2"; 339 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/oc/firefox-68.0.1.tar.bz2"; 340 340 locale = "oc"; 341 341 arch = "linux-x86_64"; 342 - sha512 = "ee4924824d66643e92ed30190c391a6f18aec76d134b0eb5a300a824d5e24abc368623792a034dac7ac9fed1d70e0e07903446670b14ffebd78df191021e2970"; 342 + sha512 = "b46b563b05bf5a1c048f3c2ba0cfe73ab3ff5bccb24c5aff899ce2ef601b55416507d3b35cc0688f9a7602710626479a0824e579ad0a55b22436b1d8b658c6bd"; 343 343 } 344 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/pa-IN/firefox-68.0.tar.bz2"; 344 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/pa-IN/firefox-68.0.1.tar.bz2"; 345 345 locale = "pa-IN"; 346 346 arch = "linux-x86_64"; 347 - sha512 = "440d04629c926288de2b1f7e2dd0849e2743155cb51d98cda33583cf352fbea6bb742f12cae1031708f55e0407ec390777f7e6d0ac6aed9c542ae6558b37aa4e"; 347 + sha512 = "77c533421b6eee5033d239e67ccd517c2bd484f803969396e2a02c39246e43db710461b61b819fbe2fb8b2f97bbeb0201e31b89c499eb992b565628977467a9a"; 348 348 } 349 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/pl/firefox-68.0.tar.bz2"; 349 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/pl/firefox-68.0.1.tar.bz2"; 350 350 locale = "pl"; 351 351 arch = "linux-x86_64"; 352 - sha512 = "fb91cf62eab23a1b1d1406844a6703ad63acf5b59d727728660ff02670969903deeca9436615a3682c7aa24e3dec96b335561db62cd8f02eeddc1064e0cd5c9c"; 352 + sha512 = "e9349a3416a1e82723cb90db970514a608742ea8589801bb1fcb8c922a302cac83779fbf83c151d13760773d9ca69fc7d57dd91c547d3ba581d731d4d122a195"; 353 353 } 354 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/pt-BR/firefox-68.0.tar.bz2"; 354 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/pt-BR/firefox-68.0.1.tar.bz2"; 355 355 locale = "pt-BR"; 356 356 arch = "linux-x86_64"; 357 - sha512 = "61f34d2b0f3b9191e3ea7ef18d17d64044b030fdc066ce169b3464bfdaa6c47c1490e45eed5a864ce9cda2b49a688b8c3a43ff80b6933f0ef3e4402082005122"; 357 + sha512 = "1f2a1417604a73d94712a81638dceb222ffd9594aa319e09d6bd4de3e37dd07a1059af63c27fe26469070d678cb23dcf977e7b8aa86451df1db5d60e698f25f7"; 358 358 } 359 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/pt-PT/firefox-68.0.tar.bz2"; 359 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/pt-PT/firefox-68.0.1.tar.bz2"; 360 360 locale = "pt-PT"; 361 361 arch = "linux-x86_64"; 362 - sha512 = "a23a5dc6634ab4e92d93017a9cdbdc6d5fb8fd2582da9eef80dc9e7c1aa374e8f25349e8dc62af71fe79a4144358161c01317125196c2492dc27fbfe2bac3732"; 362 + sha512 = "480770430c8a3a84cd367cdb90c157d0f67e22b4b2d84e3eb3760c6e4463655d74ff6228df31386b8a40221262dbb12549a9c88372e7b2483c099d5a983a4a5f"; 363 363 } 364 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/rm/firefox-68.0.tar.bz2"; 364 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/rm/firefox-68.0.1.tar.bz2"; 365 365 locale = "rm"; 366 366 arch = "linux-x86_64"; 367 - sha512 = "bdbef6e73b7b151b45ed55c4a58aa2543388a3b0ff93afc6120981f5e7f43a2b4016355aa253d25061f31772934d3f5c12fc06901e77a1d57f49fbe29fb895bf"; 367 + sha512 = "291a8627380c933c6df5bb73599ab3c25406710a19b979a893369d30e5117e563fd77b50ac2c1a1b7a37779df7a57a55cfbb42d8f56765cd719fe6ab6c0404eb"; 368 368 } 369 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/ro/firefox-68.0.tar.bz2"; 369 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/ro/firefox-68.0.1.tar.bz2"; 370 370 locale = "ro"; 371 371 arch = "linux-x86_64"; 372 - sha512 = "44aba7def57c5aac88a64aa67f185a487cb8f6833c8cf608f3e0dfc4271f66f1c91582120ebf81eb9e8f3547a2124a99be322401c7ba8c3d70a2dc67002299c3"; 372 + sha512 = "1e2f0c4950a2e67e2cd11e27c6979315f78d4c682962387ddf1e47eda5a1d39136662cc3730a45474ad2978e01f1fb7888e82ad764791ad0d06b5dbbb3088c1b"; 373 373 } 374 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/ru/firefox-68.0.tar.bz2"; 374 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/ru/firefox-68.0.1.tar.bz2"; 375 375 locale = "ru"; 376 376 arch = "linux-x86_64"; 377 - sha512 = "6c51da10756208b0a7ec5b411f72f3fbe20e7966df5e53f65c27290cab29b70e270c9a6ae56ea21e6fec2855660200a543b79647e9b7031c604e747507191411"; 377 + sha512 = "af5d5167e1f1e39b5b727f269dd57060840ac46c21e593ea9938e6b1d1a97ce75d4ae0430f6a96ec7e403046616fb771aa62e15093c5852e256f49683a704cc1"; 378 378 } 379 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/si/firefox-68.0.tar.bz2"; 379 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/si/firefox-68.0.1.tar.bz2"; 380 380 locale = "si"; 381 381 arch = "linux-x86_64"; 382 - sha512 = "c005b4f99142002aa4e6ad2baec8bf80dac8dcd5010242ae0ade76fa21a47f04cee53f8813ee23007862e52e9347fd4ee0f573e497e01c50fa7eb12e1a40081c"; 382 + sha512 = "36083df5d4d1b5737453f433fcad2a610445c66888067d6b7351b1ea3b32d3494ec349d825025df77658d8726219faf94e2018e5f8ba47fb03b456657f16fbd8"; 383 383 } 384 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/sk/firefox-68.0.tar.bz2"; 384 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/sk/firefox-68.0.1.tar.bz2"; 385 385 locale = "sk"; 386 386 arch = "linux-x86_64"; 387 - sha512 = "3eb07a28d0bdbb76348932c2c9af9d6f108d32d6598fa2a77edc1d7b124f1ee7cd6b7861a8ad3687bfe19cf43fa3a2b6cd54b1f688d40d89a0e9592c081e7808"; 387 + sha512 = "393576a17577b9642afbceff032328a571189938a89d34eb1f9d0dd9d0fb2ab0bf37c83548eecea75894464887d3e7875e6c25b4382db8bd57ad54f534836439"; 388 388 } 389 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/sl/firefox-68.0.tar.bz2"; 389 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/sl/firefox-68.0.1.tar.bz2"; 390 390 locale = "sl"; 391 391 arch = "linux-x86_64"; 392 - sha512 = "4765af13425c1f2bbb5b389d43a1409e82534f24ef880a18025a09f9c686b257563e7478cfeb3cb0e104d13ddbd7f761a0783d7dc684b6dd133d8aaabc5a2e6b"; 392 + sha512 = "2c2cd423e0b8e01ecb12574b3d461e79864989d179c785de745b458e03844201b9a5baf9ccdf40cc06d591e96fcc9152d231382bd3862082662ef015f61c4ca5"; 393 393 } 394 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/son/firefox-68.0.tar.bz2"; 394 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/son/firefox-68.0.1.tar.bz2"; 395 395 locale = "son"; 396 396 arch = "linux-x86_64"; 397 - sha512 = "4c6182c4d94a6dac615a57f7fc5e7b1ef7e79d9574d04750c40f4b0b803983ec4e22538caed24b12b1ba97f16e3726924fd9c203ae14d286aa82462ce0c6bcf3"; 397 + sha512 = "5b714236fd01e0f7cdf57c441c44b772433cf890a1aa32f2ea6ea6207140845125c8770e2fb92c228838e7af012eb535418ceb2fcb9f2eff2ec3bb6d769b01e2"; 398 398 } 399 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/sq/firefox-68.0.tar.bz2"; 399 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/sq/firefox-68.0.1.tar.bz2"; 400 400 locale = "sq"; 401 401 arch = "linux-x86_64"; 402 - sha512 = "8a392701fccff096a0af7f1af3ad4c591c222a61f55bac80e12b09fd760fc23ed162308f96680cef459f324254bd6f989a4d11a1e24a5f8eaafedf81641d938e"; 402 + sha512 = "f8e1a366bc6a423dcd45c2c89195dabc46d62d5333d8df075e86a07b122c32d00893fac6dddbe9a8c2a5f14d961dfed7b1faa1eb8324caa91d8bfc335ccc4386"; 403 403 } 404 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/sr/firefox-68.0.tar.bz2"; 404 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/sr/firefox-68.0.1.tar.bz2"; 405 405 locale = "sr"; 406 406 arch = "linux-x86_64"; 407 - sha512 = "5db4ff2f488d18091e5499a6f32cbca16bc115e5f4cefed50b6d2e6b074a245613a7e1e397ce7c902d2ec227d94b02c11ad1a785cfdb54b6bcf2f16ea54161e7"; 407 + sha512 = "df817b50e802fde8653e24c590fca64099a29b1eb8391527ea2aef19c995c10a51a6674914f933b1d90838ae8a0ea66b5ab309b7cf5f2ad601d0367696499ce5"; 408 408 } 409 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/sv-SE/firefox-68.0.tar.bz2"; 409 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/sv-SE/firefox-68.0.1.tar.bz2"; 410 410 locale = "sv-SE"; 411 411 arch = "linux-x86_64"; 412 - sha512 = "e4e6546b45421837029b4234a6166a170c62167f7353f06f6dad4500c9aa63460c421a64219a258bc1efe2caea4d0def9a37bb62e99b95d7d33744498661b8ae"; 412 + sha512 = "f50094058ee1ae5abf089cd11aa7cabd3435dee79147fec091c18f61c8e6248a79d195fe374e8b5e2a4dd13594bb936c6a7393463fe4c245e2933b26790c94a0"; 413 413 } 414 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/ta/firefox-68.0.tar.bz2"; 414 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/ta/firefox-68.0.1.tar.bz2"; 415 415 locale = "ta"; 416 416 arch = "linux-x86_64"; 417 - sha512 = "c6eca4d784c78d60eeefb65148b7c184d24edf3cd97824cb17c1bcdf234503d2989177a2f11f75b6491cfe98d1c3d55bdf5a8b33317791dbf19dc33e62c46d23"; 417 + sha512 = "31fc4b39d78615d83a2082edc82bce70242b2106d14afc2ee631499a3b3b7c8828ed89252f86c37fb2ef4d8e1fb9a778314b759e3570059771c9a4c1506b27ec"; 418 418 } 419 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/te/firefox-68.0.tar.bz2"; 419 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/te/firefox-68.0.1.tar.bz2"; 420 420 locale = "te"; 421 421 arch = "linux-x86_64"; 422 - sha512 = "df4a964e69ef9809d6e6bf50a3985d89805b3aa27614831a923e064ae58981fd6a10abdf4b91314986a8617a59e10793310a7c0f92897d01402e331da682ad06"; 422 + sha512 = "81ac4e7fa49dc61a476d993709093d05c6853ac74502310c01ba97061cd04590f11c205a4df9ce2ec5c5537feda7b52e42506eda820e4e0fec173d0fa1629da6"; 423 423 } 424 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/th/firefox-68.0.tar.bz2"; 424 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/th/firefox-68.0.1.tar.bz2"; 425 425 locale = "th"; 426 426 arch = "linux-x86_64"; 427 - sha512 = "764bfcbe5b81656959e5736509b3749a3e42c4850800992ce74cdd409b491c57e06c675c1ae5f2571311f0583a0e6ce3ac1f8b0537c5c005ca494e67839d981f"; 427 + sha512 = "477001631c285096f6630541c511a15501ca4c5cfe1a25bf273e4fb505d7376ce0662d392683f33ff0a976f3362c0aa850dad999835679419b98b61cb0d94465"; 428 428 } 429 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/tr/firefox-68.0.tar.bz2"; 429 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/tr/firefox-68.0.1.tar.bz2"; 430 430 locale = "tr"; 431 431 arch = "linux-x86_64"; 432 - sha512 = "580dd7c33ed8e54ee6e9a05cf570bb0d5604a4f602dff9708aa0075d2120fbb011443d134e7adbd53f45ac3405b5796d3d955fb1a33b2de1238b5acdcbfed2a5"; 432 + sha512 = "7d90a8a3aa1f3d06610997ade0ecf9da1b4ea5ecb93252ef254ee9e23280ef9462333a2b041fbc7aa450ca567d8a053c3b415f9f135a2b278b4ac6f466ab6525"; 433 433 } 434 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/uk/firefox-68.0.tar.bz2"; 434 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/uk/firefox-68.0.1.tar.bz2"; 435 435 locale = "uk"; 436 436 arch = "linux-x86_64"; 437 - sha512 = "2e9ba8759ca9478173dd5d8f175cf827b4fef9e8cf778630ddf240554347c0c3ce9e76a2df9ad3f371cf379ddc04b058e9c9a8e0abfaa53236c95c2e088ab82a"; 437 + sha512 = "22ef62d00b6ebb7f0f01e442bcd6ef767ccdc5630b7c732d09d42df3089842a8c9db4a6094b20209de722f7cf903993f19e2e1173682fa71d883a0ecdbba2706"; 438 438 } 439 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/ur/firefox-68.0.tar.bz2"; 439 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/ur/firefox-68.0.1.tar.bz2"; 440 440 locale = "ur"; 441 441 arch = "linux-x86_64"; 442 - sha512 = "5dad30d09dce8ca3b5f8d2dd2bd2bc3bfc0e03cb21b07995e3c1c8364cb0095c16799fca879820998880579c88bd6a1883c2faeb47f53058e35095bd263862f2"; 442 + sha512 = "e21fe585a204a00e1b6b038141f4e8c188076e57c601822005d64b56ad3b4b6285d3de6e6a2dda46833a0e8ffb2c3e34af67bbf0f54c2f11000a9edd4fbe30d2"; 443 443 } 444 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/uz/firefox-68.0.tar.bz2"; 444 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/uz/firefox-68.0.1.tar.bz2"; 445 445 locale = "uz"; 446 446 arch = "linux-x86_64"; 447 - sha512 = "62f894177712c0e1cf536afd93a15d146abb60936416d6fe8172b87e56a510927245aafdd0ca14472e2f938cae63e4773804d258f362fb8bb65b981b2b2928ba"; 447 + sha512 = "c8238c9cb18a9ffb861eec6eec4bcc1335d19e24e1684c592985e380c231f5eb0eb1c311ffb0750efcea9f784f6d9dfa5d4231e1765f53a8d0467479328c0bc1"; 448 448 } 449 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/vi/firefox-68.0.tar.bz2"; 449 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/vi/firefox-68.0.1.tar.bz2"; 450 450 locale = "vi"; 451 451 arch = "linux-x86_64"; 452 - sha512 = "177065bb438cfa27d21d3f371a2a602b00b7f8411b4119e4f7248087ced64d31bef0b3bd8b71f5b55f9a3a3dc2f946f67bd37b74e501bd03d565d94735a26b3a"; 452 + sha512 = "f51f299082f0accb6cf2cb055d361067907a020e60e5e1acebf45313e0065a1ae52e8b60ead16d3a45626492e50d809af36d24fa588395a60a7bd3774671ebcf"; 453 453 } 454 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/xh/firefox-68.0.tar.bz2"; 454 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/xh/firefox-68.0.1.tar.bz2"; 455 455 locale = "xh"; 456 456 arch = "linux-x86_64"; 457 - sha512 = "e9b764770520b1d2caf358e9a0baf27bf693201493ac8008bca4e46d5e918d1d3659c6142d60745944cb4ce9673cb165ce72248527dafc801fa8c2acb4768371"; 457 + sha512 = "5ce836611f3fc95034cd950e727ae7c1080f79ed584a3e4ddb87494e8be790061c0761e34dcfdd381e074e6db5f846a52d9f5821bbe079681e17d91205eecf02"; 458 458 } 459 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/zh-CN/firefox-68.0.tar.bz2"; 459 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/zh-CN/firefox-68.0.1.tar.bz2"; 460 460 locale = "zh-CN"; 461 461 arch = "linux-x86_64"; 462 - sha512 = "3ec5489e08c721fb62c28426d3bc3bbb40005a37b0a7ac0476dabd9e207dd199f8f58f79cdac7cd411baf1b8c3f7bf647db211d509821c0742f4fa104c5ae2cf"; 462 + sha512 = "e48fa39d1c183ed9dfdab93da265d10fa5782e8a9744661ae1b6283344c689c4a63f20f386dbccc7f822fd434865692c1c7f0cdbb44f7f1eeda860ea105aac12"; 463 463 } 464 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/zh-TW/firefox-68.0.tar.bz2"; 464 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/zh-TW/firefox-68.0.1.tar.bz2"; 465 465 locale = "zh-TW"; 466 466 arch = "linux-x86_64"; 467 - sha512 = "318a7f3cbbbebf222ef5524d40bc9b8dbf4d2bdea16b8c81d311ad54872c0c0e4312655b7bdb59029a8092b8a7e9fe6a25c3c85fd637c0a4ed794644eb639841"; 467 + sha512 = "116c39b237985ab27f007fff740e1a7c5adf638f8a05b7e8bd9124671f83c523e4e80294521542986add8399a4754f7551d823b2d689051aa533fee551092416"; 468 468 } 469 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/ach/firefox-68.0.tar.bz2"; 469 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/ach/firefox-68.0.1.tar.bz2"; 470 470 locale = "ach"; 471 471 arch = "linux-i686"; 472 - sha512 = "507638c2bd8840a4abb4b2f5165bd6bd9b2a23179c895563792fa1930826dec9e63be7a494e70af95ce39c051798f81a9cfdadd9b8af0b3f05a6ee12c67d9ab7"; 472 + sha512 = "992f2ce9b0fe7fcb73bc999da0f76269efa6b7deb232a7c20c62706400822ceb6aec932c1b86ff475ae9a2cd173fdb37f481399a8b03b9893e697c217b333845"; 473 473 } 474 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/af/firefox-68.0.tar.bz2"; 474 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/af/firefox-68.0.1.tar.bz2"; 475 475 locale = "af"; 476 476 arch = "linux-i686"; 477 - sha512 = "6c1f477ff2348cb01bff82c6dcaf9902c296831cd4104fbcfa4755688135249a7afaad464f00a2d569d152fd409c50b6b0d6e14b34aa504afc139d7e7a32d3f2"; 477 + sha512 = "0f692c38ebf187b51c177d90d76181911e07ed1956bcd4ebe3dd9df8ac70a4fb38b07eea6c021c4b7efe5441113a4e7cc1df738e1ad773bc48e99ad50edc414d"; 478 478 } 479 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/an/firefox-68.0.tar.bz2"; 479 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/an/firefox-68.0.1.tar.bz2"; 480 480 locale = "an"; 481 481 arch = "linux-i686"; 482 - sha512 = "2a1c9f44a19f717e9831f34afd6b1948572789cbc14183b3c8fa4aeccc74d4d0616124af84e2cdfbc24bb6e709e5c09352183f5a4d8e92e9498f7f41e9b5b10b"; 482 + sha512 = "b9966ad9cd07a9ec998865b78d7d6c6a5995806d49d438354ba5ddff1c982858d1144ce960a1b3c2cf735c7c13c74217741600561f0f03db86a61a07e1dafae9"; 483 483 } 484 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/ar/firefox-68.0.tar.bz2"; 484 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/ar/firefox-68.0.1.tar.bz2"; 485 485 locale = "ar"; 486 486 arch = "linux-i686"; 487 - sha512 = "aa838908e9b6a712e74d786ecb4d32c7a51335fe35d3952b98b685fd7c3e7caf0a18359f24088459f45aced141cecfd58b04e23e56f1e712c42cd4925ceb123f"; 487 + sha512 = "c2fe29032df66698a11c7608979125d888d0ff79a5ffc4544fdddd3cd0401272544ece1b8136edec036f6ec388a6474645bd68873b7d8a3a1ae60e37002913e4"; 488 488 } 489 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/ast/firefox-68.0.tar.bz2"; 489 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/ast/firefox-68.0.1.tar.bz2"; 490 490 locale = "ast"; 491 491 arch = "linux-i686"; 492 - sha512 = "5b4d3101dfc82886478395008a0de194b94b23f1b8beef6f29eefada2289ed60d1593d88ddab6dcf6644670dd0133cd5671a5ac30125db2efeae5407181aecf8"; 492 + sha512 = "4a78956be92a98a291767cb29c8029c07aab2c88eb71f1527188010950c8c34cd94923fcc6bd4e4969e286dae32d3c8673ef61a754e027e2e45e04bf21ef71ca"; 493 493 } 494 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/az/firefox-68.0.tar.bz2"; 494 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/az/firefox-68.0.1.tar.bz2"; 495 495 locale = "az"; 496 496 arch = "linux-i686"; 497 - sha512 = "51faf8a870124f96088c913345a81c665203a2677f9d1e7fc993a2de34c6181c3e3aa86fd02efb0a11f45afbcb27a27e98a875c71d15cf8d2e6b9c9368cf5153"; 497 + sha512 = "e9b88f53294781662f4fcd96f85de5a73de6ad2d9f2c4c10ab9202530a3774cade8a421c32794406dbed0a276bb40a6598db2b8254bb814345eae1eb79fb82e9"; 498 498 } 499 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/be/firefox-68.0.tar.bz2"; 499 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/be/firefox-68.0.1.tar.bz2"; 500 500 locale = "be"; 501 501 arch = "linux-i686"; 502 - sha512 = "4046b43b1d3bdbc721cad19c771450bd02580a29f6d14a6a4c6875b5d6aaa05c4c6afe23d4682246d75a42fe96710cce6f4082395dd67ad2bb2ded7c352b31ff"; 502 + sha512 = "cfb0f17fdde9dc400785ecb1b4951312fc16685d7bd1a3fcd4743b729b831f8b25e92d64bf7366aebc5e3325e12e00a6a7a28cb1b2775755c0ccbbbc02a25b28"; 503 503 } 504 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/bg/firefox-68.0.tar.bz2"; 504 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/bg/firefox-68.0.1.tar.bz2"; 505 505 locale = "bg"; 506 506 arch = "linux-i686"; 507 - sha512 = "bdca1aa33f7dfb5430bea80993a18d12edc7b395907dfa2c687ab6d8e1b6e8d2f684680056da96e2122523d831a8e20b38fdea2ac8570978a3af7768f36d0c2d"; 507 + sha512 = "a2efc640303e0244430c4c9feff0862e5f554cbc62fc63656419dce0099ade9ff6d459aa5d1f8fb243c0e4b129870feb54ee5b18d25603524992edb3c27f3b04"; 508 508 } 509 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/bn/firefox-68.0.tar.bz2"; 509 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/bn/firefox-68.0.1.tar.bz2"; 510 510 locale = "bn"; 511 511 arch = "linux-i686"; 512 - sha512 = "ee90ed4ac7182c42459976f84bec6318482f321abdf2048060c1e279bea6764b96cea64b2876fead39f5c194ff4baafefac189e05d264376e2c7a4afb7137b29"; 512 + sha512 = "91f116045b7658ad6119105c469e6a9791cb5ac37b6f47fdf8f8fb2955836b1d1c474eccf3e51852d69a98a31244b778264b2eb8133afe75db9514407ea2aa32"; 513 513 } 514 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/br/firefox-68.0.tar.bz2"; 514 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/br/firefox-68.0.1.tar.bz2"; 515 515 locale = "br"; 516 516 arch = "linux-i686"; 517 - sha512 = "c697fbb1aebd277d30daa907b99b1e1bac9c883b074db42c24788cce719bd97d036824d517e5c4d88abd92e1db42d3edd7b834a36fb57fbaa3474b45096cca37"; 517 + sha512 = "207e2da1d5fb769799fb3f6e47b3aa28aa4e79a1d9c8a2d63985c22c5628738e12692cac5ce130715796880d3025975ff7a224179374401c6402eebb0385183e"; 518 518 } 519 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/bs/firefox-68.0.tar.bz2"; 519 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/bs/firefox-68.0.1.tar.bz2"; 520 520 locale = "bs"; 521 521 arch = "linux-i686"; 522 - sha512 = "ee20cce9514ceeed247f250da5c685d26f6606d9db46e60786ce46e7807cca81b8b2ace58ecc17dedbcece83313cc8aa7b4b12495f26d4421990597e68a8f617"; 522 + sha512 = "90437aaec77e3f2b63e0e0db35109fbd8b81f76c349e1f1b19a3eb1866beabf63c608cf77b2e720ffebd1f28c092de64932822684aa009cafbe7e88b213570c7"; 523 523 } 524 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/ca/firefox-68.0.tar.bz2"; 524 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/ca/firefox-68.0.1.tar.bz2"; 525 525 locale = "ca"; 526 526 arch = "linux-i686"; 527 - sha512 = "e11f71785eb7ea3b571980cfd214d3c8355122d6a6e5a338a7cfe1a52a43f448580109ed0fa3a5f081cc4b33983473459a41f5a2e89ab06ba924a23f446e05ef"; 527 + sha512 = "9d42c1854e344a776223cab5d7ba06950ee9713398916b90a575106426e5991a5bdcba29f60c695b2f46f9d0a2dab7cc5a19149b0025d46a324e75e876e186b1"; 528 528 } 529 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/cak/firefox-68.0.tar.bz2"; 529 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/cak/firefox-68.0.1.tar.bz2"; 530 530 locale = "cak"; 531 531 arch = "linux-i686"; 532 - sha512 = "7989ba79d408e4d9d277a9ad29bfb8d8d74bc89e68cde6f026a505e941417ea585b762b21f18c0041c65cc7a3a5447b850f74d12cf2484c208430b4c213bbe34"; 532 + sha512 = "dedcaeaf2165229b281af26555b0f219cdf4bde907f5dab190f5ec4fb7bf3360a9b9d45dc4f9bcec27bc5216210b8b79a9b6c1ed0d0569712ceb965b9d094905"; 533 533 } 534 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/cs/firefox-68.0.tar.bz2"; 534 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/cs/firefox-68.0.1.tar.bz2"; 535 535 locale = "cs"; 536 536 arch = "linux-i686"; 537 - sha512 = "1246c3850e8ce51ee7ff844001c1dcb8f50c1e132c22d2ac78865f140248031b0960d5531e115d21e6cf9a6d99f579c902012117045b4153f32e24fa08a77436"; 537 + sha512 = "b551cc15580de7e0f58dbeadad25b74ac50dd15942d3132d14983c239342829f5dee2e7feb9b0e4aa950fd18f3c8be6b80e28ff71c7175c0b905565e59555574"; 538 538 } 539 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/cy/firefox-68.0.tar.bz2"; 539 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/cy/firefox-68.0.1.tar.bz2"; 540 540 locale = "cy"; 541 541 arch = "linux-i686"; 542 - sha512 = "ce07f94f3e5937cc94067b01e59b30d2063ece9b91c0788b0e4ed3c99fa8ae234db42ea19b53e0ef998a478c3ae4fd1d490499bea82082d4c5a2d8374dcb8e19"; 542 + sha512 = "02ec0b98aa8ab3fe1173a193dd7a77519f73fbe406846cc39ebd54633e19b415bf3667e1996aef6aa84f4551d154ef24e8126221def2d4b6df98d34408df59f4"; 543 543 } 544 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/da/firefox-68.0.tar.bz2"; 544 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/da/firefox-68.0.1.tar.bz2"; 545 545 locale = "da"; 546 546 arch = "linux-i686"; 547 - sha512 = "9e78b03982951ba49b4965a6659416ec6ad05a57d38a80036297879c35214c401d69900563ee5a9bcc63be88ef82eadc0a7b77484bd36e1d71ff3ee8e92526b2"; 547 + sha512 = "969e14d63859039d1bad21ed6d0d083536a9becc476ca9ea1a87ff8159aac9711b981d9d34898dadbc161344aeedf529c64b0979bb4a371c778818441c97bf70"; 548 548 } 549 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/de/firefox-68.0.tar.bz2"; 549 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/de/firefox-68.0.1.tar.bz2"; 550 550 locale = "de"; 551 551 arch = "linux-i686"; 552 - sha512 = "c527fc6c30ec28adc873d6aa98e880b90ef3cfb9b5522996a94f5e45075f0248e3e6340bc4b18549bc7c0db98af0e8f9078eeca34aca3e829853dc08d178c32d"; 552 + sha512 = "710ca362783ae98bea8f3f3a0fdf8be05abb051c456118091d27e2854be718a0d28ae8496be8f8ac71fbffd270dee46ce161dedc2dcfc27a411c1e4dae0622e9"; 553 553 } 554 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/dsb/firefox-68.0.tar.bz2"; 554 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/dsb/firefox-68.0.1.tar.bz2"; 555 555 locale = "dsb"; 556 556 arch = "linux-i686"; 557 - sha512 = "38c654c6bc6cf74b50af68ffac1bc1857ee334d0046c178fb1ad620de5e5c8d06348db6bd64717adeb4c938bab95426c0f12df9b9a5575154570214d2c6f57e7"; 557 + sha512 = "c5eadd98981da8e91138267832680e0d3e0e2d38525d91ba68647ed89c15c21d4a245069ad7352669f411433b72fdf262436224df408cad1ae1e9b8d7510326c"; 558 558 } 559 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/el/firefox-68.0.tar.bz2"; 559 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/el/firefox-68.0.1.tar.bz2"; 560 560 locale = "el"; 561 561 arch = "linux-i686"; 562 - sha512 = "05c6fd48d2e8d3d8aa29198867136eec1921f4ed7e3539095be5fa9751d8993de7070c92fc5492d99e91f7609e5fa29eb35b955a489eb7180970f0f904cb1987"; 562 + sha512 = "ad5b36d527c5ae3c5b5b1c44ead91d0cd31d0517657b391c68f446cef1df1dbbfd7eda9661acfee8fb132f2947a929bd54223139a15e4b8b4fb44c0375858c9e"; 563 563 } 564 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/en-CA/firefox-68.0.tar.bz2"; 564 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/en-CA/firefox-68.0.1.tar.bz2"; 565 565 locale = "en-CA"; 566 566 arch = "linux-i686"; 567 - sha512 = "dc86f2395cadfcee44727b7beca3778badbeabd816787d29efafce96fb6ae2dd3c1ec1c22aa2ca2b80c460868cfce602897e1551f2cce960bbb1964b8851b362"; 567 + sha512 = "72f0aeb46b2d5fc59bea781faad79b41d5ceec9f0100d5d82f961057252c74f94903cf5eac679f5711b2984ebb376ca92f5f58a8d46542beb6ed3d482e298df3"; 568 568 } 569 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/en-GB/firefox-68.0.tar.bz2"; 569 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/en-GB/firefox-68.0.1.tar.bz2"; 570 570 locale = "en-GB"; 571 571 arch = "linux-i686"; 572 - sha512 = "863d32935c992fd0f13c7060650e013f98ae6cad34474d8ba537696dd906bb80a753693707e64af8216f51caf83e0b7a124182280533a8d19e9c9262357a42df"; 572 + sha512 = "51ad08d603a664f34ca4a5aa4d24959f587a140ee2ca1d351032441d2ccd28cc478b0bd14138f020e02f1e5c4d2e5e69664dfca095586d30cbedca9034b3f37f"; 573 573 } 574 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/en-US/firefox-68.0.tar.bz2"; 574 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/en-US/firefox-68.0.1.tar.bz2"; 575 575 locale = "en-US"; 576 576 arch = "linux-i686"; 577 - sha512 = "37dfd7d1f901941fa61443729125b6f327cef5d310401834bb35ee6a97ea28967b07b321e239dbf145a5ff55e4c3d28a8492a4c5838794c2862beb0847ce5271"; 577 + sha512 = "ba1d3a34b13c543544f364934dc936d6d1e63e8c62d2d6cf0a503c4a439db5d0d4d5fe88da77932c42a52832016ef197804014930fffc0361c16ff34b7883a7c"; 578 578 } 579 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/eo/firefox-68.0.tar.bz2"; 579 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/eo/firefox-68.0.1.tar.bz2"; 580 580 locale = "eo"; 581 581 arch = "linux-i686"; 582 - sha512 = "cae422321ebf8ff0d39d2c68b5aa92edc02e99cdd749a9fe166c2d6b0ced0ce667b430f29285a89841052c68f2bcd44fe1363bfe594bea9694a9e0461ff5585a"; 582 + sha512 = "55a65074af541dfc4f25639ba1604336f3f77f9a3243f5b11e80387e00f7c9df9cdc6401f1d297341064450678514d3c663bebdc1090b33259151215025e2f7c"; 583 583 } 584 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/es-AR/firefox-68.0.tar.bz2"; 584 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/es-AR/firefox-68.0.1.tar.bz2"; 585 585 locale = "es-AR"; 586 586 arch = "linux-i686"; 587 - sha512 = "a8391bae6d3611685e1727e0f09166d51727cd4718375b4eaff0de918cbdbeb294f72a5502db2858eb81fe99d7b941f03b7483f0c481199f6555a70b0ecb0045"; 587 + sha512 = "c7d82986325f467aa8ef762850fef81cd12e6a5ff2ed8ba2f7d23badd17fe0ed0777572b9a2b18d8addfcefc30b603c7350504b943e005de690da5c48d72db8b"; 588 588 } 589 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/es-CL/firefox-68.0.tar.bz2"; 589 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/es-CL/firefox-68.0.1.tar.bz2"; 590 590 locale = "es-CL"; 591 591 arch = "linux-i686"; 592 - sha512 = "7ca917d51fa0554f66821f37057178b255b0ac127e702d81e4e30b49512c335f6a9947590ad10ec84c533e529022c538b43752b04446e8ffa0150af666abc943"; 592 + sha512 = "88cb20885971219fd11b44becfd72b0622e7b9bc04cb1f9bca03b634399566e3c02222cf3aa10ea039c43a6f2415059b814b6e510c1c4a0f80ce83a3cabff32c"; 593 593 } 594 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/es-ES/firefox-68.0.tar.bz2"; 594 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/es-ES/firefox-68.0.1.tar.bz2"; 595 595 locale = "es-ES"; 596 596 arch = "linux-i686"; 597 - sha512 = "6595348d944cf68072836581890e9a3058ebf5126f4c44b907c8493be51f67f7431e03ddd6f62ea09459b853029ae5c42ef753ce81ae83bd8ef5b99bc3c46f54"; 597 + sha512 = "5105a3c0d613dcf9c5e6bbef8d73428efba49e470d0af5f8a63077e0ecde4e83731efaa71da503e3315eaff05a3cb98e47d7d3ed6ca1fba72678f9e4b2cc1069"; 598 598 } 599 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/es-MX/firefox-68.0.tar.bz2"; 599 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/es-MX/firefox-68.0.1.tar.bz2"; 600 600 locale = "es-MX"; 601 601 arch = "linux-i686"; 602 - sha512 = "1d9317b799a89d0177677c2b7ab10b8260442deab2cab03c6867364f4f4872032e9cf364eeb74036627bcee38bbac173658b5cf9beae82f2440cefd3c6304b84"; 602 + sha512 = "0f793eca6858c63dd38e867c844c0c5ca11928904e67aa50e6613d895ceb49803079e360302851fd37bbbfd6c6ea2566d50c9421e6a4358aae6400f8872a4f6d"; 603 603 } 604 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/et/firefox-68.0.tar.bz2"; 604 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/et/firefox-68.0.1.tar.bz2"; 605 605 locale = "et"; 606 606 arch = "linux-i686"; 607 - sha512 = "6be56086b78fc6190dd812da88e60662216391db92216430ee8c0123a7f2cf95a7456b7ef7a42d34d39c9c37755568d99992a417feac73d8f3b0b4f46e18e821"; 607 + sha512 = "16dceecc270ccdbe998d2bf523f3c8efe7b70b466d754b93b10e782add602a003b6c00ff91d0eb06cdfbe7a5ec752714d5a65837235ba16c62651d9e3fd1b818"; 608 608 } 609 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/eu/firefox-68.0.tar.bz2"; 609 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/eu/firefox-68.0.1.tar.bz2"; 610 610 locale = "eu"; 611 611 arch = "linux-i686"; 612 - sha512 = "e6abb85b38179a6d33f422ac2e69d677febbf47f823b469acd55e737922d76cd09a34af5b1105697f44ba542a85d9d16674f0dada7bae418a9e3d5b8dfa7edba"; 612 + sha512 = "c8785c8af23149595e31e6ffb8305cccbc40e89a60944c3e3db126a6348d43ba3b2db13e3bf9da12d44d515ac8b6ed97c66c73b06592af7f454427afdee0dff5"; 613 613 } 614 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/fa/firefox-68.0.tar.bz2"; 614 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/fa/firefox-68.0.1.tar.bz2"; 615 615 locale = "fa"; 616 616 arch = "linux-i686"; 617 - sha512 = "1f4da6b0f5dc40d653c020365284d33182ea0a115268158f9e22e603ac5f2a951c726518bc859748f955cbc07e032ca0a7c6582e29f9ef1af1cf3a10335bcc49"; 617 + sha512 = "467793f8c9129477053fb1f90b19eb905310b2e3d7e0463b404bd4e2d50f9041fdfde4358d6b86d04d02caddf48ed0f3294ec93bad5edc8a1e5b9e69ee2292b8"; 618 618 } 619 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/ff/firefox-68.0.tar.bz2"; 619 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/ff/firefox-68.0.1.tar.bz2"; 620 620 locale = "ff"; 621 621 arch = "linux-i686"; 622 - sha512 = "c18d91c33414a0bf583b5bcbc09422325e8b974e59e6d161027c68727e6b40f81919e97bf812bce093b1d71d9d0c7a404fe1d4d1e8ecd90e6d2813a2d644d7d5"; 622 + sha512 = "68f76f18b0796d67f8d2d901d3bc4168fab14005b9ede5d01b80a8f151ba5d18700babb6c76d0e36768b32c488fddb48ff85900161804166106ea05ec2700ddf"; 623 623 } 624 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/fi/firefox-68.0.tar.bz2"; 624 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/fi/firefox-68.0.1.tar.bz2"; 625 625 locale = "fi"; 626 626 arch = "linux-i686"; 627 - sha512 = "079a4a418fb93c59c151af61423ae9ed73b36b5ef6811b05ed8e276323ab51a0dbeb7e247147961920f2747561bbebe49cfc8fc95ab9db4ac4056c1814c77e44"; 627 + sha512 = "4a72d9c8989d66eab070a0713deb49b419b0756bb50c889af9895e56bad25da129974f860c4ca7c97a178546bcaff9f7b1c1073d3886cf93b7f55d8627fd7969"; 628 628 } 629 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/fr/firefox-68.0.tar.bz2"; 629 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/fr/firefox-68.0.1.tar.bz2"; 630 630 locale = "fr"; 631 631 arch = "linux-i686"; 632 - sha512 = "b7a668487d9573642f0499e27d7ef7b56ef836f132c3c8c1c58da05477f177489dabcc316297e16ade0405d200c6d66073a883d534b38497e6ed8f20e0973760"; 632 + sha512 = "5375cdad39dd217da9a145a9d3d8c1370371f324321a793393d47c67938cb55796f4c99c1f3ce1ae7fc536263df4ffbcba0be0ab3af7b908b1632b7f3ee9a501"; 633 633 } 634 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/fy-NL/firefox-68.0.tar.bz2"; 634 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/fy-NL/firefox-68.0.1.tar.bz2"; 635 635 locale = "fy-NL"; 636 636 arch = "linux-i686"; 637 - sha512 = "302ab58859a2dad709e20b9593c5020c02964bd6ac71aa21a0f8ad321c12c4ee24a6d24fcdd88735ff60411ac8c137837a2f6f86bff24b415a948d9384a02f65"; 637 + sha512 = "367657456e186a052f5351d4e7f0a94373ed400c94dfd0ca64851a16cbb16e5d8dbb62cd5153a8e7178d7fe83dc22a601838942f9cb658af4624327a6309c0e8"; 638 638 } 639 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/ga-IE/firefox-68.0.tar.bz2"; 639 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/ga-IE/firefox-68.0.1.tar.bz2"; 640 640 locale = "ga-IE"; 641 641 arch = "linux-i686"; 642 - sha512 = "2e47ff4f35e8ee118aae3f655e38f58d9730bf86f6bc12080a514a9761f96f340d3f25f7ac55c4f95fd3118c4f5ff22645c4d26c3973afcc7666f3bdb644082c"; 642 + sha512 = "11fe334d97565e47080c969fce1b979b33c3bcba4aa87992433982483cedb49badb6c456c3e47d57cdca37f7da48100bae120ab7defb78fefd4151da5d2b348a"; 643 643 } 644 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/gd/firefox-68.0.tar.bz2"; 644 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/gd/firefox-68.0.1.tar.bz2"; 645 645 locale = "gd"; 646 646 arch = "linux-i686"; 647 - sha512 = "bbe4c3ed5f57cb6eba8856207d112d350041113cbf72d473b28996de733fdabaac3d83348e6940739a957205f12527c8f11f589456c62243b5a4ec60832644da"; 647 + sha512 = "b11806066cdad015aa9f71e501b108af023ebefb04ee73fcdf6186c29fb0779b6e83d185fb501e5768262bd4850d9cf70ad3ca9db38a3c6c26ec7b4bc67e9552"; 648 648 } 649 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/gl/firefox-68.0.tar.bz2"; 649 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/gl/firefox-68.0.1.tar.bz2"; 650 650 locale = "gl"; 651 651 arch = "linux-i686"; 652 - sha512 = "60214ec1f9aa29b979fb67604b1e16d251a872cadf8c3da604ad0c3d01b7f73cbb756968760873bbfffbb379734caba66016dadc29c8e487cb5641b4a9709a93"; 652 + sha512 = "c4f057d049d58164119c9cebc8c12404afb090a87fa8c70c5c948ab3150e997672a6831fff1437f50319a65f66a40e4b4b174f40b3768184c6e6c060c38f9c6d"; 653 653 } 654 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/gn/firefox-68.0.tar.bz2"; 654 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/gn/firefox-68.0.1.tar.bz2"; 655 655 locale = "gn"; 656 656 arch = "linux-i686"; 657 - sha512 = "485960787162c311d05dd4c028812691e9869dd8b57aa2fb50aae47733545deeada36c6518d060251d1a883377cff787d852648602c554d70e80c652f28a431c"; 657 + sha512 = "376205bfc04eb9d293b7ac618dc30218661c107ead680121163fdb26c7ea43c34b2eb2d5c081b3c1a015fb19c55fbae1792475c7c0c2021efe695fa1f9bbd794"; 658 658 } 659 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/gu-IN/firefox-68.0.tar.bz2"; 659 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/gu-IN/firefox-68.0.1.tar.bz2"; 660 660 locale = "gu-IN"; 661 661 arch = "linux-i686"; 662 - sha512 = "15dbcfb3db5d6e60be14af811f5ae69668a330b4e59abfc75a4e90db91390bf17716d7b25d2d65783df5baf9b0e35babff879bdc26af661f98364f3996972ade"; 662 + sha512 = "35104699fe4b8680ae04ca6371f39227e99fa10d75c78e9615e4a63abae622ec1fccdcfba48cfc6da33bb717bafd55e8a4bc08a7712758f1eef677753f75d93f"; 663 663 } 664 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/he/firefox-68.0.tar.bz2"; 664 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/he/firefox-68.0.1.tar.bz2"; 665 665 locale = "he"; 666 666 arch = "linux-i686"; 667 - sha512 = "8f15a5512ff4c5ab9d94092e8b93d36633b31b8a8c5ddaf2b1621d2607defa01bea3d6496f88aaf6c4769bd16a29b8df7b173667290cd1637e48835832841102"; 667 + sha512 = "5e2471b33a132833eb4c128e5d93f14f9ed03822362461ebfcbb0791eb7e468e5ad49e34266c6a9bc219e5285011307587f2e9098b7864b1a24fba853911fd36"; 668 668 } 669 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/hi-IN/firefox-68.0.tar.bz2"; 669 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/hi-IN/firefox-68.0.1.tar.bz2"; 670 670 locale = "hi-IN"; 671 671 arch = "linux-i686"; 672 - sha512 = "a84d627df710941cf2997ed842f75c0d61e699ca4d2960846dd2a012d87f085b414ae91bce178e1f1cf180ee964f0b40e1741b2408ff9a340005cc56c314bb42"; 672 + sha512 = "b691bd4adc2589a09f780d2a301921d4aadad231e0c9df810085fcbe57d52acdfb801d18ac21bbe7070292d40f009f6d3bf43f7a107b0e58f4bdf98818bcab10"; 673 673 } 674 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/hr/firefox-68.0.tar.bz2"; 674 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/hr/firefox-68.0.1.tar.bz2"; 675 675 locale = "hr"; 676 676 arch = "linux-i686"; 677 - sha512 = "d0deccb5b7d0ff3a8158ed293c84ab015bbf3ab9feef7f881584166db649ff0cd66797856c89b178c81862b0a23a55cc50824a88108cd322d84d4ddced5ae56d"; 677 + sha512 = "199977cdae135d15c6e57194f93425c9058ba0a43f1071c8124c03d154e3b6be9bb1755b77b2313da102a973f82efd427ec195759811e3ce4a780a17d4c66ca1"; 678 678 } 679 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/hsb/firefox-68.0.tar.bz2"; 679 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/hsb/firefox-68.0.1.tar.bz2"; 680 680 locale = "hsb"; 681 681 arch = "linux-i686"; 682 - sha512 = "0d929bbf4350ae0a450eda2258b642dce44d232b18a4942590f5a47a271a6cc5ae2629af0fcfd916402adc593356345f1e92a6f9ba7f479bc7b1be9489349369"; 682 + sha512 = "411f411c6967fb4126637dc86edcaa8dc2d30da1b4898a1b762916f3b42429fe9ced5f4511f8482dcc5d6a3e0864ae1c002d995b559fc29847c4a447e3c35c2d"; 683 683 } 684 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/hu/firefox-68.0.tar.bz2"; 684 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/hu/firefox-68.0.1.tar.bz2"; 685 685 locale = "hu"; 686 686 arch = "linux-i686"; 687 - sha512 = "040b30479f3db19d56daf0cf8541e6ed7da7952be75b3e34b5ba39e4cadb4e48214ab39df5d54f000c2ccd242ef00924ea56de11be1bc6636d9e334a457cfc08"; 687 + sha512 = "b63bb10f875f313af70177212c2fa89c7e7bd0750f2f3a756690ba0e4b447a046b1ed5550527d840b9a6792f9e2e8d9d0dad2d168db2375c1bcaaee7e20b3709"; 688 688 } 689 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/hy-AM/firefox-68.0.tar.bz2"; 689 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/hy-AM/firefox-68.0.1.tar.bz2"; 690 690 locale = "hy-AM"; 691 691 arch = "linux-i686"; 692 - sha512 = "835bdfb4eb527c815e46320a729be1695ba7a56aaabdc19198c6e2029a69979c6716a0640dfe55a8d7b5086643c2352e8adfa0964a5bfbcb831a1a2da287430f"; 692 + sha512 = "aaf4184373fe79fee98e5029c6d869d6799665e561441cc47c25b800d502c5e25fd254945cae950b662093b407761100662928631e285940693ad209043ac2a8"; 693 693 } 694 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/ia/firefox-68.0.tar.bz2"; 694 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/ia/firefox-68.0.1.tar.bz2"; 695 695 locale = "ia"; 696 696 arch = "linux-i686"; 697 - sha512 = "400ea5d0c6dc2b3a4f7c6c054f89de89e836994608ef956016ac5a17ae5893b3a1db8f5951f44f2ef2e76124a88662a6031e975381007925791401d8e7d825da"; 697 + sha512 = "df93e81ce41af39dd54a01485dde96803c1d9fd6be1a514999f6983e71805e25e1abca7469df1c322fdb5b933370a3f1be7040783ee496bb6525bb457eeea8fb"; 698 698 } 699 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/id/firefox-68.0.tar.bz2"; 699 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/id/firefox-68.0.1.tar.bz2"; 700 700 locale = "id"; 701 701 arch = "linux-i686"; 702 - sha512 = "34164d93a3dd8b7dd5a3ecf85f744ce706f33838b202050c4a7c32283e1f09ba6d40232af79b729e9e12d85864c8d8c6f4515b443320a0efcba8eb5bc4421ecb"; 702 + sha512 = "b195ed2de8f83f4dbb5b5f8703407666d29e5d7430bdc92e6373f0c7617ad85d1405acfa7b2634eaedc9c114d9793a5202cdc4051a0636947c99147fcfc76444"; 703 703 } 704 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/is/firefox-68.0.tar.bz2"; 704 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/is/firefox-68.0.1.tar.bz2"; 705 705 locale = "is"; 706 706 arch = "linux-i686"; 707 - sha512 = "5462c980419738e0db5eb9345af198e6d090646e12a70f9cc9c9c65f7732837e9e57d98ddce93d11db47bed9ec661165c17352f699e47239f78308f4e828cf3e"; 707 + sha512 = "4bc445b3d4666f695c48524ebfb5378a2c3914a2f884f6e4a3a83076906f8d8f5c7d87866f04bd5df96092cbcc6f5d204be40fe9a0417b2d9383f2fe6bb2c314"; 708 708 } 709 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/it/firefox-68.0.tar.bz2"; 709 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/it/firefox-68.0.1.tar.bz2"; 710 710 locale = "it"; 711 711 arch = "linux-i686"; 712 - sha512 = "90875707e86b58e0cdd456a59c9dba08cb195f5e945bd0a716ea08ac3839b8143a086941f3a34cc928fead6a74b09f48dd25a61611d53e4cef5343eaee60fef7"; 712 + sha512 = "b07507137aa522f57df53f005ac3c201a6e369bf6a9ec9ebe2c26a91c2d72cd9e065abbecb591e68ccbc151513da7c62aaa0fc49cf99cf2a134331e4a2fe56b5"; 713 713 } 714 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/ja/firefox-68.0.tar.bz2"; 714 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/ja/firefox-68.0.1.tar.bz2"; 715 715 locale = "ja"; 716 716 arch = "linux-i686"; 717 - sha512 = "d80a2152c04ed3a41a5d8c65847d26f7fd7a0003b50625bcc741a3fae3aac5e4b6e9b8f24c718936cf3698c65dbcfc89ebd1c55b1077d64103dd6e1c0293b230"; 717 + sha512 = "f2134162dcae6be75cdc4fd9f94bfe03f89ed6ac80c6b9894cc322f7cbd96bf478d13fea6b17ff082b1c90f8699cbddeeaeaed77e41e0996a1df28cb23cde70b"; 718 718 } 719 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/ka/firefox-68.0.tar.bz2"; 719 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/ka/firefox-68.0.1.tar.bz2"; 720 720 locale = "ka"; 721 721 arch = "linux-i686"; 722 - sha512 = "fee5c2e5ab258e13042a5d582535e5eb67b05e241df7b839f50833740b05afa05fda347e0c8ff8803053799f7d09f7007c4b6e5c647d8e313d9ece535131e247"; 722 + sha512 = "6128c485ad9bc47c3afcb404b07f3afc344957328ab63cb90874179c913e479cc2b910975442a7af01585ce85ec6604fe4cb190e853527d19f29c80d98043c3c"; 723 723 } 724 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/kab/firefox-68.0.tar.bz2"; 724 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/kab/firefox-68.0.1.tar.bz2"; 725 725 locale = "kab"; 726 726 arch = "linux-i686"; 727 - sha512 = "6154ab3d0409d26bc32e503cd68147c1c72b4328c18174a95dd4ac52309ccace8e5dda1d2687867cb784bb682720deaeff17955320c6b6922f807738f25a9cbe"; 727 + sha512 = "9ee4940d57ea364c8f01510d480c0175220a8b5946921bcba87fcc0d21a2cec673ce3e823e17c1637e332bed6c4d8829a404185e583056375009ffb34e963988"; 728 728 } 729 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/kk/firefox-68.0.tar.bz2"; 729 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/kk/firefox-68.0.1.tar.bz2"; 730 730 locale = "kk"; 731 731 arch = "linux-i686"; 732 - sha512 = "c4e628cd9d16ef12e46d8a8dfec3c904e6145c71bea86630622959573ea516a92042726e9ade567f1f6a82a56033392e79e380ff19057026b2500d0626bb390f"; 732 + sha512 = "92255a43141ca91fad054e597acbde26e9468019a5e1b3250ed25372e27ce1a5f3843898060a11a727c3ce38c4e233cf5b10fe0cd658d2d64b17638f207e5224"; 733 733 } 734 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/km/firefox-68.0.tar.bz2"; 734 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/km/firefox-68.0.1.tar.bz2"; 735 735 locale = "km"; 736 736 arch = "linux-i686"; 737 - sha512 = "6323eb37dcc8020287a712364d2a1233aec8556b14ce70d431892889c323100b2cfb45a9e92ed1090cabcb16a2612a6f00e4758eb9c182f20260485ed16be1fd"; 737 + sha512 = "cf9f5eeed7fbb332c18374d070eee9a143643e4e34b6a924cd0c18a6589f68781330d0066f20f495be92cd96889b2770d5b737e8c96be4f0c45fc2b8949ff025"; 738 738 } 739 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/kn/firefox-68.0.tar.bz2"; 739 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/kn/firefox-68.0.1.tar.bz2"; 740 740 locale = "kn"; 741 741 arch = "linux-i686"; 742 - sha512 = "fa2ae302dbc24b87b832a0bc56b36dd172d4506e50a1034b579ae7091d88cda81735db2514c52a42311bcd4497c2545dbd173c7b8eee09885675e836ee9eabcf"; 742 + sha512 = "3091d42eb7820b9b258c0f735ff8d9b00d2c850651916cb209dd28830e2d664b85f56673feece131f7a3531b0f2a808b7f8ddfb1f23fa35c52b98f29cf0ba18c"; 743 743 } 744 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/ko/firefox-68.0.tar.bz2"; 744 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/ko/firefox-68.0.1.tar.bz2"; 745 745 locale = "ko"; 746 746 arch = "linux-i686"; 747 - sha512 = "46356f06c988d22c6d61b0992d827669838bb4019b450f219cc5a5124589ddefc072d97c1fab33927408a02649c579377b9f1a1c23a5b5ff1bd9abb3df663130"; 747 + sha512 = "847e70bb62ba1d12a424fd0e33aa2605c090bea64bf3c4b653661a863f9988c2860eeda9dbea021b1cf67f0808554872d7b74bd73abef39dc104f436fdc1b57c"; 748 748 } 749 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/lij/firefox-68.0.tar.bz2"; 749 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/lij/firefox-68.0.1.tar.bz2"; 750 750 locale = "lij"; 751 751 arch = "linux-i686"; 752 - sha512 = "174427a5da567195811f2d12f60e0b2ab063980a452a60960b591a36e8094d0a495e0dce10b068a0db0793fc6a6327e957caaa27f3bd86293658ce2df1bdf89f"; 752 + sha512 = "f084db30d883189604087432ae8e8bb4958ef44f50e26bf1df5a72b7a2b6b2107bdee3a28f305b619f6fed9f0d800b259e92b8b9554c96e0e9d68426c6dbb97b"; 753 753 } 754 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/lt/firefox-68.0.tar.bz2"; 754 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/lt/firefox-68.0.1.tar.bz2"; 755 755 locale = "lt"; 756 756 arch = "linux-i686"; 757 - sha512 = "39ce98ee07778e7a5275b22a2f68e81bb0363fcebb0371dbfab8b1dfc7aa8f7a755b5e49ef1f3c29b16999a5a3a9403bf1d35309969ea2ff539cfa40608c54f9"; 757 + sha512 = "45aa058345f691fec5efdc309842dd13271e717b87fad43b74f1c7d15e64b991eec667536a333965f5eaa8a3842722dc2b27b1ac29ff59b7da5ba278be2afd3b"; 758 758 } 759 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/lv/firefox-68.0.tar.bz2"; 759 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/lv/firefox-68.0.1.tar.bz2"; 760 760 locale = "lv"; 761 761 arch = "linux-i686"; 762 - sha512 = "d631400d24bd3790ce62e2e9ec5c3e2716fb5849d014d1d57122d5ead7cc9857ba46ab6450bb72bc05b94dc4d6022b693e82713dfd4ab934668c769452e0c1b6"; 762 + sha512 = "07ac2c7c0829d952c9327bc2f9ec354920a5a2b738df6ad639d51c454567498b4ce6daf320046a62a03da082d8880ba455d3de8222003b00142c2f4cfb0ee1f6"; 763 763 } 764 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/mk/firefox-68.0.tar.bz2"; 764 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/mk/firefox-68.0.1.tar.bz2"; 765 765 locale = "mk"; 766 766 arch = "linux-i686"; 767 - sha512 = "eaa6ef0130cb39bc626523ccf6b884554c2abb31e1a506b779bad7b9be3442c95bd6eec0762bfc99f8dede2596173daf907deef7612c6ac86e8d3b26a355913d"; 767 + sha512 = "685369c075265a35f7338f50a87c7e00059fdd5c1ab3dbfdf23753fd30c5bcd3a0eafd546876a5c06aa15731673cf6e8b03d629148ba3894595da7a2215aaac6"; 768 768 } 769 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/mr/firefox-68.0.tar.bz2"; 769 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/mr/firefox-68.0.1.tar.bz2"; 770 770 locale = "mr"; 771 771 arch = "linux-i686"; 772 - sha512 = "48c05b3ce08858113f3c2874029d78041930ba79ead74a6d2b6d836f057763be624f66264210a091a60b92a653b4dce22a5210fd1a7469078612940474a66388"; 772 + sha512 = "3e169297be6530b3a1f0733a22680df25688eacea37377dd763779cfe6ecf9695e904e471821ea3cd6558bddb33a2ca9f6c769a0d7c59467144979a431316b1f"; 773 773 } 774 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/ms/firefox-68.0.tar.bz2"; 774 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/ms/firefox-68.0.1.tar.bz2"; 775 775 locale = "ms"; 776 776 arch = "linux-i686"; 777 - sha512 = "ada772d59677f4c7608617253c34d89df25638816e38533c06dc157b378671fd23b1ad6f1176212748c5330c25753755665c1174164a284b028ca7f078ab9aaf"; 777 + sha512 = "5c32f67a5d9e88c4025d51e80cec6d21be37f4120bab2b2adf69fb82dd44fb0368e2b4ec8e66f8fa13570d35d133b74710f9aa37104459f2a15446261f026149"; 778 778 } 779 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/my/firefox-68.0.tar.bz2"; 779 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/my/firefox-68.0.1.tar.bz2"; 780 780 locale = "my"; 781 781 arch = "linux-i686"; 782 - sha512 = "2f3a3f5d2a8f505106efafad5caf33613ce1929a80c02a0b0138ca6a39c8db0012d7c27b0ee00d1a39d7c7291f52f351feceddc1885a87bd715ac35892fc3d63"; 782 + sha512 = "9829f5e90f7ced1b83052a2741a6776da2f6ad7613ff174b1b92e123962df6ddad76abc1ca51feb9b9324c68baa6100e8306858d515558f2f27a144cddd64647"; 783 783 } 784 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/nb-NO/firefox-68.0.tar.bz2"; 784 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/nb-NO/firefox-68.0.1.tar.bz2"; 785 785 locale = "nb-NO"; 786 786 arch = "linux-i686"; 787 - sha512 = "6c080669b4903e7429252d16a662915ba420e28d8b290686fae7d6194a5077a78ed358488241c92d3dd9f26ba343c8ff9b79b116a92c7af99dcdcb4fdafa46dd"; 787 + sha512 = "5431508873ac32627d8ba28fb5d5863f0b6eaadee0e02c07397c1effc388ea82a568f1d1f91f78230ebdcaa88cfce0a62f890e922c1b2f56889d6cbff95dc983"; 788 788 } 789 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/ne-NP/firefox-68.0.tar.bz2"; 789 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/ne-NP/firefox-68.0.1.tar.bz2"; 790 790 locale = "ne-NP"; 791 791 arch = "linux-i686"; 792 - sha512 = "0d5f08a0c2ddd132fda00c742099323441caedced36994d0521869175af2a0c43c1465623be2299de508407061521dd41eabddb180194d4183ab270cd430f781"; 792 + sha512 = "a5a65a0ee02a83833ad4b8759aa7221ae9af6e12c246a9dde975c19346b5182aa8445f304a0507b89bba6891cdafdd3dfef0b80adb859de95427846c42921d9d"; 793 793 } 794 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/nl/firefox-68.0.tar.bz2"; 794 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/nl/firefox-68.0.1.tar.bz2"; 795 795 locale = "nl"; 796 796 arch = "linux-i686"; 797 - sha512 = "a15d64d1c9d9d4a59fba4cb67e6425cd68ad0b7050b67001909262e9765af0501b3d8a270c321e9b5496bce14a84d77be6fc11e65fd28a54807f707051ee2458"; 797 + sha512 = "d5ba84a3d0a8423e0568060cc6c11bd1490d4701a53f25c8635ec59824208595584f7c61451e0c16ab669c324f2be9c80005cf80c05a394c85b90fa636ae90be"; 798 798 } 799 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/nn-NO/firefox-68.0.tar.bz2"; 799 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/nn-NO/firefox-68.0.1.tar.bz2"; 800 800 locale = "nn-NO"; 801 801 arch = "linux-i686"; 802 - sha512 = "50cfed4352dcc571193fbf832be4ae20486d6f11ca5ef06f46fc24bacea30a431ce99aaff2ecf5f0efcf475cf855be45292080f70664249aa5065b467101a0ce"; 802 + sha512 = "36a7f33a78edd79979c0033ba3c63ab3f680bad2aed051968e9f790776c02c5c2f050402e7ad292cf31fbbb2c73ac81f2c646244ce829cd3e655a6c2ca772bd4"; 803 803 } 804 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/oc/firefox-68.0.tar.bz2"; 804 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/oc/firefox-68.0.1.tar.bz2"; 805 805 locale = "oc"; 806 806 arch = "linux-i686"; 807 - sha512 = "8497da1c9b49ebbb09d70a8e84c76b47868ebaa116127db68eec97e8f336b8aecbd2fd39d7da51f12b166afd9e477d59ce620baf8dc3ae8ae97a2fbf07d627e4"; 807 + sha512 = "8f27e10e5424cceb71ed9e5388289b8bd37ea9003b2003d1d98c140335f80e156f4fceb812565092b98e47071ca4dcabd7afc21f03c7797ef59ea107e66b5e88"; 808 808 } 809 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/pa-IN/firefox-68.0.tar.bz2"; 809 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/pa-IN/firefox-68.0.1.tar.bz2"; 810 810 locale = "pa-IN"; 811 811 arch = "linux-i686"; 812 - sha512 = "e02bab0b8f649f6c1324061fa6efd4f1670f99f9bfa552b344fb3e43ec0cafca4807212f8727ebb2d90d57eefe2b6c18313c8272fe777fa92d9828ebe22dfaf7"; 812 + sha512 = "b01ad4efe6ba519435d11fab4696264d9a92ee8dbc86e2019573e475823cc0fed276fc26de77611deab9197e31d278187c49457a63d122e8e5f8b3a82aa2c128"; 813 813 } 814 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/pl/firefox-68.0.tar.bz2"; 814 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/pl/firefox-68.0.1.tar.bz2"; 815 815 locale = "pl"; 816 816 arch = "linux-i686"; 817 - sha512 = "b88cedc985dce847d9d8504dfd3b726667b9c3596349c4e65e0effd2af3185296f0eeabf412dffa6b523cb63583815c9361979722493884cc4762f81ae3b6507"; 817 + sha512 = "c6dd411c9bd1e8ce0db99e619955e3b036aedc084f9065d71c35daefb66f5745905eadf09bf291975b96ea1ab23aac77f56e26ddc73ff4b608dd3a56f345834b"; 818 818 } 819 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/pt-BR/firefox-68.0.tar.bz2"; 819 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/pt-BR/firefox-68.0.1.tar.bz2"; 820 820 locale = "pt-BR"; 821 821 arch = "linux-i686"; 822 - sha512 = "b82f0f7f3eb071272cce5452e3ad5ea9718fee76c9881e40bedb7862b7dde7bd7b0a07442891feee15d0637ce0023d9ffd98d30950eb2c4157aca1095d44cac0"; 822 + sha512 = "81c9a23041e71610efbdd05a37f4a4112715e002b146366640cee437b2da77c776ec98f030c81c58a7fc87b386f1aff9dbae2890fb99d0663bd61375c6aa7e08"; 823 823 } 824 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/pt-PT/firefox-68.0.tar.bz2"; 824 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/pt-PT/firefox-68.0.1.tar.bz2"; 825 825 locale = "pt-PT"; 826 826 arch = "linux-i686"; 827 - sha512 = "afe28d592dc295acd7140eda084ea6040aa5fc64b548f04bba547c4118d53b243c28e25a7a2e87a5750e500eb31c0b67a9c7881e796dde1451948154b72deddd"; 827 + sha512 = "2d4d770531e166a597fa27c8e95a4586e580a2c872b31aa9a1d7a0ac98fb2571ce368711258d552abdd3205f4beaedfdc0404b8261a047a737f4991abe01ecab"; 828 828 } 829 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/rm/firefox-68.0.tar.bz2"; 829 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/rm/firefox-68.0.1.tar.bz2"; 830 830 locale = "rm"; 831 831 arch = "linux-i686"; 832 - sha512 = "6ba0a99e82345ea09ceead864bf4ce077ef82e6a7c243cab0b6ddf037a1c299ed54198cbe069a8f9f7feb14ec32bd5f3b60dd0c20797b6703493f6ec84e51169"; 832 + sha512 = "2bccb963953f99a92e266a5996819db8cf439244fb3e328ca19d7282a3b9839fb44f3da6c6ac78dbd75c91766b7c7bcd1af8dd61b0562a9ab3a390d0789c930f"; 833 833 } 834 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/ro/firefox-68.0.tar.bz2"; 834 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/ro/firefox-68.0.1.tar.bz2"; 835 835 locale = "ro"; 836 836 arch = "linux-i686"; 837 - sha512 = "27d4f1cfed08d8c51cb76759324af81ef4071352a956e6f4da1fd03e623ebb7f5319b85e27df27f9067b5f86b062d95e381b70c22f00aded622a9371cdbbb5e1"; 837 + sha512 = "8f4f79bbdc55ab8490df7158540ddf79bd75099eea285815f267f72426e8ecc5d8818b9a5617995fb44e3da88d79889f0b2fbd2065a38ab2e04c4d462a5818f8"; 838 838 } 839 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/ru/firefox-68.0.tar.bz2"; 839 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/ru/firefox-68.0.1.tar.bz2"; 840 840 locale = "ru"; 841 841 arch = "linux-i686"; 842 - sha512 = "baef019f8f4450f02571c5dbd42268be8fe17879ea23ae1f9053093e6aa6ba92ae0323e2e24a0061ab41904185fe0afc809d1a3a8c0291b593f2c4065fe3af99"; 842 + sha512 = "8b4d2f096c0833e91e9392a874de9cc1adcf90651c49f95792a4b63219b380fb419a8ff5a2a90bfab4da8ccfb212622f295646d0abcf1a3317780fd4b5fd97b9"; 843 843 } 844 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/si/firefox-68.0.tar.bz2"; 844 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/si/firefox-68.0.1.tar.bz2"; 845 845 locale = "si"; 846 846 arch = "linux-i686"; 847 - sha512 = "8c10604eea95adbcf8aa7e7a76ca0facda741596ea31f3ea9ddbffef6f9e99eee14e5afac25fe2da3df102b3a7a6932661378b90d321a1ccca0ceafed64bd394"; 847 + sha512 = "ff91edbe087b3302692f2cdc22f1f6961560dd752980c6a2d1859a99489e6a6a8bcd872776a795974d4ef7afb5b21acb4d77c9461b34cb949809ff64d3a3744f"; 848 848 } 849 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/sk/firefox-68.0.tar.bz2"; 849 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/sk/firefox-68.0.1.tar.bz2"; 850 850 locale = "sk"; 851 851 arch = "linux-i686"; 852 - sha512 = "973199eb4a590a56eb797e8ecefaa4e435c4a8d7896024e6a1eca1f1d3c2f73924a2724d0cfa74a31a6c50f4afb4c45f61d6f403067243948fd06540ba869aeb"; 852 + sha512 = "94334d2ed2819339b725573284b8ffb5b8a8b7cc210e8ff341d0b54172a72053ea7b501189a2d928c79b62f185a00ac02e8bac4e8f90d44f4088b81cd64999e1"; 853 853 } 854 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/sl/firefox-68.0.tar.bz2"; 854 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/sl/firefox-68.0.1.tar.bz2"; 855 855 locale = "sl"; 856 856 arch = "linux-i686"; 857 - sha512 = "36bbb0113f68a4d040a95c60b5ab796c8562db641c03eccf3edf1272f94a4c1f1850b8588c4c01bd1b5d94d5137ff97441d95037e0b68ed6b776ada171c4ceb5"; 857 + sha512 = "bffdbadea3d80d51ef2f35cebc245d7649970cdded7a98ba6ad8c6d293cd076445c802c376ee5ca76235416e8dac3793888e3e93f83e88598fe7752dbddb9a46"; 858 858 } 859 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/son/firefox-68.0.tar.bz2"; 859 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/son/firefox-68.0.1.tar.bz2"; 860 860 locale = "son"; 861 861 arch = "linux-i686"; 862 - sha512 = "4e243138ad6991b464e0ad9c5cb93788e0a6d30c840d1e31c60517c05d50ceec57075eaa9dd63d789b0030118cc17d98a8ac6014a9b4b0e6fb0a9cf27dbdcd32"; 862 + sha512 = "c38f4605af7ae181514d060cf72060c461d5e78c6f63f0e7c2dfc4a42b8fa929b239e189a33d632ffb1517bd6c73e19bca0fdd96c06456969fd9cff2ee22a23b"; 863 863 } 864 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/sq/firefox-68.0.tar.bz2"; 864 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/sq/firefox-68.0.1.tar.bz2"; 865 865 locale = "sq"; 866 866 arch = "linux-i686"; 867 - sha512 = "3549297c0e4fc4e09250f6f7dd5bec54bbfabea8acfd70fedfecf376f3cffa61c11ab83d68307c4db7c34ba0e5bcef48f88f092312a1e5ab85dde37cbcedfce4"; 867 + sha512 = "6aa2a1a2d2cfcbf2c603e825a5331c831aa49a5a1149dfa4112747d0003ef8025ccc5c0ff35c3893f810749edee45cfd9831e0a11020b1d96e4585e4c014625e"; 868 868 } 869 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/sr/firefox-68.0.tar.bz2"; 869 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/sr/firefox-68.0.1.tar.bz2"; 870 870 locale = "sr"; 871 871 arch = "linux-i686"; 872 - sha512 = "939fb1a0d54053ac1d53c9ad41057e100aec9379bc4960c8788f9f0f0c92ddff2583631d9c64834b708cfc96d2e0e0944b6718e1c366fda4bb20802608b0d9b8"; 872 + sha512 = "c9dcdd960e035e937fda42ea96bfb854d293969dd0a0c46ea1585436c4fd5762e3f8a4154027b4919dc582a6eff4412d69d5ef8b27201ad54c6fd07fd502106e"; 873 873 } 874 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/sv-SE/firefox-68.0.tar.bz2"; 874 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/sv-SE/firefox-68.0.1.tar.bz2"; 875 875 locale = "sv-SE"; 876 876 arch = "linux-i686"; 877 - sha512 = "bdeec5c396c7b00f4d7a4a8d12a002f4ea1c8fdec382874c2424bd5ecd8ffdfb21ea8ef08224c870902b1678111c015f823ebf41588f68c02e0ac96e324077f1"; 877 + sha512 = "97ba9fdad986567f6bf4ca3866bd474390a09114413515bc4df848ca832d9e620e7a0e47210fed1503b7e4103b77ec5ed25e0a605557df74515dca0b511956f5"; 878 878 } 879 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/ta/firefox-68.0.tar.bz2"; 879 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/ta/firefox-68.0.1.tar.bz2"; 880 880 locale = "ta"; 881 881 arch = "linux-i686"; 882 - sha512 = "35ebd3fce76f647b3f1a51bd39e8da5b1103acc8e6e26b65dabaea3d7b25107257d516a5236363c7c500c22d22c11d00dc3026fc3e569d136a56265572e6f50e"; 882 + sha512 = "aec52cc2af72f3b34639435fedde839dfe5da8dfee521e7e987b10587bfd257cc44b848e79df8fda26d35848d47cd56c4732edbd02be8a3be0fda28e9da92237"; 883 883 } 884 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/te/firefox-68.0.tar.bz2"; 884 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/te/firefox-68.0.1.tar.bz2"; 885 885 locale = "te"; 886 886 arch = "linux-i686"; 887 - sha512 = "dcf273cc1bbd7df8cac3c714b07cbb70153485674a7421820a1ee4dfcae5d68f47ed12712088e65b46c1b907dfe69bc4ab1fc67bfeaba7b672eb7b3fccfe22e9"; 887 + sha512 = "bce11fc72ea11b2f5a95f2edb273dfb0829ad49063274427c6b3f1380c6a8cd1c26fbaab0caec241dceaaac96c421cb353a6bb15c28e4943b238ff793ceee39b"; 888 888 } 889 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/th/firefox-68.0.tar.bz2"; 889 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/th/firefox-68.0.1.tar.bz2"; 890 890 locale = "th"; 891 891 arch = "linux-i686"; 892 - sha512 = "a26bf5ed87b9eb40c9539eae142a03a33deb3813e57ad3a8b4828e78a563fcab2630abbbef8c866a499540d44756cd4f5434da854ae04bcd2cfe0df85cd59351"; 892 + sha512 = "8d97c763b0689e315d866fc27642589cd10bc94dc2281a7eacf60b2509a01e9b0312178f4b387dd1dceccaff9235e41308c10f536efb189039c3374829c2894e"; 893 893 } 894 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/tr/firefox-68.0.tar.bz2"; 894 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/tr/firefox-68.0.1.tar.bz2"; 895 895 locale = "tr"; 896 896 arch = "linux-i686"; 897 - sha512 = "b8e0cf35ac9f53895a94dd1df2f71256eec331e1076558f8738dbb04744bfcd1ea672e54df19c7d0be4255d4d259362994acbec72eacc91c21ccc413b990f98c"; 897 + sha512 = "3443bdd68555d8cb36a827ae9cc2a94e26f6718561286ce1ecf8cce9c15822c1daebdcafb90d02c241d9bdb41641397c1e4ee6175f36e764025003a10d420456"; 898 898 } 899 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/uk/firefox-68.0.tar.bz2"; 899 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/uk/firefox-68.0.1.tar.bz2"; 900 900 locale = "uk"; 901 901 arch = "linux-i686"; 902 - sha512 = "50f9a7225ed7130d1f612d0f2a1b7fe6eff93f59836826057ce75a3eeec3ad078e3cff524dc123f1e92ab523342cea724ddc1c09da8a86fb6847ad2dab773ec6"; 902 + sha512 = "25af455760eb79dfbbab7d27dc6b738d9b1800f9043f429b978bd087b19f3c0a690634e7ebe07bb1bd03d9e64d2628ffdf4356c74cd0fb042569660f28fe52e3"; 903 903 } 904 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/ur/firefox-68.0.tar.bz2"; 904 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/ur/firefox-68.0.1.tar.bz2"; 905 905 locale = "ur"; 906 906 arch = "linux-i686"; 907 - sha512 = "5cc90daaacc19954cc9086dcf5b5f747d8303238bb1514f7985c8b5cb9314fddfd425f524417a8ca5e7b50db8241986e43f1a9727b22c7978452802e76ee9716"; 907 + sha512 = "cde44d69bc67bde135be5f7a9a364aded951ae9f1c69a8209bd09e54aff576400effe538d87473ce5cea633494b035d4d98f4dc63fd9dc6b2e33d66eee66d426"; 908 908 } 909 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/uz/firefox-68.0.tar.bz2"; 909 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/uz/firefox-68.0.1.tar.bz2"; 910 910 locale = "uz"; 911 911 arch = "linux-i686"; 912 - sha512 = "7d7d3a69d39451414232fa6ada7c31abe3b0807c6a95147b505b8972828ac8315f130c0893881bfd1b1efc9f8712dbbf71267109f212e171f7606d18e58c3076"; 912 + sha512 = "2c4cfa944e937ec1eb87678eb5a022912b3c8c97a51fccdf673248fc0c06bd0bf175c95ccd26c90c9e9fa02730b0b84f07df5ec5a8be4061c15b494b967ee4cf"; 913 913 } 914 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/vi/firefox-68.0.tar.bz2"; 914 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/vi/firefox-68.0.1.tar.bz2"; 915 915 locale = "vi"; 916 916 arch = "linux-i686"; 917 - sha512 = "fc3edf8262f75c2ea210ea43fd1c8efb067fc955ef8f0486b7be211dee50d6fdba891faaa502cefeca42e860a21d8dafecc9535e1258b7cdcece40b43c07de5e"; 917 + sha512 = "e4039206f13126be5b4ab1fcde6f25ed60054274cba96c2c0cbd3ee37af16275f1e9db9f617b87bcdb5dd81f90b171a444eac194f170b15cad9a9c5d28310cfe"; 918 918 } 919 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/xh/firefox-68.0.tar.bz2"; 919 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/xh/firefox-68.0.1.tar.bz2"; 920 920 locale = "xh"; 921 921 arch = "linux-i686"; 922 - sha512 = "27655e8458d67130500dfd2e1d1700972ed03d2bb47c698aa42460e4315c99f93d2ba833365c1c78ec5b8735e2162a90e74f0393ee0a9106ea6fdca9698e292f"; 922 + sha512 = "7162e25df7626472d4f1878d7f8ff9e8bfdf50fe386f53faf5341449915ad62c4c48bc52e1cc34de664bae4e8fe4546610bb0c98e1678dc1f20ea21a583a5f09"; 923 923 } 924 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/zh-CN/firefox-68.0.tar.bz2"; 924 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/zh-CN/firefox-68.0.1.tar.bz2"; 925 925 locale = "zh-CN"; 926 926 arch = "linux-i686"; 927 - sha512 = "061fac502f7ee5c5afa6946f704eec47756ad39d4107ed75a838d9c420603bb662963d20e18fc5d41d8a0b3d72fefb7857ebc87bb6cb5e3fb7b79af521fde789"; 927 + sha512 = "c2d4c2bf53bed935c38b23e1f31b7b462e676c172682aa7d0c896146b11a050c880af2358dac23b08a3d2faf00750fff928d6174620ac3fda2e77d7e04af71bb"; 928 928 } 929 - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/zh-TW/firefox-68.0.tar.bz2"; 929 + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/zh-TW/firefox-68.0.1.tar.bz2"; 930 930 locale = "zh-TW"; 931 931 arch = "linux-i686"; 932 - sha512 = "3f098a44a58a42b6ad7132fffe32454459e3261815c696278bc204db145c83948b08e254352744bbbaefed665ca3a148152093c81f1324e5b7d34223b9c6aeb4"; 932 + sha512 = "c1d916c1e728596046bd9344798d582ce05592e9ea20ba11094181f89084b029b6c237c93d5d65048be624a3bc7f4913005af74663b75a72817c9d7224b52be9"; 933 933 } 934 934 ]; 935 935 }
+4 -4
pkgs/applications/networking/browsers/firefox/packages.nix
··· 17 17 18 18 firefox = common rec { 19 19 pname = "firefox"; 20 - ffversion = "68.0"; 20 + ffversion = "68.0.1"; 21 21 src = fetchurl { 22 22 url = "mirror://mozilla/firefox/releases/${ffversion}/source/firefox-${ffversion}.source.tar.xz"; 23 - sha512 = "0pg8ww2ldlvdlri0zrzv20x69x00gxshr4afq62pnz7rgrnppkdd0pw5snflisgvpxq1syxcrg5750wz1k4bfjwnyq47jk9h3fzddpw"; 23 + sha512 = "20rqfa5sdaagryk00iywnbap0bmhq1c74pfbxi3pq1cs52qs5nhjqn3xm6910zwcn5nw08i9qd5jkg5blvqrjzw780nh8qbrwsm3d4n"; 24 24 }; 25 25 26 26 patches = [ ··· 99 99 100 100 firefox-esr-68 = common rec { 101 101 pname = "firefox-esr"; 102 - ffversion = "68.0esr"; 102 + ffversion = "68.0.1esr"; 103 103 src = fetchurl { 104 104 url = "mirror://mozilla/firefox/releases/${ffversion}/source/firefox-${ffversion}.source.tar.xz"; 105 - sha512 = "29iqxxwkz2zgk2ppgq05w0bhs8c0938gina5s8brmwn6zn15nv379pa82a9djpzjryl6c5ff0hk0z7gx6n3xvf7w7ky9010h9il0kbg"; 105 + sha512 = "27ncapq18rdlrf0kp5r09spcqazi0g8nbzbfxijs9pi3cvlkayagi3fbbzzq5jkn0n3j580vadc6v1v3zibvdwb5s3c6bz559a7nra2"; 106 106 }; 107 107 108 108 patches = [
+43
pkgs/applications/networking/cluster/sonobuoy/default.nix
··· 1 + { lib, buildGoPackage, fetchFromGitHub }: 2 + 3 + # SHA of ${version} for the tool's help output 4 + let rev = "7ad367535a6710802085d41e0dbb53df359b9882"; 5 + in 6 + buildGoPackage rec { 7 + pname = "sonobuoy"; 8 + version = "0.15.0"; 9 + 10 + goPackagePath = "github.com/heptio/sonobuoy"; 11 + 12 + buildFlagsArray = 13 + let t = "${goPackagePath}"; 14 + in '' 15 + -ldflags= 16 + -s -X ${t}/pkg/buildinfo.Version=${version} 17 + -X ${t}/pkg/buildinfo.GitSHA=${rev} 18 + -X ${t}/pkg/buildDate=unknown 19 + ''; 20 + 21 + src = fetchFromGitHub { 22 + sha256 = "0dkmhmr7calk8mkdxfpy3yjzk10ja4gz1jq8pgk3v8rh04f4h1x5"; 23 + rev = "v${version}"; 24 + repo = "sonobuoy"; 25 + owner = "heptio"; 26 + }; 27 + 28 + meta = with lib; { 29 + description = '' 30 + Diagnostic tool that makes it easier to understand the 31 + state of a Kubernetes cluster. 32 + ''; 33 + longDescription = '' 34 + Sonobuoy is a diagnostic tool that makes it easier to understand the state of 35 + a Kubernetes cluster by running a set of Kubernetes conformance tests in an 36 + accessible and non-destructive manner. 37 + ''; 38 + 39 + homepage = "https://github.com/heptio/sonobuoy"; 40 + license = licenses.asl20; 41 + maintainers = with maintainers; [ carlosdagos ]; 42 + }; 43 + }
+7 -8
pkgs/applications/networking/cluster/tilt/default.nix
··· 1 1 { stdenv, buildGoPackage, fetchFromGitHub }: 2 2 3 3 buildGoPackage rec { 4 - pname = "tilt"; 5 - name = "${pname}-${version}"; 4 + pname = "tilt"; 6 5 /* Do not use "dev" as a version. If you do, Tilt will consider itself 7 6 running in development environment and try to serve assets from the 8 7 source tree, which is not there once build completes. */ 9 - version = "0.8.8"; 10 - rev = "344dc1dc61ffe2c29606b105cea0df79fb5897f5"; 8 + version = "0.9.4"; 11 9 12 10 src = fetchFromGitHub { 13 11 owner = "windmilleng"; 14 - repo = "tilt"; 15 - rev = "${rev}"; 16 - sha256 = "13yda6m2d92mmc9w4k8ngdxmpqcqf86bkrvcpmpaby848ls1yx8g"; 12 + repo = pname; 13 + rev = "v${version}"; 14 + sha256 = "1n1hys9mwqr4jiwl2z5bi2lgbw4rp800hsavih87xzrda1gzvmad"; 17 15 }; 18 16 19 17 goPackagePath = "github.com/windmilleng/tilt"; 18 + 20 19 subPackages = [ "cmd/tilt" ]; 21 20 22 - buildFlagsArray = ("-ldflags=-X main.version=${version} -X main.date=2019-06-03"); 21 + buildFlagsArray = ("-ldflags=-X main.version=${version} -X main.date=2019-07-23"); 23 22 24 23 meta = with stdenv.lib; { 25 24 description = "Local development tool to manage your developer instance when your team deploys to Kubernetes in production";
+2 -2
pkgs/applications/networking/instant-messengers/franz/default.nix
··· 3 3 , gnome2, dbus, nss, nspr, alsaLib, cups, expat, udev, libnotify, xdg_utils }: 4 4 5 5 let 6 - version = "5.1.0"; 6 + version = "5.2.0"; 7 7 in stdenv.mkDerivation rec { 8 8 name = "franz-${version}"; 9 9 src = fetchurl { 10 10 url = "https://github.com/meetfranz/franz/releases/download/v${version}/franz_${version}_amd64.deb"; 11 - sha256 = "a474d2e9c6fb99abfc4c7e9290a0e52eef62233fa25c962afdde75fe151277d0"; 11 + sha256 = "1wlfd1ja38vbjy8y5pg95cpvf5ixkkq53m7v3c24q473jax4ynvg"; 12 12 }; 13 13 14 14 # don't remove runtime deps
+12 -10
pkgs/applications/networking/instant-messengers/slack/default.nix
··· 1 1 { theme ? null, stdenv, fetchurl, dpkg, makeWrapper , alsaLib, atk, cairo, 2 2 cups, curl, dbus, expat, fontconfig, freetype, glib , gnome2, gtk3, gdk-pixbuf, 3 3 libappindicator-gtk3, libnotify, libxcb, nspr, nss, pango , systemd, xorg, 4 - at-spi2-atk, libuuid 4 + at-spi2-atk, libuuid, nodePackages 5 5 }: 6 6 7 7 let 8 8 9 - version = "3.4.2"; 9 + version = "4.0.0"; 10 10 11 11 rpath = stdenv.lib.makeLibraryPath [ 12 12 alsaLib ··· 51 51 if stdenv.hostPlatform.system == "x86_64-linux" then 52 52 fetchurl { 53 53 url = "https://downloads.slack-edge.com/linux_releases/slack-desktop-${version}-amd64.deb"; 54 - sha256 = "0qbj41ymckz8w1p2pazyxg7pimgn9gmpvxz4ygcm0nyivfmw2crq"; 54 + sha256 = "911a4c05fb4f85181df13f013e82440b0d171862c9cb137dc19b6381d47bd57e"; 55 55 } 56 56 else 57 57 throw "Slack is not supported on ${stdenv.hostPlatform.system}"; ··· 66 66 gtk3 # needed for GSETTINGS_SCHEMAS_PATH 67 67 ]; 68 68 69 - nativeBuildInputs = [ makeWrapper ]; 69 + nativeBuildInputs = [ makeWrapper nodePackages.asar ]; 70 70 71 71 dontUnpack = true; 72 72 buildCommand = '' ··· 93 93 --replace /usr/bin/ $out/bin/ \ 94 94 --replace /usr/share/ $out/share/ 95 95 '' + stdenv.lib.optionalString (theme != null) '' 96 - cat <<EOF >> $out/lib/slack/resources/app.asar.unpacked/src/static/ssb-interop.js 96 + asar extract $out/lib/slack/resources/app.asar $out/lib/slack/resources/app.asar.unpacked 97 + cat <<EOF >> $out/lib/slack/resources/app.asar.unpacked/dist/ssb-interop.bundle.js 98 + 97 99 var fs = require('fs'); 98 100 document.addEventListener('DOMContentLoaded', function() { 99 - let tt__customCss = ".menu ul li a:not(.inline_menu_link) {color: #fff !important;}" 100 101 fs.readFile('${theme}/theme.css', 'utf8', function(err, css) { 101 - \$("<style></style>").appendTo('head').html(css + tt__customCss); 102 - \$("<style></style>").appendTo('head').html('#reply_container.upload_in_threads .inline_message_input_container {background: padding-box #545454}'); 103 - \$("<style></style>").appendTo('head').html('.p-channel_sidebar {background: #363636 !important}'); 104 - \$("<style></style>").appendTo('head').html('#client_body:not(.onboarding):not(.feature_global_nav_layout):before {background: inherit;}'); 102 + let s = document.createElement('style'); 103 + s.type = 'text/css'; 104 + s.innerHTML = css; 105 + document.head.appendChild(s); 105 106 }); 106 107 }); 107 108 EOF 109 + asar pack $out/lib/slack/resources/app.asar.unpacked $out/lib/slack/resources/app.asar 108 110 ''; 109 111 110 112 meta = with stdenv.lib; {
+6 -9
pkgs/applications/networking/instant-messengers/teamspeak/server.nix
··· 1 - { stdenv, fetchurl, makeWrapper, autoPatchelfHook }: 1 + { stdenv, fetchurl, autoPatchelfHook }: 2 2 3 3 let 4 - version = "3.8.0"; 5 4 arch = if stdenv.is64bit then "amd64" else "x86"; 6 - libDir = if stdenv.is64bit then "lib64" else "lib"; 7 - in 8 - 9 - stdenv.mkDerivation { 10 - name = "teamspeak-server-${version}"; 5 + in stdenv.mkDerivation rec { 6 + pname = "teamspeak-server"; 7 + version = "3.8.0"; 11 8 12 9 src = fetchurl { 13 10 urls = [ ··· 19 16 else "0p5rqwdsvbria5dzjjm5mj8vfy0zpfs669wpbwxd4g3n4vh03kyw"; 20 17 }; 21 18 22 - nativeBuildInputs = [ makeWrapper autoPatchelfHook ]; 23 - 24 19 buildInputs = [ stdenv.cc.cc ]; 20 + 21 + nativeBuildInputs = [ autoPatchelfHook ]; 25 22 26 23 installPhase = '' 27 24 # Install files.
+10 -7
pkgs/applications/networking/protonmail-bridge/default.nix
··· 1 - { stdenv, fetchurl, lib, qtbase, qtmultimedia, qtsvg, qtdeclarative, qttools, full 2 - , libsecret, libGL, libpulseaudio, glib, wrapQtAppsHook, makeDesktopItem }: 1 + { stdenv, fetchurl, lib, qtbase, qtmultimedia, qtsvg, qtdeclarative, qttools, qtgraphicaleffects, qtquickcontrols2, full 2 + , libsecret, libGL, libpulseaudio, glib, wrapQtAppsHook, makeDesktopItem, mkDerivation }: 3 3 4 4 let 5 - version = "1.1.5-1"; 5 + version = "1.1.6-1"; 6 6 7 7 description = '' 8 8 An application that runs on your computer in the background and seamlessly encrypts ··· 20 20 genericName = "ProtonMail Bridge for Linux"; 21 21 categories = "Utility;Security;Network;Email"; 22 22 }; 23 - in stdenv.mkDerivation rec { 23 + 24 + in mkDerivation rec { 24 25 name = "protonmail-bridge-${version}"; 25 26 26 27 src = fetchurl { 27 28 url = "https://protonmail.com/download/protonmail-bridge_${version}_amd64.deb"; 28 - sha256 = "1y5mphrs60zd6km9z64vskk70q9zzw4g6js7qvgl572wv81w2l75"; 29 + sha256 = "108dql9q5znsqjkrs41pc6psjbg5bz09rdmjl036xxbvsdvq4a8r"; 29 30 }; 30 - 31 - nativeBuildInputs = [ wrapQtAppsHook ]; 32 31 33 32 sourceRoot = "."; 34 33 ··· 51 50 rpath = lib.makeLibraryPath [ 52 51 stdenv.cc.cc.lib 53 52 qtbase 53 + qtquickcontrols2 54 + qtgraphicaleffects 54 55 qtmultimedia 55 56 qtsvg 56 57 qtdeclarative ··· 66 67 --set-rpath "${rpath}" \ 67 68 $out/lib/protonmail-bridge 68 69 ''; 70 + 71 + buildInputs = [ qtbase qtquickcontrols2 qtmultimedia qtgraphicaleffects qtdeclarative ]; 69 72 70 73 meta = with stdenv.lib; { 71 74 homepage = "https://www.protonmail.com/bridge";
+17 -14
pkgs/applications/networking/remote/citrix-workspace/default.nix
··· 22 22 , fontconfig 23 23 , gtk_engines 24 24 , alsaLib 25 - , libidn 26 25 , zlib 27 - , version ? "19.3.0" 26 + , version ? "19.6.0" 28 27 }: 29 28 30 29 let 31 - # In 56e1bdc7f9c (libidn: 1.34 -> 1.35), libidn.so.11 became libidn.so.12. 32 - # Citrix looks for the former so we build version 1.34 to please the binary 33 - libidn_134 = libidn.overrideDerivation (_: rec { 34 - name = "libidn-1.34"; 35 - src = fetchurl { 36 - url = "mirror://gnu/libidn/${name}.tar.gz"; 37 - sha256 = "0g3fzypp0xjcgr90c5cyj57apx1cmy0c6y9lvw2qdcigbyby469p"; 38 - }; 39 - }); 40 - 41 30 versionInfo = let 42 31 supportedVersions = { 43 32 "19.3.0" = { ··· 48 37 x86hash = "1hxgj5lk5ghbpssbqjd404qr84gls967vwrh8ww5hg3pn86kyf8w"; 49 38 x64suffix = "5"; 50 39 x86suffix = "5"; 40 + homepage = https://www.citrix.com/downloads/workspace-app/legacy-workspace-app-for-linux/workspace-app-for-linux-1903.html; 41 + }; 42 + 43 + "19.6.0" = { 44 + major = "19"; 45 + minor = "6"; 46 + patch = "0"; 47 + x64hash = "0szqlfmigzgf0309i6ikxkizxaf4ri7qmhys75m0zi3bpwx6hzhs"; 48 + x86hash = "16v3kgavrh62z6vxcbw6mn7h0bfishpl7m92k7g1p2882r1f8vaf"; 49 + x64suffix = "60"; 50 + x86suffix = "60"; 51 51 homepage = https://www.citrix.com/downloads/workspace-app/linux/workspace-app-for-linux-latest.html; 52 52 }; 53 53 }; 54 54 55 55 # Copied this file largely from the citrix-receiver package 56 56 # Leaving this here even though there are no deprecations yet 57 - # for ease of future maintenance 57 + # for ease of future maintenance. 58 + # 59 + # The lifespans of Citrix products can be found here: 60 + # https://www.citrix.com/support/product-lifecycle/milestones/receiver.html 58 61 deprecatedVersions = let 59 62 versions = [ ]; 60 63 in ··· 117 120 xorg.libXinerama 118 121 xorg.libXfixes 119 122 libpng12 120 - libidn_134 121 123 zlib 122 124 gtk_engines 123 125 freetype ··· 208 210 inherit homepage; 209 211 description = "Citrix Workspace"; 210 212 platforms = platforms.linux; 213 + maintainers = with maintainers; [ ma27 ]; 211 214 }; 212 215 }; 213 216
+2 -2
pkgs/applications/networking/remote/teamviewer/default.nix
··· 3 3 4 4 stdenv.mkDerivation rec { 5 5 name = "teamviewer-${version}"; 6 - version = "14.3.4730"; 6 + version = "14.4.2669"; 7 7 8 8 src = fetchurl { 9 9 url = "https://dl.tvcdn.de/download/linux/version_14x/teamviewer_${version}_amd64.deb"; 10 - sha256 = "1k3vrkgkdh5wvws7xajgjvsqnmig64gnmf75sy7qq6lrpgp5l3nf"; 10 + sha256 = "0vk782xpp8plbaz8cfggp0jrw7n8d5p9lv605pzmgxyq5h8z72za"; 11 11 }; 12 12 13 13 unpackPhase = ''
+2 -2
pkgs/applications/office/qownnotes/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "qownnotes"; 5 - version = "19.6.1"; 5 + version = "19.7.3"; 6 6 7 7 src = fetchurl { 8 8 url = "https://download.tuxfamily.org/${pname}/src/${pname}-${version}.tar.xz"; 9 9 # Can grab official version like so: 10 10 # $ curl https://download.tuxfamily.org/qownnotes/src/qownnotes-19.1.8.tar.xz.sha256 11 - sha256 = "0m56klcs1bq5xhbn2kmlzv8nalscxw6wimrmqjmharif97cyddc6"; 11 + sha256 = "1d4an3yzr77c6pz5cv1vbsrl2v5r62qdckk3l5y5dcv7jikb1l8l"; 12 12 }; 13 13 14 14 nativeBuildInputs = [ qmake qttools ];
+3 -3
pkgs/applications/radio/gnss-sdr/default.nix
··· 5 5 , glog 6 6 , gmock 7 7 , openssl 8 - , google-gflags 8 + , gflags 9 9 , gnuradio 10 10 , orc 11 11 , pkgconfig ··· 31 31 glog 32 32 gmock 33 33 openssl.dev 34 - google-gflags 34 + gflags 35 35 gnuradio 36 36 orc 37 37 pkgconfig ··· 45 45 enableParallelBuilding = true; 46 46 47 47 cmakeFlags = [ 48 - "-DGFlags_ROOT_DIR=${google-gflags}/lib" 48 + "-DGFlags_ROOT_DIR=${gflags}/lib" 49 49 "-DGLOG_INCLUDE_DIR=${glog}/include" 50 50 "-DENABLE_UNIT_TESTING=OFF" 51 51
+28
pkgs/applications/science/biology/est-sfs/default.nix
··· 1 + { stdenv, fetchurl, gsl }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "est-sfs"; 5 + version = "2.03"; 6 + 7 + src = fetchurl { 8 + url = "mirror://sourceforge/est-usfs/${pname}-release-${version}.tar.gz"; 9 + sha256 = "1hvamrgagz0xi89w8qafyd9mjrdpyika8zm22drddnjkp4sdj65n"; 10 + }; 11 + 12 + buildInputs = [ gsl ]; 13 + 14 + installPhase = '' 15 + mkdir -p $out/bin 16 + mkdir -p $out/share/doc/${pname} 17 + cp est-sfs $out/bin 18 + cp est-sfs-documentation.pdf $out/share/doc/${pname} 19 + ''; 20 + 21 + meta = with stdenv.lib; { 22 + homepage = https://sourceforge.net/projects/est-usfs; 23 + description = "Estimate the unfolded site frequency spectrum and ancestral states"; 24 + license = licenses.gpl3; 25 + maintainers = [ maintainers.bzizou ]; 26 + platforms = platforms.all; 27 + }; 28 + }
+2 -2
pkgs/applications/science/logic/cryptoverif/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "cryptoverif-${version}"; 5 - version = "2.01"; 5 + version = "2.01pl1"; 6 6 7 7 src = fetchurl { 8 8 url = "http://prosecco.gforge.inria.fr/personal/bblanche/cryptoverif/cryptoverif${version}.tar.gz"; 9 - sha256 = "122pryci8rsdzv9qszw11g3izh78r2lvd1raahv2j7qmvgi76nab"; 9 + sha256 = "1bkmrv3wsy8mwhrxd3z3br9zgv37c2w6443rm4s9jl0aphcgnbiw"; 10 10 }; 11 11 12 12 buildInputs = [ ocaml ];
+2 -2
pkgs/applications/science/math/caffe/default.nix
··· 3 3 , fetchurl 4 4 , cmake 5 5 , boost 6 - , google-gflags 6 + , gflags 7 7 , glog 8 8 , hdf5-cpp 9 9 , opencv3 ··· 63 63 ++ ["-DUSE_LEVELDB=${toggle leveldbSupport}"] 64 64 ++ ["-DUSE_LMDB=${toggle lmdbSupport}"]; 65 65 66 - buildInputs = [ boost google-gflags glog protobuf hdf5-cpp opencv3 openblas ] 66 + buildInputs = [ boost gflags glog protobuf hdf5-cpp opencv3 openblas ] 67 67 ++ lib.optional cudaSupport cudatoolkit 68 68 ++ lib.optional cudnnSupport cudnn 69 69 ++ lib.optional lmdbSupport lmdb
+150
pkgs/applications/science/math/mathematica/11.nix
··· 1 + { stdenv 2 + , coreutils 3 + , patchelf 4 + , requireFile 5 + , callPackage 6 + , alsaLib 7 + , dbus 8 + , fontconfig 9 + , freetype 10 + , gcc 11 + , glib 12 + , ncurses 13 + , opencv 14 + , openssl 15 + , unixODBC 16 + , xkeyboard_config 17 + , xorg 18 + , zlib 19 + , libxml2 20 + , libuuid 21 + , lang ? "en" 22 + , libGL 23 + , libGLU 24 + }: 25 + 26 + let 27 + l10n = 28 + import ./l10ns.nix { 29 + lib = stdenv.lib; 30 + inherit requireFile lang; 31 + majorVersion = "11"; 32 + }; 33 + in 34 + stdenv.mkDerivation rec { 35 + inherit (l10n) version name src; 36 + 37 + buildInputs = [ 38 + coreutils 39 + patchelf 40 + alsaLib 41 + coreutils 42 + dbus 43 + fontconfig 44 + freetype 45 + gcc.cc 46 + gcc.libc 47 + glib 48 + ncurses 49 + opencv 50 + openssl 51 + unixODBC 52 + xkeyboard_config 53 + libxml2 54 + libuuid 55 + zlib 56 + libGL 57 + libGLU 58 + ] ++ (with xorg; [ 59 + libX11 60 + libXext 61 + libXtst 62 + libXi 63 + libXmu 64 + libXrender 65 + libxcb 66 + libXcursor 67 + libXfixes 68 + libXrandr 69 + libICE 70 + libSM 71 + ]); 72 + 73 + ldpath = stdenv.lib.makeLibraryPath buildInputs 74 + + stdenv.lib.optionalString (stdenv.hostPlatform.system == "x86_64-linux") 75 + (":" + stdenv.lib.makeSearchPathOutput "lib" "lib64" buildInputs); 76 + 77 + phases = "unpackPhase installPhase fixupPhase"; 78 + 79 + unpackPhase = '' 80 + echo "=== Extracting makeself archive ===" 81 + # find offset from file 82 + offset=$(${stdenv.shell} -c "$(grep -axm1 -e 'offset=.*' $src); echo \$offset" $src) 83 + dd if="$src" ibs=$offset skip=1 | tar -xf - 84 + cd Unix 85 + ''; 86 + 87 + installPhase = '' 88 + cd Installer 89 + # don't restrict PATH, that has already been done 90 + sed -i -e 's/^PATH=/# PATH=/' MathInstaller 91 + sed -i -e 's/\/bin\/bash/\/bin\/sh/' MathInstaller 92 + 93 + echo "=== Running MathInstaller ===" 94 + ./MathInstaller -auto -createdir=y -execdir=$out/bin -targetdir=$out/libexec/Mathematica -silent 95 + 96 + # Fix library paths 97 + cd $out/libexec/Mathematica/Executables 98 + for path in mathematica MathKernel Mathematica WolframKernel wolfram math; do 99 + sed -i -e 's#export LD_LIBRARY_PATH$#export LD_LIBRARY_PATH=${zlib}/lib:\''${LD_LIBRARY_PATH}#' $path 100 + done 101 + 102 + # Fix xkeyboard config path for Qt 103 + for path in mathematica Mathematica; do 104 + line=$(grep -n QT_PLUGIN_PATH $path | sed 's/:.*//') 105 + sed -i -e "$line iexport QT_XKB_CONFIG_ROOT=\"${xkeyboard_config}/share/X11/xkb\"" $path 106 + done 107 + ''; 108 + 109 + preFixup = '' 110 + echo "=== PatchElfing away ===" 111 + # This code should be a bit forgiving of errors, unfortunately 112 + set +e 113 + find $out/libexec/Mathematica/SystemFiles -type f -perm -0100 | while read f; do 114 + type=$(readelf -h "$f" 2>/dev/null | grep 'Type:' | sed -e 's/ *Type: *\([A-Z]*\) (.*/\1/') 115 + if [ -z "$type" ]; then 116 + : 117 + elif [ "$type" == "EXEC" ]; then 118 + echo "patching $f executable <<" 119 + patchelf --shrink-rpath "$f" 120 + patchelf \ 121 + --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ 122 + --set-rpath "$(patchelf --print-rpath "$f"):${ldpath}" \ 123 + "$f" \ 124 + && patchelf --shrink-rpath "$f" \ 125 + || echo unable to patch ... ignoring 1>&2 126 + elif [ "$type" == "DYN" ]; then 127 + echo "patching $f library <<" 128 + patchelf \ 129 + --set-rpath "$(patchelf --print-rpath "$f"):${ldpath}" \ 130 + "$f" \ 131 + && patchelf --shrink-rpath "$f" \ 132 + || echo unable to patch ... ignoring 1>&2 133 + else 134 + echo "not patching $f <<: unknown elf type" 135 + fi 136 + done 137 + ''; 138 + 139 + # all binaries are already stripped 140 + dontStrip = true; 141 + 142 + # we did this in prefixup already 143 + dontPatchELF = true; 144 + 145 + meta = { 146 + description = "Wolfram Mathematica computational software system"; 147 + homepage = http://www.wolfram.com/mathematica/; 148 + license = stdenv.lib.licenses.unfree; 149 + }; 150 + }
+12 -10
pkgs/applications/science/math/mathematica/default.nix
··· 1 1 { stdenv 2 2 , coreutils 3 3 , patchelf 4 + , requireFile 4 5 , callPackage 5 6 , alsaLib 6 7 , dbus ··· 24 25 25 26 let 26 27 l10n = 27 - with stdenv.lib; 28 - with callPackage ./l10ns.nix {}; 29 - flip (findFirst (l: l.lang == lang)) l10ns 30 - (throw "Language '${lang}' not supported"); 28 + import ./l10ns.nix { 29 + lib = stdenv.lib; 30 + inherit requireFile lang; 31 + }; 31 32 in 32 33 stdenv.mkDerivation rec { 33 34 inherit (l10n) version name src; ··· 71 72 ldpath = stdenv.lib.makeLibraryPath buildInputs 72 73 + stdenv.lib.optionalString (stdenv.hostPlatform.system == "x86_64-linux") 73 74 (":" + stdenv.lib.makeSearchPathOutput "lib" "lib64" buildInputs); 74 - 75 - phases = "unpackPhase installPhase fixupPhase"; 76 75 77 76 unpackPhase = '' 78 77 echo "=== Extracting makeself archive ===" ··· 99 98 100 99 # Fix xkeyboard config path for Qt 101 100 for path in mathematica Mathematica; do 102 - line=$(grep -n QT_PLUGIN_PATH $path | sed 's/:.*//') 103 - sed -i -e "$line iexport QT_XKB_CONFIG_ROOT=\"${xkeyboard_config}/share/X11/xkb\"" $path 101 + sed -i -e "2iexport QT_XKB_CONFIG_ROOT=\"${xkeyboard_config}/share/X11/xkb\"\n" $path 104 102 done 105 103 ''; 106 104 ··· 134 132 done 135 133 ''; 136 134 135 + dontBuild = true; 136 + 137 137 # all binaries are already stripped 138 138 dontStrip = true; 139 139 140 140 # we did this in prefixup already 141 141 dontPatchELF = true; 142 142 143 - meta = { 143 + meta = with stdenv.lib; { 144 144 description = "Wolfram Mathematica computational software system"; 145 145 homepage = http://www.wolfram.com/mathematica/; 146 - license = stdenv.lib.licenses.unfree; 146 + license = licenses.unfree; 147 + maintainers = with maintainers; [ herberteuler ]; 148 + platforms = [ "x86_64-linux" ]; 147 149 }; 148 150 }
+26 -5
pkgs/applications/science/math/mathematica/l10ns.nix
··· 1 - { lib, requireFile }: 1 + { lib 2 + , requireFile 3 + , lang 4 + , majorVersion ? null 5 + }: 2 6 3 - with lib; 4 - { 5 - l10ns = flip map 7 + let allVersions = with lib; flip map 8 + # N.B. Versions in this list should be ordered from newest to oldest. 6 9 [ 7 10 { 11 + version = "12.0.0"; 12 + lang = "en"; 13 + language = "English"; 14 + sha256 = "b9fb71e1afcc1d72c200196ffa434512d208fa2920e207878433f504e58ae9d7"; 15 + } 16 + { 8 17 version = "11.3.0"; 9 18 lang = "en"; 10 19 language = "English"; ··· 30 39 inherit sha256; 31 40 }; 32 41 }); 33 - } 42 + minVersion = 43 + with lib; 44 + if majorVersion == null 45 + then elemAt (builtins.splitVersion (elemAt allVersions 0).version) 0 46 + else majorVersion; 47 + maxVersion = toString (1 + builtins.fromJSON minVersion); 48 + in 49 + with lib; 50 + findFirst (l: (l.lang == lang 51 + && l.version >= minVersion 52 + && l.version < maxVersion)) 53 + (throw "Version ${minVersion} in language ${lang} not supported") 54 + allVersions
+2 -2
pkgs/applications/science/math/scilab-bin/default.nix
··· 3 3 let 4 4 name = "scilab-bin-${ver}"; 5 5 6 - ver = "6.0.1"; 6 + ver = "6.0.2"; 7 7 8 8 badArch = throw "${name} requires i686-linux or x86_64-linux"; 9 9 ··· 24 24 if stdenv.hostPlatform.system == "i686-linux" then 25 25 "0fgjc2ak3b2qi6yin3fy50qwk2bcj0zbz1h4lyyic9n1n1qcliib" 26 26 else if stdenv.hostPlatform.system == "x86_64-linux" then 27 - "1scswlznc14vyzg0gqa1q9gcpwx05kz1sbn563463mzkdp7nd35d" 27 + "05clcdgry90drirl3swbxn5q36fmgknnhs6h5pr7mmrzfr6r818w" 28 28 else 29 29 badArch; 30 30 };
+4 -4
pkgs/applications/science/misc/openmvs/default.nix
··· 1 1 { stdenv, fetchFromGitHub, pkgconfig, cmake 2 2 , eigen, opencv, ceres-solver, cgal, boost, vcg 3 - , gmp, mpfr, glog, google-gflags, libjpeg_turbo }: 3 + , gmp, mpfr, glog, gflags, libjpeg_turbo }: 4 4 5 5 stdenv.mkDerivation rec { 6 6 name = "openmvs-unstable-2018-05-26"; ··· 12 12 sha256 = "12dgkwwfdp24581y3i41gsd1k9hq0aw917q0ja5s0if4qbmc8pni"; 13 13 }; 14 14 15 - buildInputs = [ eigen opencv ceres-solver cgal boost vcg gmp mpfr glog google-gflags libjpeg_turbo ]; 15 + buildInputs = [ eigen opencv ceres-solver cgal boost vcg gmp mpfr glog gflags libjpeg_turbo ]; 16 16 17 17 nativeBuildInputs = [ cmake pkgconfig ]; 18 18 ··· 28 28 "-DCERES_DIR=${ceres-solver}/lib/cmake/Ceres/" 29 29 ) 30 30 ''; 31 - 31 + 32 32 postFixup = '' 33 33 rp=$(patchelf --print-rpath $out/bin/DensifyPointCloud) 34 34 patchelf --set-rpath $rp:$out/lib/OpenMVS $out/bin/DensifyPointCloud ··· 45 45 rp=$(patchelf --print-rpath $out/bin/TextureMesh) 46 46 patchelf --set-rpath $rp:$out/lib/OpenMVS $out/bin/TextureMesh 47 47 ''; 48 - 48 + 49 49 cmakeDir = "./"; 50 50 51 51 dontUseCmakeBuildDir = true;
+2 -2
pkgs/applications/virtualization/virt-manager/default.nix
··· 15 15 in 16 16 python3Packages.buildPythonApplication rec { 17 17 name = "virt-manager-${version}"; 18 - version = "2.2.0"; 18 + version = "2.2.1"; 19 19 namePrefix = ""; 20 20 21 21 src = fetchurl { 22 22 url = "http://virt-manager.org/download/sources/virt-manager/${name}.tar.gz"; 23 - sha256 = "0186c2fjqm3wdr3wik4fcyl5l3gv5j6sxn18d0vclw83w4yrhjz9"; 23 + sha256 = "06ws0agxlip6p6n3n43knsnjyd91gqhh2dadgc33wl9lx1k8vn6g"; 24 24 }; 25 25 26 26 nativeBuildInputs = [
+2 -2
pkgs/applications/virtualization/x11docker/default.nix
··· 1 1 { stdenv, fetchFromGitHub, makeWrapper, nx-libs, xorg }: 2 2 stdenv.mkDerivation rec { 3 3 name = "x11docker-${version}"; 4 - version = "5.4.4"; 4 + version = "6.0.0"; 5 5 src = fetchFromGitHub { 6 6 owner = "mviereck"; 7 7 repo = "x11docker"; 8 8 rev = "v${version}"; 9 - sha256 = "1p45dyd1zfjxlawsy190q71hwl083f90ryaslslhxsadsi9m64dq"; 9 + sha256 = "1sfdxlh50hv8j3dj5bphihqdyf8s7ixm6ckrmvqgr2y3gak1y840"; 10 10 }; 11 11 nativeBuildInputs = [ makeWrapper ]; 12 12 buildInputs = [ nx-libs xorg.xhost xorg.xinit ];
+6 -4
pkgs/applications/window-managers/compton/default.nix
··· 1 - { stdenv, lib, fetchFromGitHub, pkgconfig, asciidoc, docbook_xml_dtd_45 1 + { stdenv, lib, fetchFromGitHub, pkgconfig, uthash, asciidoc, docbook_xml_dtd_45 2 2 , docbook_xsl, libxslt, libxml2, makeWrapper, meson, ninja 3 3 , xorgproto, libxcb ,xcbutilrenderutil, xcbutilimage, pixman, libev 4 4 , dbus, libconfig, libdrm, libGL, pcre, libX11 5 5 , libXinerama, libXext, xwininfo, libxdg_basedir }: 6 6 stdenv.mkDerivation rec { 7 7 pname = "compton"; 8 - version = "6.2"; 8 + version = "7"; 9 9 10 10 COMPTON_VERSION = "v${version}"; 11 11 ··· 13 13 owner = "yshui"; 14 14 repo = "compton"; 15 15 rev = COMPTON_VERSION; 16 - sha256 = "03fi9q8zw2qrwpkmy1bnavgfh91ci9in5fdi17g4s5s0n2l7yil7"; 16 + sha256 = "0f23dv2p1snlpzc91v38q6896ncz4zqzmh2d97yf66j78g21awas"; 17 + fetchSubmodules = true; 17 18 }; 18 19 19 20 nativeBuildInputs = [ 20 21 meson ninja 21 22 pkgconfig 23 + uthash 22 24 asciidoc 23 25 docbook_xml_dtd_45 24 26 docbook_xsl ··· 41 43 ]; 42 44 43 45 preBuild = '' 44 - git() { echo "v${version}"; } 46 + git() { echo "$COMPTON_VERSION"; } 45 47 export -f git 46 48 ''; 47 49
+10 -7
pkgs/data/fonts/google-fonts/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "google-fonts-${version}"; 5 - version = "2018-07-13"; 5 + version = "2019-07-14"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "google"; 9 9 repo = "fonts"; 10 - rev = "3ca591dae7372a26e254ec6d22e7b453813b9530"; 11 - sha256 = "01ak3dzw2kihwa0dy27x8vvpiscd66mnkf61vj1xn29m4g48y0lr"; 10 + rev = "f113126dc4b9b1473d9354a86129c9d7b837aa1a"; 11 + sha256 = "0safw5prpa63mqcyfw3gr3a535w4c9hg5ayw5pkppiwil7n3pyxs"; 12 12 }; 13 13 14 - outputHashAlgo = "sha256"; 15 - outputHashMode = "recursive"; 16 - outputHash = "1pzm26794nwdbsvjnczpfchxiqa1n1zhp517g6g39wfm1nfszz83"; 17 - 18 14 phases = [ "unpackPhase" "patchPhase" "installPhase" ]; 19 15 20 16 patchPhase = '' ··· 28 24 ofl/mrbedford \ 29 25 ofl/siamreap \ 30 26 ofl/terminaldosislight 27 + 28 + # See comment above, the structure of these is a bit odd 29 + # We keep the ofl/<font>/static/ variants 30 + rm -rv ofl/comfortaa/*.ttf \ 31 + ofl/mavenpro/*.ttf \ 32 + ofl/muli/*.ttf \ 33 + ofl/oswald/*.ttf 31 34 32 35 if find . -name "*.ttf" | sed 's|.*/||' | sort | uniq -c | sort -n | grep -v '^.*1 '; then 33 36 echo "error: duplicate font names"
+2 -2
pkgs/desktops/gnome-3/apps/evolution/default.nix
··· 42 42 43 43 stdenv.mkDerivation rec { 44 44 pname = "evolution"; 45 - version = "3.32.3"; 45 + version = "3.32.4"; 46 46 47 47 src = fetchurl { 48 48 url = "mirror://gnome/sources/evolution/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 49 - sha256 = "0ghwi4mmx6l28dkjx7ayiqcrvmfakqfiyvdg6946v5dcimgsclxn"; 49 + sha256 = "00hmmg4hfns8rq9rcilmy0gi1xkksld27lfbd9zmw2xw37wjmbqh"; 50 50 }; 51 51 52 52 nativeBuildInputs = [
+66 -10
pkgs/desktops/gnome-3/apps/ghex/default.nix
··· 1 - { stdenv, fetchurl, pkgconfig, gnome3, intltool, itstool, libxml2, gtk3, 2 - wrapGAppsHook }: 1 + { stdenv 2 + , fetchurl 3 + , fetchpatch 4 + , pkgconfig 5 + , meson 6 + , ninja 7 + , python3 8 + , gnome3 9 + , hicolor-icon-theme 10 + , desktop-file-utils 11 + , appstream-glib 12 + , gettext 13 + , itstool 14 + , libxml2 15 + , gtk3 16 + , glib 17 + , atk 18 + , wrapGAppsHook 19 + }: 3 20 4 21 stdenv.mkDerivation rec { 5 - name = "ghex-${version}"; 6 - version = "3.18.3"; 22 + pname = "ghex"; 23 + version = "3.18.4"; 24 + 25 + outputs = [ "out" "dev" ]; 7 26 8 27 src = fetchurl { 9 - url = "mirror://gnome/sources/ghex/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz"; 10 - sha256 = "c67450f86f9c09c20768f1af36c11a66faf460ea00fbba628a9089a6804808d3"; 28 + url = "mirror://gnome/sources/ghex/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 29 + sha256 = "1h1pjrr9wynclfykizqd78dbi785wjz6b63p31k87kjvzy8w3nf2"; 11 30 }; 12 31 13 - nativeBuildInputs = [ pkgconfig wrapGAppsHook ]; 32 + nativeBuildInputs = [ 33 + desktop-file-utils 34 + gettext 35 + hicolor-icon-theme # for setup-hook 36 + itstool 37 + meson 38 + ninja 39 + pkgconfig 40 + python3 41 + wrapGAppsHook 42 + ]; 14 43 15 - buildInputs = [ gtk3 intltool itstool libxml2 ]; 44 + buildInputs = [ 45 + gtk3 46 + atk 47 + glib 48 + ]; 49 + 50 + checkInputs = [ 51 + appstream-glib 52 + desktop-file-utils 53 + ]; 54 + 55 + patches = [ 56 + # Fixes for darwin. Drop in next release. 57 + (fetchpatch { 58 + url = "https://gitlab.gnome.org/GNOME/ghex/commit/b0af26666cd990d99076c242b2abb3efc6e98671.patch"; 59 + sha256 = "1zwdkgr2nqrn9q3ydyvrrpn5x55cdi747fhbq6mh6blp9cbrk9b5"; 60 + }) 61 + (fetchpatch { 62 + url = "https://gitlab.gnome.org/GNOME/ghex/commit/cc8ef9e67b23604c402460010dc0b5dccb85391b.patch"; 63 + sha256 = "0j2165rfhlbrlzhmcnirqd5m89ljpz0n3nz20sxbwlc8h42zv36s"; 64 + }) 65 + ]; 66 + 67 + postPatch = '' 68 + chmod +x meson_post_install.py 69 + patchShebangs meson_post_install.py 70 + ''; 16 71 17 72 passthru = { 18 73 updateScript = gnome3.updateScript { 19 74 packageName = "ghex"; 20 - attrPath = "gnome3.ghex"; 75 + attrPath = "gnome3.${pname}"; 21 76 }; 22 77 }; 23 78 24 79 meta = with stdenv.lib; { 25 80 homepage = https://wiki.gnome.org/Apps/Ghex; 26 81 description = "Hex editor for GNOME desktop environment"; 27 - platforms = platforms.linux; 82 + platforms = platforms.unix; 83 + license = licenses.gpl2Plus; 28 84 maintainers = gnome3.maintainers; 29 85 }; 30 86 }
+2 -2
pkgs/desktops/gnome-3/apps/gnome-notes/default.nix
··· 5 5 , gnome3, libxml2, gsettings-desktop-schemas }: 6 6 7 7 let 8 - version = "3.32.1"; 8 + version = "3.32.2"; 9 9 in stdenv.mkDerivation rec { 10 10 name = "gnome-notes-${version}"; 11 11 12 12 src = fetchurl { 13 13 url = "mirror://gnome/sources/bijiben/${stdenv.lib.versions.majorMinor version}/bijiben-${version}.tar.xz"; 14 - sha256 = "02b7afg3ps0hxp5dkb4kv6315ydc2r6bxgk1kamwp581lc7ghd67"; 14 + sha256 = "0chm2fks7cpx3mycxzddpj6v9by203c3m1y6zns5ra43bspwafy2"; 15 15 }; 16 16 17 17 doCheck = true;
+2 -2
pkgs/desktops/gnome-3/core/evolution-data-server/default.nix
··· 6 6 7 7 stdenv.mkDerivation rec { 8 8 name = "evolution-data-server-${version}"; 9 - version = "3.32.3"; 9 + version = "3.32.4"; 10 10 11 11 outputs = [ "out" "dev" ]; 12 12 13 13 src = fetchurl { 14 14 url = "mirror://gnome/sources/evolution-data-server/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz"; 15 - sha256 = "1sx2ywvvwbmphrlqq62srd235ihsj8864d9g8kcbcxwrvn2z70b4"; 15 + sha256 = "0zsc9xwy6ixk3x0dx69ax5isrdw8qxjdxg2i5fr95s40nss7rxl3"; 16 16 }; 17 17 18 18 patches = [
+2 -2
pkgs/desktops/gnome-3/core/gnome-user-docs/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "gnome-user-docs-${version}"; 5 - version = "3.32.2"; 5 + version = "3.32.3"; 6 6 7 7 src = fetchurl { 8 8 url = "mirror://gnome/sources/gnome-user-docs/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz"; 9 - sha256 = "1ny7cwkyskrykzsrabjnlc9jsdl4kdk73smwxas6ddmca02hpm7c"; 9 + sha256 = "0dvsl0ldg8rf7yq0r4dv1pn41s7gjgcqp7agkbflkbmhrl6vbhig"; 10 10 }; 11 11 12 12 passthru = {
+2 -2
pkgs/desktops/gnome-3/core/grilo-plugins/default.nix
··· 28 28 29 29 stdenv.mkDerivation rec { 30 30 pname = "grilo-plugins"; 31 - version = "0.3.8"; 31 + version = "0.3.9"; 32 32 33 33 src = fetchurl { 34 34 url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 35 - sha256 = "0nync07gah3jkpb5ph5d3gwbygmabnih2m3hfz7lkvjl2l5pgpac"; 35 + sha256 = "1hv84b56qjic8vz8iz46ikhrxx31l29ilbr8dm5qcghbd8ikw8j1"; 36 36 }; 37 37 38 38 nativeBuildInputs = [
+20 -11
pkgs/desktops/gnome-3/core/grilo/default.nix
··· 1 1 { stdenv, fetchurl, meson, ninja, pkgconfig, gettext, vala, glib, liboauth, gtk3 2 - , gtk-doc, docbook_xsl, docbook_xml_dtd_43 2 + , gtk-doc, docbook_xsl, docbook_xml_dtd_43, fetchpatch 3 3 , libxml2, gnome3, gobject-introspection, libsoup, totem-pl-parser }: 4 4 5 5 let 6 6 pname = "grilo"; 7 - version = "0.3.7"; # if you change minor, also change ./setup-hook.sh 7 + version = "0.3.9"; # if you change minor, also change ./setup-hook.sh 8 8 in stdenv.mkDerivation rec { 9 9 name = "${pname}-${version}"; 10 10 ··· 13 13 14 14 src = fetchurl { 15 15 url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz"; 16 - sha256 = "1dz965l743r4bhj78wij9k1mb6635gnkb1lnk9j7gw9dd5qsyfza"; 16 + sha256 = "1wnabc69730jsv8dljj5ik8g7p581nw60mw1mkgamkzjcb6821bk"; 17 17 }; 18 18 19 - patches = [ 20 - # Fix meson build: https://gitlab.gnome.org/GNOME/grilo/merge_requests/34 21 - (fetchurl { 22 - url = "https://gitlab.gnome.org/GNOME/grilo/commit/166612aeff09e5fc2fec1f62185c84cbdcf8f889.diff"; 23 - sha256 = "07zamy927iaa7knrwq5yxz7ypl1i02pymkcdrg5l55alhdvb81pw"; 24 - }) 25 - ]; 26 - 27 19 setupHook = ./setup-hook.sh; 28 20 29 21 mesonFlags = [ 30 22 "-Dgtk_doc=true" 23 + ]; 24 + 25 + patches = [ 26 + # https://gitlab.gnome.org/GNOME/grilo/merge_requests/45 27 + # commits are from a separate branch so they shouldn't 404 28 + (fetchpatch { 29 + url = "https://gitlab.gnome.org/worldofpeace/grilo/commit/f6993c2a8a6c1a6246372569f9f7a9179955c95e.patch"; 30 + sha256 = "1x4s0ahs60dqyphgv2dy3x2sjnxv5ydd55kdlcjsys5870ijwbi8"; 31 + }) 32 + (fetchpatch { 33 + url = "https://gitlab.gnome.org/worldofpeace/grilo/commit/61bca28b141162a33eb2fb575ef1daf0f21c7741.patch"; 34 + sha256 = "1147xbmaq61myfwxz0pagdv056krfmh1s78qjbiy5k7k203qrjz0"; 35 + }) 36 + (fetchpatch { 37 + url = "https://gitlab.gnome.org/worldofpeace/grilo/commit/363b198a062eeb8aaa5489ea9720e69d428e885c.patch"; 38 + sha256 = "01w1bfzdbnxy5l37b2z7a9h2mrxziqkzdw02dybjphy85nb0hz5w"; 39 + }) 31 40 ]; 32 41 33 42 nativeBuildInputs = [
+2 -2
pkgs/desktops/gnome-3/misc/nautilus-python/default.nix
··· 14 14 15 15 stdenv.mkDerivation rec { 16 16 pname = "nautilus-python"; 17 - version = "1.2.2"; 17 + version = "1.2.3"; 18 18 19 19 outputs = [ "out" "dev" "doc" ]; 20 20 21 21 src = fetchurl { 22 22 url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 23 - sha256 = "04pib6fan6cq8x0fhf5gll2f5d2dh5pxrhj79qhi5l1yc7ys7kch"; 23 + sha256 = "161050sx3sdxqcpjkjcpf6wl4kx0jydihga7mcvrj9c2f8ly0g07"; 24 24 }; 25 25 26 26 nativeBuildInputs = [
+6 -5
pkgs/development/coq-modules/category-theory/default.nix
··· 8 8 rev = "3b9ba7b26a64d49a55e8b6ccea570a7f32c11ead"; 9 9 sha256 = "0f2nr8dgn1ab7hr7jrdmr1zla9g9h8216q4yf4wnff9qkln8sbbs"; 10 10 }; 11 - v20181016 = { 12 - version = "20181016"; 13 - rev = "8049479c5aee00ed0b92e5edc7c8996aebf48208"; 14 - sha256 = "14f9rlwh8vgmcl6njykvsiwxx0jn623375afixk26mzpy12zdcph"; 11 + v20190414 = { 12 + version = "20190414"; 13 + rev = "706fdb4065cc2302d92ac2bce62cb59713253119"; 14 + sha256 = "16lg4xs2wzbdbsn148xiacgl4wq4xwfqjnjkdhfr3w0qh1s81hay"; 15 15 }; 16 16 in { 17 17 "8.6" = v20180709; 18 18 "8.7" = v20180709; 19 - "8.8" = v20181016; 19 + "8.8" = v20190414; 20 + "8.9" = v20190414; 20 21 }; 21 22 param = params."${coq.coq-version}"; 22 23 in
+12 -6
pkgs/development/coq-modules/equations/default.nix
··· 15 15 }; 16 16 17 17 "8.8" = { 18 - version = "1.2beta2"; 19 - rev = "v1.2-beta2-8.8"; 20 - sha256 = "1v9asdlhhks25ngnjn4dafx7nrcc5p0lhriqckh3y79nxbgpq4lx"; 18 + version = "1.2"; 19 + rev = "v1.2-8.8"; 20 + sha256 = "06452fyzalz7zcjjp73qb7d6xvmqb6skljkivf8pfm55fsc8s7kx"; 21 21 }; 22 22 23 23 "8.9" = { 24 - version = "1.2beta2"; 25 - rev = "v1.2-beta2-8.9"; 26 - sha256 = "0y2zwv7jxs1crprj5qvg46h0v9wyfn99ln40yskq91y9h1lj5h3j"; 24 + version = "1.2"; 25 + rev = "v1.2-8.9"; 26 + sha256 = "1q3wvicr43bgy7xn1diwh4j43mnrhprrc2xd22qlbz9cl6bhf8bj"; 27 + }; 28 + 29 + "8.10" = { 30 + version = "1.2"; 31 + rev = "v1.2-8.10"; 32 + sha256 = "1v5kx0xzxzsbs5r4w08rm1lrmjjggnd3ap0sd1my88ds17jzyasd"; 27 33 }; 28 34 }; 29 35 param = params."${coq.coq-version}";
+2 -2
pkgs/development/interpreters/clojure/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "clojure"; 5 - version = "1.10.1.462"; 5 + version = "1.10.1.466"; 6 6 7 7 src = fetchurl { 8 8 url = "https://download.clojure.org/install/clojure-tools-${version}.tar.gz"; 9 - sha256 = "0mi7fzqvkg2ihigxkkamc742m1iba0yzy8ivciavzmpcnw128sc6"; 9 + sha256 = "1rh4isdac7l8k8p45cqim8lfccjzxw7z173xqnpgk3z307jj4n90"; 10 10 }; 11 11 12 12 buildInputs = [ makeWrapper ];
+2 -2
pkgs/development/interpreters/renpy/default.nix
··· 7 7 8 8 stdenv.mkDerivation rec { 9 9 name = "renpy-${version}"; 10 - version = "7.3.0"; 10 + version = "7.3.2"; 11 11 12 12 meta = with stdenv.lib; { 13 13 description = "Ren'Py Visual Novel Engine"; ··· 18 18 19 19 src = fetchurl { 20 20 url = "https://www.renpy.org/dl/${version}/renpy-${version}-source.tar.bz2"; 21 - sha256 = "18617fgnwnm6kh191h7sqm7nfvrck20llqv2a0dw9am5f08wfvbq"; 21 + sha256 = "1i7s9s8invsm5bavw2jlk965pb5h5vgwyk1nhw0z1d22spmj4a4m"; 22 22 }; 23 23 24 24 patches = [
+1 -1
pkgs/development/libraries/appstream-glib/default.nix
··· 49 49 description = "Objects and helper methods to read and write AppStream metadata"; 50 50 homepage = https://people.freedesktop.org/~hughsient/appstream-glib/; 51 51 license = licenses.lgpl2Plus; 52 - platforms = platforms.linux; 52 + platforms = platforms.unix; 53 53 maintainers = with maintainers; [ lethalman matthewbauer ]; 54 54 }; 55 55 }
+4 -4
pkgs/development/libraries/ceres-solver/default.nix
··· 2 2 , eigen 3 3 , fetchurl 4 4 , cmake 5 - , google-gflags 5 + , gflags 6 6 , glog 7 7 , runTests ? false 8 8 }: 9 9 10 - # google-gflags is required to run tests 11 - assert runTests -> google-gflags != null; 10 + # gflags is required to run tests 11 + assert runTests -> gflags != null; 12 12 13 13 stdenv.mkDerivation rec { 14 14 name = "ceres-solver-${version}"; ··· 21 21 22 22 nativeBuildInputs = [ cmake ]; 23 23 buildInputs = [ eigen glog ] 24 - ++ stdenv.lib.optional runTests google-gflags; 24 + ++ stdenv.lib.optional runTests gflags; 25 25 26 26 # The Basel BUILD file conflicts with the cmake build directory on 27 27 # case-insensitive filesystems, eg. darwin.
+2 -2
pkgs/development/libraries/folly/default.nix
··· 1 1 { stdenv, fetchFromGitHub, cmake, boost, libevent, double-conversion, glog 2 - , google-gflags, libiberty, openssl }: 2 + , gflags, libiberty, openssl }: 3 3 4 4 stdenv.mkDerivation rec { 5 5 name = "folly-${version}"; ··· 19 19 boost 20 20 double-conversion 21 21 glog 22 - google-gflags 22 + gflags 23 23 libevent 24 24 libiberty 25 25 openssl
pkgs/development/libraries/google-gflags/default.nix pkgs/development/libraries/gflags/default.nix
+1 -1
pkgs/development/libraries/gstreamer/good/default.nix
··· 69 69 ] 70 70 ++ optional gtkSupport gtk3 # for gtksink 71 71 ++ optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.Cocoa ] 72 - ++ optionals stdenv.isLinux [ libv4l libpulseaudio libavc1394 libiec61883 libgudev jack2 ] 72 + ++ optionals stdenv.isLinux [ libv4l libpulseaudio libavc1394 libiec61883 libgudev ] 73 73 ++ optionals (stdenv.isLinux && enableJack) [ 74 74 jack2 75 75 ];
+3 -30
pkgs/development/libraries/gvfs/default.nix
··· 1 1 { stdenv, fetchurl, meson, ninja, pkgconfig, gettext, gnome3, dbus 2 - , glib, libgudev, udisks2, libgcrypt, libcap, polkit, fetchpatch 2 + , glib, libgudev, udisks2, libgcrypt, libcap, polkit 3 3 , libgphoto2, avahi, libarchive, fuse, libcdio 4 4 , libxml2, libxslt, docbook_xsl, docbook_xml_dtd_42, samba, libmtp 5 5 , gnomeSupport ? false, gnome, gcr, wrapGAppsHook ··· 9 9 10 10 let 11 11 pname = "gvfs"; 12 - version = "1.40.1"; 12 + version = "1.40.2"; 13 13 in stdenv.mkDerivation rec { 14 14 name = "${pname}-${version}"; 15 15 16 16 src = fetchurl { 17 17 url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz"; 18 - sha256 = "1cfnzamr4mvgpf6yhm28lh9cafy9z6842s8jpbqnfizfxybg8ylj"; 18 + sha256 = "07lpcfric3h0302n9b1pwa38mjb76r9s98kg2867y2d1qvzfivxx"; 19 19 }; 20 - 21 - patches = [ 22 - # CVE-2019-12448 23 - (fetchpatch { 24 - url = "https://gitlab.gnome.org/GNOME/gvfs/commit/464bbc7e4e7fdfc3cb426557562038408b6108c5.patch"; 25 - sha256 = "03fwlpj1vbi80661bbhzv8ddx3czkzv9i1q4h3gqyxi5f1i0xfz4"; 26 - }) 27 - # CVE-2019-12447 28 - (fetchpatch { 29 - url = "https://gitlab.gnome.org/GNOME/gvfs/commit/cf2f9c4020bbdd895485244b70e9442a80062cbe.patch"; 30 - sha256 = "1p7c48nsx1lkv2qpkyrsm9qfa77xwd28gczwcpv2kbji3ws5qgj5"; 31 - }) 32 - (fetchpatch { 33 - url = "https://gitlab.gnome.org/GNOME/gvfs/commit/64156459a366d64ab19187455016929b1026189a.patch"; 34 - sha256 = "0zxbhmgqxxw987ag8fh6yjzjn9jl55fqbn814jh9kwrk7x4prx9x"; 35 - }) 36 - # CVE-2019-12449 37 - (fetchpatch { 38 - url = "https://gitlab.gnome.org/GNOME/gvfs/commit/ec939a01c278d1aaa47153f51b5c5f0887738dd9.patch"; 39 - sha256 = "0hfybfaz2gfx3yyw5ymx6q0pqwkx2r1i7gzprfp80bplwslq0d4h"; 40 - }) 41 - # CVE-2019-12795 42 - (fetchpatch { 43 - url = "https://gitlab.gnome.org/GNOME/gvfs/commit/d8c9138bf240975848b1c54db648ec4cd516a48f.patch"; 44 - sha256 = "1lx6yxykx24mnq5izijqk744zj6rgww6ba76z0qjal4y0z3gsdqp"; 45 - }) 46 - ]; 47 20 48 21 postPatch = '' 49 22 # patchShebangs requires executable file
+2 -2
pkgs/development/libraries/kinetic-cpp-client/default.nix
··· 1 1 { stdenv, fetchgit, fetchurl, cmake, protobuf, libunwind, openssl, glog 2 - , google-gflags, gmock, gtest 2 + , gflags, gmock, gtest 3 3 }: 4 4 5 5 let ··· 25 25 ''; 26 26 27 27 nativeBuildInputs = [ cmake protobuf ]; 28 - buildInputs = [ libunwind glog google-gflags gmock gtest ]; 28 + buildInputs = [ libunwind glog gflags gmock gtest ]; 29 29 30 30 # The headers and library include from these and there is no provided pc file 31 31 propagatedBuildInputs = [ protobuf openssl ];
+2 -2
pkgs/development/libraries/libmediainfo/default.nix
··· 1 1 { stdenv, fetchurl, autoreconfHook, pkgconfig, libzen, zlib }: 2 2 3 3 stdenv.mkDerivation rec { 4 - version = "19.04"; 4 + version = "19.07"; 5 5 name = "libmediainfo-${version}"; 6 6 src = fetchurl { 7 7 url = "https://mediaarea.net/download/source/libmediainfo/${version}/libmediainfo_${version}.tar.xz"; 8 - sha256 = "1yr2vl2z9z1kllr5ygi39r1ryw695cic8yj34yragkk33l1z6xc2"; 8 + sha256 = "0k3d7mha1lay2s09crc9z9zr970l617lb0c3b35wl44flkqf7jss"; 9 9 }; 10 10 11 11 nativeBuildInputs = [ autoreconfHook pkgconfig ];
+2 -2
pkgs/development/libraries/mlt/default.nix
··· 6 6 7 7 stdenv.mkDerivation rec { 8 8 name = "mlt-${version}"; 9 - version = "6.10.0"; 9 + version = "6.16.0"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "mltframework"; 13 13 repo = "mlt"; 14 14 rev = "v${version}"; 15 - sha256 = "0ki86yslr5ywa6sz8pjrgd9a4rn2rr4mss2zkmqi7pq8prgsm1fr"; 15 + sha256 = "1362fv63p34kza9v4b71b6wakgvsa2vdx9y0g28x3yh4cp4k97kx"; 16 16 }; 17 17 18 18 buildInputs = [
+2 -2
pkgs/development/libraries/mlt/qt-5.nix
··· 7 7 8 8 stdenv.mkDerivation rec { 9 9 name = "mlt-${version}"; 10 - version = "6.14.0"; 10 + version = "6.16.0"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "mltframework"; 14 14 repo = "mlt"; 15 15 rev = "v${version}"; 16 - sha256 = "0lxjrd0rsadkfwg86qp0p176kqd9zdfhbmjygmrg5jklmxzd5i25"; 16 + sha256 = "1362fv63p34kza9v4b71b6wakgvsa2vdx9y0g28x3yh4cp4k97kx"; 17 17 }; 18 18 19 19 buildInputs = [
+2 -2
pkgs/development/libraries/opencv/3.x.nix
··· 1 1 { lib, stdenv 2 2 , fetchFromGitHub, fetchpatch 3 3 , cmake, pkgconfig, unzip, zlib, pcre, hdf5 4 - , glog, boost, google-gflags, protobuf 4 + , glog, boost, gflags, protobuf 5 5 , config 6 6 7 7 , enableJPEG ? true, libjpeg ··· 179 179 ''; 180 180 181 181 buildInputs = 182 - [ zlib pcre hdf5 glog boost google-gflags ] 182 + [ zlib pcre hdf5 glog boost gflags ] 183 183 ++ lib.optional useSystemProtobuf protobuf 184 184 ++ lib.optional enablePython pythonPackages.python 185 185 ++ lib.optional enableGtk2 gtk2
+2 -2
pkgs/development/libraries/opencv/4.x.nix
··· 1 1 { lib, stdenv 2 2 , fetchurl, fetchFromGitHub 3 3 , cmake, pkgconfig, unzip, zlib, pcre, hdf5 4 - , glog, boost, google-gflags, protobuf 4 + , glog, boost, gflags, protobuf 5 5 , config 6 6 7 7 , enableJPEG ? true, libjpeg ··· 187 187 ''; 188 188 189 189 buildInputs = 190 - [ zlib pcre hdf5 glog boost google-gflags protobuf ] 190 + [ zlib pcre hdf5 glog boost gflags protobuf ] 191 191 ++ lib.optional enablePython pythonPackages.python 192 192 ++ lib.optional enableGtk2 gtk2 193 193 ++ lib.optional enableGtk3 gtk3
+2 -2
pkgs/development/libraries/science/math/caffe2/default.nix
··· 1 1 { stdenv, lib, config, fetchFromGitHub 2 2 , cmake 3 - , glog, google-gflags, gtest 3 + , glog, gflags, gtest 4 4 , protobuf, snappy 5 5 , python, future, six, python-protobuf, numpy, pydot 6 6 , eigen ··· 74 74 outputs = [ "bin" "out" ]; 75 75 propagatedBuildOutputs = [ ]; # otherwise propagates out -> bin cycle 76 76 77 - buildInputs = [ glog google-gflags protobuf snappy eigen ] 77 + buildInputs = [ glog gflags protobuf snappy eigen ] 78 78 ++ lib.optional useCuda cudatoolkit 79 79 ++ lib.optional useCudnn cudnn 80 80 ++ lib.optional useOpenmp openmp
+3 -3
pkgs/development/libraries/science/math/or-tools/default.nix
··· 1 - { stdenv, fetchFromGitHub, cmake, abseil-cpp, google-gflags, which 1 + { stdenv, fetchFromGitHub, cmake, abseil-cpp, gflags, which 2 2 , lsb-release, glog, protobuf, cbc, zlib 3 3 , ensureNewerSourcesForZipFilesHook, python, swig 4 4 , pythonProtobuf }: ··· 21 21 configurePhase = '' 22 22 cat <<EOF > Makefile.local 23 23 UNIX_ABSL_DIR=${abseil-cpp} 24 - UNIX_GFLAGS_DIR=${google-gflags} 24 + UNIX_GFLAGS_DIR=${gflags} 25 25 UNIX_GLOG_DIR=${glog} 26 26 UNIX_PROTOBUF_DIR=${protobuf} 27 27 UNIX_CBC_DIR=${cbc} ··· 50 50 python.pkgs.setuptools python.pkgs.wheel 51 51 ]; 52 52 propagatedBuildInputs = [ 53 - abseil-cpp google-gflags glog protobuf cbc 53 + abseil-cpp gflags glog protobuf cbc 54 54 pythonProtobuf python.pkgs.six 55 55 ]; 56 56
+2 -2
pkgs/development/libraries/wxSVG/default.nix
··· 7 7 8 8 name = "wxSVG-${version}"; 9 9 srcName = "wxsvg-${version}"; 10 - version = "1.5.18"; 10 + version = "1.5.19"; 11 11 12 12 src = fetchurl { 13 13 url = "mirror://sourceforge/project/wxsvg/wxsvg/${version}/${srcName}.tar.bz2"; 14 - sha256 = "0rzjrjx3vaz2z89zw5yv8qxclfpz7hpb17rgkib0a2r3kax2jz2h"; 14 + sha256 = "17hgaqxf2y44j1d9z11p107sk7n7m1f9nkaz7z6450pan4zphy1z"; 15 15 }; 16 16 17 17 nativeBuildInputs = [ pkgconfig ];
+4
pkgs/development/node-packages/default-v10.nix
··· 125 125 nodePackages.node-pre-gyp 126 126 ]; 127 127 }; 128 + 129 + thelounge = nodePackages.thelounge.override { 130 + buildInputs = [ nodePackages.node-pre-gyp ]; 131 + }; 128 132 }
+3 -1
pkgs/development/node-packages/node-packages-v10.json
··· 1 1 [ 2 2 "@angular/cli" 3 + , "@antora/cli" 4 + , "@antora/site-generator-default" 3 5 , "asar" 4 - , "@antora/cli" 5 6 , "aws-azure-login" 6 7 , "azure-functions-core-tools" 7 8 , "bash-language-server" ··· 126 127 , "textlint-rule-terminology" 127 128 , "textlint-rule-unexpanded-acronym" 128 129 , "textlint-rule-write-good" 130 + , "thelounge" 129 131 , "three" 130 132 , "tiddlywiki" 131 133 , "triton"
+1484 -184
pkgs/development/node-packages/node-packages-v10.nix
··· 40 40 sha512 = "Di/3vPR4jwdYcMAk13t19sAF0qQUH8KSkFcmO/5E/gECTL1tXNvV690K1Vhn6zpeE17Z1MLB5HwRNcb6nJkD+Q=="; 41 41 }; 42 42 }; 43 + "@antora/asciidoc-loader-2.0.0" = { 44 + name = "_at_antora_slash_asciidoc-loader"; 45 + packageName = "@antora/asciidoc-loader"; 46 + version = "2.0.0"; 47 + src = fetchurl { 48 + url = "https://registry.npmjs.org/@antora/asciidoc-loader/-/asciidoc-loader-2.0.0.tgz"; 49 + sha512 = "kbpSBMM618Do5dXtG5mC5kk8VEXYDsciJ0orw7vrYeFzRBbR4Y4qpzbsQeuQNB4r2iLoztxErvg04SBb5CsGdQ=="; 50 + }; 51 + }; 52 + "@antora/content-aggregator-2.0.0" = { 53 + name = "_at_antora_slash_content-aggregator"; 54 + packageName = "@antora/content-aggregator"; 55 + version = "2.0.0"; 56 + src = fetchurl { 57 + url = "https://registry.npmjs.org/@antora/content-aggregator/-/content-aggregator-2.0.0.tgz"; 58 + sha512 = "24JQSDQZ609yJHs7abIqF5FikNg0EWvFwBYck1Kbl5vRikmDTpSMBhhPKJhAVe4lREm6/FVYO7t9CEmjp69prA=="; 59 + }; 60 + }; 61 + "@antora/content-classifier-2.0.0" = { 62 + name = "_at_antora_slash_content-classifier"; 63 + packageName = "@antora/content-classifier"; 64 + version = "2.0.0"; 65 + src = fetchurl { 66 + url = "https://registry.npmjs.org/@antora/content-classifier/-/content-classifier-2.0.0.tgz"; 67 + sha512 = "d1MB57X3AaXy30rw+dudxbJ2cdw/Uk1U4JxHbWIkdrEJKty2fbnBu3xjyb70qAv5G0ayovJpqZOaR+YwS0ibbQ=="; 68 + }; 69 + }; 70 + "@antora/document-converter-2.0.0" = { 71 + name = "_at_antora_slash_document-converter"; 72 + packageName = "@antora/document-converter"; 73 + version = "2.0.0"; 74 + src = fetchurl { 75 + url = "https://registry.npmjs.org/@antora/document-converter/-/document-converter-2.0.0.tgz"; 76 + sha512 = "8slnLdeMxI4kU64fMsNp58HjpFYZ7chrl5tCYr1/4Jr00fVHwn8vx2YS1cKyowcrmb9uG6YI/pMNt9F3kjTtYA=="; 77 + }; 78 + }; 79 + "@antora/expand-path-helper-1.0.0" = { 80 + name = "_at_antora_slash_expand-path-helper"; 81 + packageName = "@antora/expand-path-helper"; 82 + version = "1.0.0"; 83 + src = fetchurl { 84 + url = "https://registry.npmjs.org/@antora/expand-path-helper/-/expand-path-helper-1.0.0.tgz"; 85 + sha512 = "hg3y6M3OvRTb7jtLAnwwloYDxafbyKYttcf16kGCXvP7Wqosh7c+Ag+ltaZ7VSebpzpphO/umb/BXdpU7rxapw=="; 86 + }; 87 + }; 88 + "@antora/navigation-builder-2.0.0" = { 89 + name = "_at_antora_slash_navigation-builder"; 90 + packageName = "@antora/navigation-builder"; 91 + version = "2.0.0"; 92 + src = fetchurl { 93 + url = "https://registry.npmjs.org/@antora/navigation-builder/-/navigation-builder-2.0.0.tgz"; 94 + sha512 = "tuI2dNDy9sqgkHoiqn52M0lWrxxOafrEUIPSskjyGf0MjFP3pBPKnHiBmAl2r+NhXCAfcIb5khe4rSS18bfiVA=="; 95 + }; 96 + }; 97 + "@antora/page-composer-2.0.0" = { 98 + name = "_at_antora_slash_page-composer"; 99 + packageName = "@antora/page-composer"; 100 + version = "2.0.0"; 101 + src = fetchurl { 102 + url = "https://registry.npmjs.org/@antora/page-composer/-/page-composer-2.0.0.tgz"; 103 + sha512 = "1I0vhO6UCyNJRLYICTU+jCTEmkHeJ13tao0nfOOAiSyamDkyX7vM935qfzGBjwZdur8Clq4jpiCuvFTmXMtIfQ=="; 104 + }; 105 + }; 43 106 "@antora/playbook-builder-2.0.0" = { 44 107 name = "_at_antora_slash_playbook-builder"; 45 108 packageName = "@antora/playbook-builder"; ··· 47 110 src = fetchurl { 48 111 url = "https://registry.npmjs.org/@antora/playbook-builder/-/playbook-builder-2.0.0.tgz"; 49 112 sha512 = "uLU4+rpIRZiMit8s1lkbiz5L5V8cPL40RJMRHFb4B7k2PXbvNiZZAMHZBeFgVwfJIKmKAIeUCDgOHgiBIlFc+A=="; 113 + }; 114 + }; 115 + "@antora/redirect-producer-2.0.0" = { 116 + name = "_at_antora_slash_redirect-producer"; 117 + packageName = "@antora/redirect-producer"; 118 + version = "2.0.0"; 119 + src = fetchurl { 120 + url = "https://registry.npmjs.org/@antora/redirect-producer/-/redirect-producer-2.0.0.tgz"; 121 + sha512 = "qlRPGNAhtbIOWK9XHEdH4Iiaz1/8SBvm5rK46R4YinjZqMibMehOfFoIdRf2qsE9mfOsYKwKUSF8Jnv/emXuJw=="; 122 + }; 123 + }; 124 + "@antora/site-mapper-2.0.0" = { 125 + name = "_at_antora_slash_site-mapper"; 126 + packageName = "@antora/site-mapper"; 127 + version = "2.0.0"; 128 + src = fetchurl { 129 + url = "https://registry.npmjs.org/@antora/site-mapper/-/site-mapper-2.0.0.tgz"; 130 + sha512 = "rPpDLuJbM7c0fNpzf95qrxsjzNAXuyACXE+FXUOwmFp3SYIFGEWATLk1MMNes7SfLAchMMVwjEr1Uii3D5+/Mw=="; 131 + }; 132 + }; 133 + "@antora/site-publisher-2.0.0" = { 134 + name = "_at_antora_slash_site-publisher"; 135 + packageName = "@antora/site-publisher"; 136 + version = "2.0.0"; 137 + src = fetchurl { 138 + url = "https://registry.npmjs.org/@antora/site-publisher/-/site-publisher-2.0.0.tgz"; 139 + sha512 = "kjKfQSEpcLiw653h9IzCG+L9sYm/v9GXAcbzXN1IYoNPO1Od0EPQ2RXGviqeQNYcWJLyRq48cQpNx7o2/KqVag=="; 140 + }; 141 + }; 142 + "@antora/ui-loader-2.0.0" = { 143 + name = "_at_antora_slash_ui-loader"; 144 + packageName = "@antora/ui-loader"; 145 + version = "2.0.0"; 146 + src = fetchurl { 147 + url = "https://registry.npmjs.org/@antora/ui-loader/-/ui-loader-2.0.0.tgz"; 148 + sha512 = "CaD+Dp13G7EZhEr6Jg6OEvPHjJZ2FROXwdaY4XP+vBrKmI+QZwS3V+uG0NYbCRxhR1W8N8CYm5hc1UTvGH19cA=="; 50 149 }; 51 150 }; 52 151 "@apollographql/apollo-tools-0.3.7" = { ··· 1336 1435 sha512 = "CNVsCrMge/jq6DCT5buNZ8PACY9RTvPJbCNoIcndfkJOCsNxOx9dnc5qw4pHZdHi8GS6l3qlgkuFKp33iD8J2Q=="; 1337 1436 }; 1338 1437 }; 1339 - "@lerna/add-3.16.1" = { 1438 + "@lerna/add-3.16.2" = { 1340 1439 name = "_at_lerna_slash_add"; 1341 1440 packageName = "@lerna/add"; 1342 - version = "3.16.1"; 1441 + version = "3.16.2"; 1343 1442 src = fetchurl { 1344 - url = "https://registry.npmjs.org/@lerna/add/-/add-3.16.1.tgz"; 1345 - sha512 = "zk1ldthrXPl+Xuj0vVD3JYqTQzU+qKv8sOvvQrBXimuf/d+r+LJc10DXPGaCE9LwPeLgkrpPbIOQ7tTtkh0xGg=="; 1443 + url = "https://registry.npmjs.org/@lerna/add/-/add-3.16.2.tgz"; 1444 + sha512 = "RAAaF8aODPogj2Ge9Wj3uxPFIBGpog9M+HwSuq03ZnkkO831AmasCTJDqV+GEpl1U2DvnhZQEwHpWmTT0uUeEw=="; 1346 1445 }; 1347 1446 }; 1348 1447 "@lerna/batch-packages-3.16.0" = { ··· 1354 1453 sha512 = "7AdMkANpubY/FKFI01im01tlx6ygOBJ/0JcixMUWoWP/7Ds3SWQF22ID6fbBr38jUWptYLDs2fagtTDL7YUPuA=="; 1355 1454 }; 1356 1455 }; 1357 - "@lerna/bootstrap-3.16.1" = { 1456 + "@lerna/bootstrap-3.16.2" = { 1358 1457 name = "_at_lerna_slash_bootstrap"; 1359 1458 packageName = "@lerna/bootstrap"; 1360 - version = "3.16.1"; 1459 + version = "3.16.2"; 1361 1460 src = fetchurl { 1362 - url = "https://registry.npmjs.org/@lerna/bootstrap/-/bootstrap-3.16.1.tgz"; 1363 - sha512 = "flHK3PRNEzGjK5u94ARlTmvraNUDgtG3TpO4dOLgiG4DDqk/7JjRq/vNXhBqgrtoKzm+zp4tH/6+uCAqF6la5w=="; 1461 + url = "https://registry.npmjs.org/@lerna/bootstrap/-/bootstrap-3.16.2.tgz"; 1462 + sha512 = "I+gs7eh6rv9Vyd+CwqL7sftRfOOsSzCle8cv/CGlMN7/p7EAVhxEdAw8SYoHIKHzipXszuqqy1Y3opyleD0qdA=="; 1364 1463 }; 1365 1464 }; 1366 - "@lerna/changed-3.16.1" = { 1465 + "@lerna/changed-3.16.2" = { 1367 1466 name = "_at_lerna_slash_changed"; 1368 1467 packageName = "@lerna/changed"; 1369 - version = "3.16.1"; 1468 + version = "3.16.2"; 1370 1469 src = fetchurl { 1371 - url = "https://registry.npmjs.org/@lerna/changed/-/changed-3.16.1.tgz"; 1372 - sha512 = "qXm0psRXo2U0EOmnt4PY8i525FbYIkEjaI+I92VzFN9vIlxd40pXJpiPCYMJzVEMr3gInDz5LHAINzoQ+7YAeQ=="; 1470 + url = "https://registry.npmjs.org/@lerna/changed/-/changed-3.16.2.tgz"; 1471 + sha512 = "CXr4R1s/IGsLy0xjVfgFtv4Hx8gUvIgmGteRuH2Ma9bl1yMcyy8zQd/e0M+dzL6tEhjo56ZTSs9hHiU2w/uwIg=="; 1373 1472 }; 1374 1473 }; 1375 1474 "@lerna/check-working-tree-3.14.2" = { ··· 1453 1552 sha512 = "OZApR1Iz7awutbmj4sAArwhqCyKgcrnw9rH0aWAUrkYWrD1w4TwkvAcYAsfx5GpQGbLQwoXhoyyPwPfZRRWz3Q=="; 1454 1553 }; 1455 1554 }; 1456 - "@lerna/create-symlink-3.16.0" = { 1555 + "@lerna/create-symlink-3.16.2" = { 1457 1556 name = "_at_lerna_slash_create-symlink"; 1458 1557 packageName = "@lerna/create-symlink"; 1459 - version = "3.16.0"; 1558 + version = "3.16.2"; 1460 1559 src = fetchurl { 1461 - url = "https://registry.npmjs.org/@lerna/create-symlink/-/create-symlink-3.16.0.tgz"; 1462 - sha512 = "MiQga30ZYB5mioUA37qkiIMb6X9JtyYhkzgDZFz7iZVdOF0NxkRQJZy+osGnXWij9s1DFfl70pOdVBPMl7LzRA=="; 1560 + url = "https://registry.npmjs.org/@lerna/create-symlink/-/create-symlink-3.16.2.tgz"; 1561 + sha512 = "pzXIJp6av15P325sgiIRpsPXLFmkisLhMBCy4764d+7yjf2bzrJ4gkWVMhsv4AdF0NN3OyZ5jjzzTtLNqfR+Jw=="; 1463 1562 }; 1464 1563 }; 1465 1564 "@lerna/describe-ref-3.14.2" = { ··· 1579 1678 sha512 = "Ybol/x5xMtBgokx4j7/Y3u0ZmNh0NiSWzBFVaOs2NOJKvuqrWimF67DKVz7yYtTYEjtaMdug64ohFF4jcT/iag=="; 1580 1679 }; 1581 1680 }; 1582 - "@lerna/link-3.16.0" = { 1681 + "@lerna/link-3.16.2" = { 1583 1682 name = "_at_lerna_slash_link"; 1584 1683 packageName = "@lerna/link"; 1585 - version = "3.16.0"; 1684 + version = "3.16.2"; 1586 1685 src = fetchurl { 1587 - url = "https://registry.npmjs.org/@lerna/link/-/link-3.16.0.tgz"; 1588 - sha512 = "nm9olZuvNGOqTFusgsD1eBDqTWwre3FUX0DkLORbqvvm/TIwRvXoOBmFceV2Q9zpAFRwj4vrnsPNQ/RYC3X4ZQ=="; 1686 + url = "https://registry.npmjs.org/@lerna/link/-/link-3.16.2.tgz"; 1687 + sha512 = "eCPg5Lo8HT525fIivNoYF3vWghO3UgEVFdbsiPmhzwI7IQyZro5HWYzLtywSAdEog5XZpd2Bbn0CsoHWBB3gww=="; 1589 1688 }; 1590 1689 }; 1591 1690 "@lerna/list-3.16.0" = { ··· 1642 1741 sha512 = "APUOIilZCzDzce92uLEwzt1r7AEMKT/hWA1ThGJL+PO9Rn8A95Km3o2XZAYG4W0hR+P4O2nSVuKbsjQtz8CjFQ=="; 1643 1742 }; 1644 1743 }; 1645 - "@lerna/npm-publish-3.16.1" = { 1744 + "@lerna/npm-publish-3.16.2" = { 1646 1745 name = "_at_lerna_slash_npm-publish"; 1647 1746 packageName = "@lerna/npm-publish"; 1648 - version = "3.16.1"; 1747 + version = "3.16.2"; 1649 1748 src = fetchurl { 1650 - url = "https://registry.npmjs.org/@lerna/npm-publish/-/npm-publish-3.16.1.tgz"; 1651 - sha512 = "+whucIDWaBecV4BsPrpA8nCv0eTv96BKOTVSURm3G7voR7yCSl7Fi/grC5Id9cjG3IiIE03rPTw54cUwOQSZdQ=="; 1749 + url = "https://registry.npmjs.org/@lerna/npm-publish/-/npm-publish-3.16.2.tgz"; 1750 + sha512 = "tGMb9vfTxP57vUV5svkBQxd5Tzc+imZbu9ZYf8Mtwe0+HYfDjNiiHLIQw7G95w4YRdc5KsCE8sQ0uSj+f2soIg=="; 1652 1751 }; 1653 1752 }; 1654 1753 "@lerna/npm-run-script-3.14.2" = { ··· 1678 1777 sha512 = "7ZnQ9nvUDu/WD+bNsypmPG5MwZBwu86iRoiW6C1WBuXXDxM5cnIAC1m2WxHeFnjyMrYlRXM9PzOQ9VDD+C15Rg=="; 1679 1778 }; 1680 1779 }; 1681 - "@lerna/pack-directory-3.16.1" = { 1780 + "@lerna/pack-directory-3.16.2" = { 1682 1781 name = "_at_lerna_slash_pack-directory"; 1683 1782 packageName = "@lerna/pack-directory"; 1684 - version = "3.16.1"; 1783 + version = "3.16.2"; 1685 1784 src = fetchurl { 1686 - url = "https://registry.npmjs.org/@lerna/pack-directory/-/pack-directory-3.16.1.tgz"; 1687 - sha512 = "mygbdbmHhM8QDWsi8QHFkv8djv6oHnP7c5OpnPbagM7QRdXxchwLrSjcSASJvljzmQeRo4zgHN71CHgyhichOA=="; 1785 + url = "https://registry.npmjs.org/@lerna/pack-directory/-/pack-directory-3.16.2.tgz"; 1786 + sha512 = "aM8MQnkhRUW81s/UBEUKA+qRfSdf9TcJzTY9Wjrd94UxzULn1BQ+Y3F8cysTR0TS/ILLyiteIllxlVSByWHD2w=="; 1688 1787 }; 1689 1788 }; 1690 1789 "@lerna/package-3.16.0" = { ··· 1732 1831 sha512 = "P+lWSFokdyvYpkwC3it9cE0IF2U5yy2mOUbGvvE4iDb9K7TyXGE+7lwtx2thtPvBAfIb7O13POMkv7df03HJeA=="; 1733 1832 }; 1734 1833 }; 1735 - "@lerna/publish-3.16.1" = { 1834 + "@lerna/publish-3.16.2" = { 1736 1835 name = "_at_lerna_slash_publish"; 1737 1836 packageName = "@lerna/publish"; 1738 - version = "3.16.1"; 1837 + version = "3.16.2"; 1739 1838 src = fetchurl { 1740 - url = "https://registry.npmjs.org/@lerna/publish/-/publish-3.16.1.tgz"; 1741 - sha512 = "a2y27d5m37sT/16eI9MLfZk+v5LDRr+Dpj8kT+FTsQqi4uS1ZOtzx9JyC9sLjZTSSivr1ZTQrrZbgyQ2YtRAMg=="; 1839 + url = "https://registry.npmjs.org/@lerna/publish/-/publish-3.16.2.tgz"; 1840 + sha512 = "6CZhnzO5goChQPqcBEN+6f6wA5ERBYcKB8RlBlsG38H8f8uYNZM6m34ywy1MLihZQA0z/RWrhYWAf4daF+AUkA=="; 1742 1841 }; 1743 1842 }; 1744 1843 "@lerna/pulse-till-done-3.13.0" = { ··· 1786 1885 sha512 = "woTeLlB1OAAz4zzjdI6RyIxSGuxiUPHJZm89E1pDEPoWwtQV6HMdMgrsQd9ATsJ5Ez280HH4bF/LStAlqW8Ufg=="; 1787 1886 }; 1788 1887 }; 1789 - "@lerna/run-lifecycle-3.16.1" = { 1888 + "@lerna/run-lifecycle-3.16.2" = { 1790 1889 name = "_at_lerna_slash_run-lifecycle"; 1791 1890 packageName = "@lerna/run-lifecycle"; 1792 - version = "3.16.1"; 1891 + version = "3.16.2"; 1793 1892 src = fetchurl { 1794 - url = "https://registry.npmjs.org/@lerna/run-lifecycle/-/run-lifecycle-3.16.1.tgz"; 1795 - sha512 = "hKvoQis5e+ktR9zWoya/BD1oVqRKDTJHLuCJsYaNYH4p5JJ5k2Y5bw+Gv3weccqb8uNrsXPcQmGPXhmNNSrAfw=="; 1893 + url = "https://registry.npmjs.org/@lerna/run-lifecycle/-/run-lifecycle-3.16.2.tgz"; 1894 + sha512 = "RqFoznE8rDpyyF0rOJy3+KjZCeTkO8y/OB9orPauR7G2xQ7PTdCpgo7EO6ZNdz3Al+k1BydClZz/j78gNCmL2A=="; 1796 1895 }; 1797 1896 }; 1798 1897 "@lerna/run-parallel-batches-3.16.0" = { ··· 1813 1912 sha512 = "4Hlpv4zDtKWa5Z0tPkeu0sK+bxZEKgkNESMGmWrUCNfj7xwvAJurcraK8+a2Y0TFYwf0qjSLY/MzX+ZbJA3Cgw=="; 1814 1913 }; 1815 1914 }; 1816 - "@lerna/symlink-binary-3.16.0" = { 1915 + "@lerna/symlink-binary-3.16.2" = { 1817 1916 name = "_at_lerna_slash_symlink-binary"; 1818 1917 packageName = "@lerna/symlink-binary"; 1819 - version = "3.16.0"; 1918 + version = "3.16.2"; 1820 1919 src = fetchurl { 1821 - url = "https://registry.npmjs.org/@lerna/symlink-binary/-/symlink-binary-3.16.0.tgz"; 1822 - sha512 = "7sgLWKP7RVxKPmnJZnq3ynqOsO6FDNFtJ/eQA46aV8ivKYoJY3+083FFErvka460V2MTBCEZsKXfX8Nezly/fg=="; 1920 + url = "https://registry.npmjs.org/@lerna/symlink-binary/-/symlink-binary-3.16.2.tgz"; 1921 + sha512 = "kz9XVoFOGSF83gg4gBqH+mG6uxfJfTp8Uy+Cam40CvMiuzfODrGkjuBEFoM/uO2QOAwZvbQDYOBpKUa9ZxHS1Q=="; 1823 1922 }; 1824 1923 }; 1825 - "@lerna/symlink-dependencies-3.16.0" = { 1924 + "@lerna/symlink-dependencies-3.16.2" = { 1826 1925 name = "_at_lerna_slash_symlink-dependencies"; 1827 1926 packageName = "@lerna/symlink-dependencies"; 1828 - version = "3.16.0"; 1927 + version = "3.16.2"; 1829 1928 src = fetchurl { 1830 - url = "https://registry.npmjs.org/@lerna/symlink-dependencies/-/symlink-dependencies-3.16.0.tgz"; 1831 - sha512 = "Pi3knz/+es8WltHBTG6UzYA3jFulv8kDGUVw225Bhv3YNcotX8ijXhm6oBO5zvFuW24b4fojZQxznM/EqJdaIw=="; 1929 + url = "https://registry.npmjs.org/@lerna/symlink-dependencies/-/symlink-dependencies-3.16.2.tgz"; 1930 + sha512 = "wnZqGJQ+Jvr1I3inxrkffrFZfmQI7Ta8gySw/UWCy95QtZWF/f5yk8zVIocCAsjzD0wgb3jJE3CFJ9W5iwWk1A=="; 1832 1931 }; 1833 1932 }; 1834 1933 "@lerna/timer-3.13.0" = { ··· 1849 1948 sha512 = "SiJP75nwB8GhgwLKQfdkSnDufAaCbkZWJqEDlKOUPUvVOplRGnfL+BPQZH5nvq2BYSRXsksXWZ4UHVnQZI/HYA=="; 1850 1949 }; 1851 1950 }; 1852 - "@lerna/version-3.16.1" = { 1951 + "@lerna/version-3.16.2" = { 1853 1952 name = "_at_lerna_slash_version"; 1854 1953 packageName = "@lerna/version"; 1855 - version = "3.16.1"; 1954 + version = "3.16.2"; 1856 1955 src = fetchurl { 1857 - url = "https://registry.npmjs.org/@lerna/version/-/version-3.16.1.tgz"; 1858 - sha512 = "CtDjZmrtcuKSk6xJc74ZBUJuJSH2N5BKkB29Yli1NvH+Tsn1CHHamr9bGYmRBEZlNSAxf1exlLPMX9jlZb5J8g=="; 1956 + url = "https://registry.npmjs.org/@lerna/version/-/version-3.16.2.tgz"; 1957 + sha512 = "Gd4ajnhYkpIpHfuzRbcqfdiMLgOTnZfKsJDIdWsMJDoerhHFtNkhVSyaw4rQd2AIO4dCi63QxuGM9fUTFk0VKw=="; 1859 1958 }; 1860 1959 }; 1861 1960 "@lerna/write-log-file-3.13.0" = { ··· 1939 2038 sha512 = "shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw=="; 1940 2039 }; 1941 2040 }; 1942 - "@octokit/endpoint-5.3.1" = { 2041 + "@octokit/endpoint-5.3.2" = { 1943 2042 name = "_at_octokit_slash_endpoint"; 1944 2043 packageName = "@octokit/endpoint"; 1945 - version = "5.3.1"; 2044 + version = "5.3.2"; 1946 2045 src = fetchurl { 1947 - url = "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-5.3.1.tgz"; 1948 - sha512 = "4mKqSQfeTRFpQMUGIUG1ewdQT64b2YpvjG2dE1x7nhQupdI/AjdgdcIsmPtRFEXlih/uLQLRWJL4FrivpQdC7A=="; 2046 + url = "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-5.3.2.tgz"; 2047 + sha512 = "gRjteEM9I6f4D8vtwU2iGUTn9RX/AJ0SVXiqBUEuYEWVGGAVjSXdT0oNmghH5lvQNWs8mwt6ZaultuG6yXivNw=="; 1949 2048 }; 1950 2049 }; 1951 2050 "@octokit/plugin-enterprise-rest-3.6.2" = { ··· 1975 2074 sha512 = "L4JaJDXn8SGT+5G0uX79rZLv0MNJmfGa4vb4vy1NnpjSnWDLJRy6m90udGwvMmavwsStgbv2QNkPzzTCMmL+ig=="; 1976 2075 }; 1977 2076 }; 1978 - "@octokit/rest-16.28.5" = { 2077 + "@octokit/rest-16.28.6" = { 1979 2078 name = "_at_octokit_slash_rest"; 1980 2079 packageName = "@octokit/rest"; 1981 - version = "16.28.5"; 2080 + version = "16.28.6"; 1982 2081 src = fetchurl { 1983 - url = "https://registry.npmjs.org/@octokit/rest/-/rest-16.28.5.tgz"; 1984 - sha512 = "W8hHSm6103c+lNdTuQBMKdZNDCOFFXJdatj92g2d6Hqk134EMDHRc02QWI/Fs1WGnWZ8Leb0QFbXPKO2njeevQ=="; 2082 + url = "https://registry.npmjs.org/@octokit/rest/-/rest-16.28.6.tgz"; 2083 + sha512 = "ERfzS6g6ZNPJkEUclxLenr+UEncbymCe//IBrWWdp59nslYDeJboq07Ue9brX05Uv0+SY3kwA33cdiVBVPAOMQ=="; 1985 2084 }; 1986 2085 }; 1987 2086 "@parcel/fs-1.11.0" = { ··· 3091 3190 sha512 = "uUrgZ8AxS+Lio0fZKAipJjAh415JyrOZowliZAzmnJSsf7piVL5w+G0+gFJ0KSu3QRhvui/7zuvpLz03YjXAhg=="; 3092 3191 }; 3093 3192 }; 3193 + "@zkochan/cmd-shim-3.1.0" = { 3194 + name = "_at_zkochan_slash_cmd-shim"; 3195 + packageName = "@zkochan/cmd-shim"; 3196 + version = "3.1.0"; 3197 + src = fetchurl { 3198 + url = "https://registry.npmjs.org/@zkochan/cmd-shim/-/cmd-shim-3.1.0.tgz"; 3199 + sha512 = "o8l0+x7C7sMZU3v9GuJIAU10qQLtwR1dtRQIOmlNMtyaqhmpXOzx1HWiYoWfmmf9HHZoAkXpc9TM9PQYF9d4Jg=="; 3200 + }; 3201 + }; 3094 3202 "CSSselect-0.4.1" = { 3095 3203 name = "CSSselect"; 3096 3204 packageName = "CSSselect"; ··· 3206 3314 src = fetchurl { 3207 3315 url = "https://registry.npmjs.org/abstract-leveldown/-/abstract-leveldown-6.0.3.tgz"; 3208 3316 sha512 = "jzewKKpZbaYUa6HTThnrl+GrJhzjEAeuc7hTVpZdzg7kupXZFoqQDFwyOwLNbmJKJlmzw8yiipMPkDiuKkT06Q=="; 3317 + }; 3318 + }; 3319 + "abstract-logging-1.0.0" = { 3320 + name = "abstract-logging"; 3321 + packageName = "abstract-logging"; 3322 + version = "1.0.0"; 3323 + src = fetchurl { 3324 + url = "https://registry.npmjs.org/abstract-logging/-/abstract-logging-1.0.0.tgz"; 3325 + sha1 = "8b7deafd310559bc28f77724dd1bb30177278c1b"; 3209 3326 }; 3210 3327 }; 3211 3328 "abstract-random-access-1.1.2" = { ··· 4936 5053 sha1 = "e50347611d7e690943208bbdafebcbc2fb866d46"; 4937 5054 }; 4938 5055 }; 5056 + "asciidoctor.js-1.5.9" = { 5057 + name = "asciidoctor.js"; 5058 + packageName = "asciidoctor.js"; 5059 + version = "1.5.9"; 5060 + src = fetchurl { 5061 + url = "https://registry.npmjs.org/asciidoctor.js/-/asciidoctor.js-1.5.9.tgz"; 5062 + sha512 = "k5JgwyV82TsiCpnYbDPReuHhzf/vRUt6NaZ+OGywkDDGeGG/CPfvN2Gd1MJ0iIZKDyuk4iJHOdY/2x1KBrWMzA=="; 5063 + }; 5064 + }; 4939 5065 "ascli-0.3.0" = { 4940 5066 name = "ascli"; 4941 5067 packageName = "ascli"; ··· 4954 5080 sha1 = "559be18376d08a4ec4dbe80877d27818639b2df7"; 4955 5081 }; 4956 5082 }; 5083 + "asn1-0.2.3" = { 5084 + name = "asn1"; 5085 + packageName = "asn1"; 5086 + version = "0.2.3"; 5087 + src = fetchurl { 5088 + url = "https://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz"; 5089 + sha1 = "dac8787713c9966849fc8180777ebe9c1ddf3b86"; 5090 + }; 5091 + }; 4957 5092 "asn1-0.2.4" = { 4958 5093 name = "asn1"; 4959 5094 packageName = "asn1"; ··· 4970 5105 src = fetchurl { 4971 5106 url = "https://registry.npmjs.org/asn1.js/-/asn1.js-4.10.1.tgz"; 4972 5107 sha512 = "p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw=="; 5108 + }; 5109 + }; 5110 + "asn1.js-5.2.0" = { 5111 + name = "asn1.js"; 5112 + packageName = "asn1.js"; 5113 + version = "5.2.0"; 5114 + src = fetchurl { 5115 + url = "https://registry.npmjs.org/asn1.js/-/asn1.js-5.2.0.tgz"; 5116 + sha512 = "Q7hnYGGNYbcmGrCPulXfkEw7oW7qjWeM4ZTALmgpuIcZLxyqqKYWxCZg2UBm8bklrnB4m2mGyJPWfoktdORD8A=="; 4973 5117 }; 4974 5118 }; 4975 5119 "assert-1.5.0" = { ··· 5215 5359 sha512 = "jp/uFnooOiO+L211eZOoSyzpOITMXx1rBITauYykG3BRYPu8h0UcxsPNB04RR5vo4Tyz3+ay17tR6JVf9qzYWg=="; 5216 5360 }; 5217 5361 }; 5362 + "async-lock-1.2.2" = { 5363 + name = "async-lock"; 5364 + packageName = "async-lock"; 5365 + version = "1.2.2"; 5366 + src = fetchurl { 5367 + url = "https://registry.npmjs.org/async-lock/-/async-lock-1.2.2.tgz"; 5368 + sha512 = "uczz62z2fMWOFbyo6rG4NlV2SdxugJT6sZA2QcfB1XaSjEiOh8CuOb/TttyMnYQCda6nkWecJe465tGQDPJiKw=="; 5369 + }; 5370 + }; 5218 5371 "async-mutex-0.1.3" = { 5219 5372 name = "async-mutex"; 5220 5373 packageName = "async-mutex"; ··· 5359 5512 sha1 = "00f35b2d27ac91b1f0d3ef2084c98cf1d1f0adc3"; 5360 5513 }; 5361 5514 }; 5362 - "aws-sdk-2.496.0" = { 5515 + "aws-sdk-2.497.0" = { 5363 5516 name = "aws-sdk"; 5364 5517 packageName = "aws-sdk"; 5365 - version = "2.496.0"; 5518 + version = "2.497.0"; 5366 5519 src = fetchurl { 5367 - url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.496.0.tgz"; 5368 - sha512 = "6xZ//phdvp7/dUZjOdDsorl+xehhkAgxOMber9vUlMO9ckBOeufIvED7oKF0NvSlfG8laHK4JprXKQvhXqVLqA=="; 5520 + url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.497.0.tgz"; 5521 + sha512 = "SCAVfWqj0qe22Lj6ZHMP/4autc9x3GqgWTj3YrE3VleSuql62xhyCC9gSYfbm7wo8Puqx0+kEnKYyyXR7Z98QA=="; 5369 5522 }; 5370 5523 }; 5371 5524 "aws-sign2-0.6.0" = { ··· 6034 6187 sha1 = "73926771923b5a19747ad666aa5cd4bf9c6e9ce8"; 6035 6188 }; 6036 6189 }; 6190 + "base64-js-0.0.2" = { 6191 + name = "base64-js"; 6192 + packageName = "base64-js"; 6193 + version = "0.0.2"; 6194 + src = fetchurl { 6195 + url = "https://registry.npmjs.org/base64-js/-/base64-js-0.0.2.tgz"; 6196 + sha1 = "024f0f72afa25b75f9c0ee73cd4f55ec1bed9784"; 6197 + }; 6198 + }; 6037 6199 "base64-js-0.0.8" = { 6038 6200 name = "base64-js"; 6039 6201 packageName = "base64-js"; ··· 6196 6358 sha512 = "IWIbu7pMqyw3EAJHzzHbWa85b6oud/yfKYg5rqB5hNE8CeMi3nX+2C2sj0HswfblST86hpVEOAb9x34NZd6P7A=="; 6197 6359 }; 6198 6360 }; 6361 + "benchmark-1.0.0" = { 6362 + name = "benchmark"; 6363 + packageName = "benchmark"; 6364 + version = "1.0.0"; 6365 + src = fetchurl { 6366 + url = "https://registry.npmjs.org/benchmark/-/benchmark-1.0.0.tgz"; 6367 + sha1 = "2f1e2fa4c359f11122aa183082218e957e390c73"; 6368 + }; 6369 + }; 6199 6370 "bencode-0.7.0" = { 6200 6371 name = "bencode"; 6201 6372 packageName = "bencode"; ··· 6421 6592 sha512 = "fvb6M58Ceiv/S94nu6zeaiMoJvUYOeIqRbgaClm+kJTzCAqJPtAR/31pXNYB5iEReOoKqQB5zY33gY0W6ZRWQQ=="; 6422 6593 }; 6423 6594 }; 6424 - "bittorrent-dht-9.0.0" = { 6595 + "bittorrent-dht-9.0.1" = { 6425 6596 name = "bittorrent-dht"; 6426 6597 packageName = "bittorrent-dht"; 6427 - version = "9.0.0"; 6598 + version = "9.0.1"; 6428 6599 src = fetchurl { 6429 - url = "https://registry.npmjs.org/bittorrent-dht/-/bittorrent-dht-9.0.0.tgz"; 6430 - sha512 = "X5ax4G/PLtEPfqOUjqDZ2nmPENndWRMK4sT2jcQ4sXor904zhR40r4KqTyTvWYAljh5/hPPqM9DCUUtqWzRXoQ=="; 6600 + url = "https://registry.npmjs.org/bittorrent-dht/-/bittorrent-dht-9.0.1.tgz"; 6601 + sha512 = "DgymMDZyv5y0pyys73pFa3rImRliqxkiDvVwJ35e+co6MHQJ30M5ZvTstwJ38CtdMlF36RoLnL2z14ICl7pv/A=="; 6431 6602 }; 6432 6603 }; 6433 6604 "bittorrent-peerid-1.3.0" = { ··· 6484 6655 sha512 = "e8tQYnZodmebYDWGH7KMRvtzKXaJHx3BbilrgZCfvyLUYdKpK1t5PSPmpkny/SgiTSCnjfLW7v5rlONXVFkQEA=="; 6485 6656 }; 6486 6657 }; 6658 + "bl-2.2.0" = { 6659 + name = "bl"; 6660 + packageName = "bl"; 6661 + version = "2.2.0"; 6662 + src = fetchurl { 6663 + url = "https://registry.npmjs.org/bl/-/bl-2.2.0.tgz"; 6664 + sha512 = "wbgvOpqopSr7uq6fJrLH8EsvYMJf9gzfo2jCsL2eTy75qXPukA4pCgHamOQkZtY5vmfVtjB+P3LNlMHW5CEZXA=="; 6665 + }; 6666 + }; 6487 6667 "bl-3.0.0" = { 6488 6668 name = "bl"; 6489 6669 packageName = "bl"; ··· 6745 6925 sha512 = "SiHJE2jEXjAL3TewN99wDl5Ehpm5DKA75oIyiY+2EMWWMPhIuZlQ/AvDzsLktNkwhylmAVLwiW+nuBPIU7kcoQ=="; 6746 6926 }; 6747 6927 }; 6928 + "bops-0.0.7" = { 6929 + name = "bops"; 6930 + packageName = "bops"; 6931 + version = "0.0.7"; 6932 + src = fetchurl { 6933 + url = "https://registry.npmjs.org/bops/-/bops-0.0.7.tgz"; 6934 + sha1 = "b4a0a5a839a406454af0fe05a8b91a7a766a54e2"; 6935 + }; 6936 + }; 6748 6937 "bottleneck-1.5.3" = { 6749 6938 name = "bottleneck"; 6750 6939 packageName = "bottleneck"; ··· 7492 7681 sha512 = "AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ=="; 7493 7682 }; 7494 7683 }; 7684 + "cache-directory-2.0.0" = { 7685 + name = "cache-directory"; 7686 + packageName = "cache-directory"; 7687 + version = "2.0.0"; 7688 + src = fetchurl { 7689 + url = "https://registry.npmjs.org/cache-directory/-/cache-directory-2.0.0.tgz"; 7690 + sha512 = "7YKEapH+2Uikde8hySyfobXBqPKULDyHNl/lhKm7cKf/GJFdG/tU/WpLrOg2y9aUrQrWUilYqawFIiGJPS6gDA=="; 7691 + }; 7692 + }; 7495 7693 "cacheable-request-2.1.4" = { 7496 7694 name = "cacheable-request"; 7497 7695 packageName = "cacheable-request"; ··· 8246 8444 src = fetchurl { 8247 8445 url = "https://registry.npmjs.org/clean-css/-/clean-css-4.2.1.tgz"; 8248 8446 sha512 = "4ZxI6dy4lrY6FHzfiy1aEOXgu4LIsW2MhwG0VBKdcoGoH/XLFgaHSdLTGr4O8Be6A8r3MOphEiI8Gc1n0ecf3g=="; 8447 + }; 8448 + }; 8449 + "clean-git-ref-1.0.3" = { 8450 + name = "clean-git-ref"; 8451 + packageName = "clean-git-ref"; 8452 + version = "1.0.3"; 8453 + src = fetchurl { 8454 + url = "https://registry.npmjs.org/clean-git-ref/-/clean-git-ref-1.0.3.tgz"; 8455 + sha1 = "5325dc839eab01c974ae0e97f5734782750f88ec"; 8249 8456 }; 8250 8457 }; 8251 8458 "clean-stack-1.3.0" = { ··· 10111 10318 sha512 = "iX3mfgcTMIq3ZKLIsVFAbv7+Mc10kxabAGQb8HvjA1o3T1PIYprbakQ65d3I+2HGHt6nSKkM9PYjgoJO2KcFBQ=="; 10112 10319 }; 10113 10320 }; 10321 + "crc-32-1.2.0" = { 10322 + name = "crc-32"; 10323 + packageName = "crc-32"; 10324 + version = "1.2.0"; 10325 + src = fetchurl { 10326 + url = "https://registry.npmjs.org/crc-32/-/crc-32-1.2.0.tgz"; 10327 + sha512 = "1uBwHxF+Y/4yF5G48fwnKq6QsIXheor3ZLPT80yGBV1oEUwpPojlEhQbWKVw1VwcTQyMGHK1/XMmTjmlsmTTGA=="; 10328 + }; 10329 + }; 10114 10330 "crc32-stream-2.0.0" = { 10115 10331 name = "crc32-stream"; 10116 10332 packageName = "crc32-stream"; ··· 11848 12064 sha512 = "s2+XdvhPCOF01LRQBC8hf4vhbVmI2CGS5aZnxLJlT5FtdhPCDFq80q++zK2KlrVorVDdL5BOGZ/VfLrVtYNF+Q=="; 11849 12065 }; 11850 12066 }; 12067 + "diff-lines-1.1.1" = { 12068 + name = "diff-lines"; 12069 + packageName = "diff-lines"; 12070 + version = "1.1.1"; 12071 + src = fetchurl { 12072 + url = "https://registry.npmjs.org/diff-lines/-/diff-lines-1.1.1.tgz"; 12073 + sha512 = "Oo5JzEEriF/+T0usOeRP5yOzr6SWvni2rrxvIgijMZSxPcEvf8JOvCO5GpnWwkte7fcOgnue/f5ECg1H9lMPCw=="; 12074 + }; 12075 + }; 11851 12076 "diff-match-patch-1.0.4" = { 11852 12077 name = "diff-match-patch"; 11853 12078 packageName = "diff-match-patch"; ··· 12586 12811 sha512 = "PcW2a0tyTuPHz3tWyYqtK6r1fZ3gp+3Sop8Ph+ZYN81Ob5rwmbHEzaqs10N3BEsaGTkh/ooniXK+WwszGlc2+Q=="; 12587 12812 }; 12588 12813 }; 12589 - "electron-to-chromium-1.3.198" = { 12814 + "electron-to-chromium-1.3.199" = { 12590 12815 name = "electron-to-chromium"; 12591 12816 packageName = "electron-to-chromium"; 12592 - version = "1.3.198"; 12817 + version = "1.3.199"; 12593 12818 src = fetchurl { 12594 - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.198.tgz"; 12595 - sha512 = "2GcPd1bkU8EGPa3AhxzPswbNvh5wgK4/8r3fg+sSVyVlCWaN9Tq+tVkJLktMZIcrHiZF0vJpnktfoYXFTvjCVg=="; 12819 + url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.199.tgz"; 12820 + sha512 = "gachlDdHSK47s0N2e58GH9HMC6Z4ip0SfmYUa5iEbE50AKaOUXysaJnXMfKj0xB245jWbYcyFSH+th3rqsF8hA=="; 12596 12821 }; 12597 12822 }; 12598 12823 "elegant-spinner-1.0.1" = { ··· 13721 13946 sha1 = "8c7ac44b87baab55cd50c828dc38778eac052ea5"; 13722 13947 }; 13723 13948 }; 13949 + "eventemitter3-2.0.3" = { 13950 + name = "eventemitter3"; 13951 + packageName = "eventemitter3"; 13952 + version = "2.0.3"; 13953 + src = fetchurl { 13954 + url = "https://registry.npmjs.org/eventemitter3/-/eventemitter3-2.0.3.tgz"; 13955 + sha1 = "b5e1079b59fb5e1ba2771c0a993be060a58c99ba"; 13956 + }; 13957 + }; 13724 13958 "eventemitter3-3.1.2" = { 13725 13959 name = "eventemitter3"; 13726 13960 packageName = "eventemitter3"; ··· 14405 14639 sha512 = "q8BZ89jjc+mz08rSxROs8VsrBBcn1SIw1kq9NjolL509tkABRk9io01RAjSaEv1Xb2uFLt8VtRiZbGp5H8iDtg=="; 14406 14640 }; 14407 14641 }; 14642 + "fast-text-encoding-1.0.0" = { 14643 + name = "fast-text-encoding"; 14644 + packageName = "fast-text-encoding"; 14645 + version = "1.0.0"; 14646 + src = fetchurl { 14647 + url = "https://registry.npmjs.org/fast-text-encoding/-/fast-text-encoding-1.0.0.tgz"; 14648 + sha512 = "R9bHCvweUxxwkDwhjav5vxpFvdPGlVngtqmx4pIZfSUhM/Q4NiIUHB456BAf+Q1Nwu3HEZYONtu+Rya+af4jiQ=="; 14649 + }; 14650 + }; 14408 14651 "fast-url-parser-1.1.3" = { 14409 14652 name = "fast-url-parser"; 14410 14653 packageName = "fast-url-parser"; ··· 14558 14801 sha512 = "uzk64HRpUZyTGZtVuvrjP0FYxzQrBf4rojot6J65YMEbwBLB0CWm0CLojVpwpmFmxcE/lkvYICgfcGozbBq6rw=="; 14559 14802 }; 14560 14803 }; 14804 + "file-type-12.0.1" = { 14805 + name = "file-type"; 14806 + packageName = "file-type"; 14807 + version = "12.0.1"; 14808 + src = fetchurl { 14809 + url = "https://registry.npmjs.org/file-type/-/file-type-12.0.1.tgz"; 14810 + sha512 = "YIs1E51cmqcmgF38ODjy0+M/l5DyfIIy3vngTOujQr/lXqkaSskfBniaZoZ1HVIpa5FTf5e7hCXS4TzxfNGMRQ=="; 14811 + }; 14812 + }; 14561 14813 "file-type-3.9.0" = { 14562 14814 name = "file-type"; 14563 14815 packageName = "file-type"; ··· 14648 14900 sha512 = "ICw7NTT6RsDp2rnYKVd8Fu4cr6ITzGy3+u4vUujPkabyaz+03F24NWEX7fs5fp+kBonlaqPH8fAO2NM+SXt/JA=="; 14649 14901 }; 14650 14902 }; 14903 + "filenamify-4.1.0" = { 14904 + name = "filenamify"; 14905 + packageName = "filenamify"; 14906 + version = "4.1.0"; 14907 + src = fetchurl { 14908 + url = "https://registry.npmjs.org/filenamify/-/filenamify-4.1.0.tgz"; 14909 + sha512 = "KQV/uJDI9VQgN7sHH1Zbk6+42cD6mnQ2HONzkXUfPJ+K2FC8GZ1dpewbbHw0Sz8Tf5k3EVdHVayM4DoAwWlmtg=="; 14910 + }; 14911 + }; 14651 14912 "filesize-3.6.1" = { 14652 14913 name = "filesize"; 14653 14914 packageName = "filesize"; ··· 16007 16268 sha1 = "2c5a6638d893934b9b55037d0ad82cb7004b2679"; 16008 16269 }; 16009 16270 }; 16271 + "git-apply-delta-0.0.7" = { 16272 + name = "git-apply-delta"; 16273 + packageName = "git-apply-delta"; 16274 + version = "0.0.7"; 16275 + src = fetchurl { 16276 + url = "https://registry.npmjs.org/git-apply-delta/-/git-apply-delta-0.0.7.tgz"; 16277 + sha1 = "fb76ae144540d79440b52b31de03e63c993c7219"; 16278 + }; 16279 + }; 16010 16280 "git-clone-0.1.0" = { 16011 16281 name = "git-clone"; 16012 16282 packageName = "git-clone"; ··· 16431 16701 sha512 = "S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ=="; 16432 16702 }; 16433 16703 }; 16704 + "globalyzer-0.1.4" = { 16705 + name = "globalyzer"; 16706 + packageName = "globalyzer"; 16707 + version = "0.1.4"; 16708 + src = fetchurl { 16709 + url = "https://registry.npmjs.org/globalyzer/-/globalyzer-0.1.4.tgz"; 16710 + sha512 = "LeguVWaxgHN0MNbWC6YljNMzHkrCny9fzjmEUdnF1kQ7wATFD1RHFRqA1qxaX2tgxGENlcxjOflopBwj3YZiXA=="; 16711 + }; 16712 + }; 16434 16713 "globby-4.1.0" = { 16435 16714 name = "globby"; 16436 16715 packageName = "globby"; ··· 16458 16737 sha512 = "ollPHROa5mcxDEkwg6bPt3QbEf4pDQSNtd6JPL1YvOvAo/7/0VAm9TccUeoTmarjPw4pfUthSCqcyfNB1I3ZSg=="; 16459 16738 }; 16460 16739 }; 16740 + "globrex-0.1.2" = { 16741 + name = "globrex"; 16742 + packageName = "globrex"; 16743 + version = "0.1.2"; 16744 + src = fetchurl { 16745 + url = "https://registry.npmjs.org/globrex/-/globrex-0.1.2.tgz"; 16746 + sha512 = "uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg=="; 16747 + }; 16748 + }; 16461 16749 "globule-0.1.0" = { 16462 16750 name = "globule"; 16463 16751 packageName = "globule"; ··· 16636 16924 src = fetchurl { 16637 16925 url = "https://registry.npmjs.org/grapheme-breaker/-/grapheme-breaker-0.3.2.tgz"; 16638 16926 sha1 = "5b9e6b78c3832452d2ba2bb1cb830f96276410ac"; 16927 + }; 16928 + }; 16929 + "grapheme-splitter-1.0.4" = { 16930 + name = "grapheme-splitter"; 16931 + packageName = "grapheme-splitter"; 16932 + version = "1.0.4"; 16933 + src = fetchurl { 16934 + url = "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz"; 16935 + sha512 = "bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ=="; 16639 16936 }; 16640 16937 }; 16641 16938 "graphlib-2.1.7" = { ··· 16960 17257 src = fetchurl { 16961 17258 url = "https://registry.npmjs.org/gulp-util/-/gulp-util-3.0.8.tgz"; 16962 17259 sha1 = "0054e1e744502e27c04c187c3ecc505dd54bbb4f"; 17260 + }; 17261 + }; 17262 + "gulp-vinyl-zip-2.1.2" = { 17263 + name = "gulp-vinyl-zip"; 17264 + packageName = "gulp-vinyl-zip"; 17265 + version = "2.1.2"; 17266 + src = fetchurl { 17267 + url = "https://registry.npmjs.org/gulp-vinyl-zip/-/gulp-vinyl-zip-2.1.2.tgz"; 17268 + sha512 = "wJn09jsb8PyvUeyFF7y7ImEJqJwYy40BqL9GKfJs6UGpaGW9A+N68Q+ajsIpb9AeR6lAdjMbIdDPclIGo1/b7Q=="; 16963 17269 }; 16964 17270 }; 16965 17271 "gulplog-1.0.0" = { ··· 17826 18132 sha1 = "9aecd925114772f3d95b65a60abb8f7c18fbace1"; 17827 18133 }; 17828 18134 }; 18135 + "http_ece-1.1.0" = { 18136 + name = "http_ece"; 18137 + packageName = "http_ece"; 18138 + version = "1.1.0"; 18139 + src = fetchurl { 18140 + url = "https://registry.npmjs.org/http_ece/-/http_ece-1.1.0.tgz"; 18141 + sha512 = "bptAfCDdPJxOs5zYSe7Y3lpr772s1G346R4Td5LgRUeCwIGpCGDUTJxRrhTNcAXbx37spge0kWEIH7QAYWNTlA=="; 18142 + }; 18143 + }; 17829 18144 "https-browserify-1.0.0" = { 17830 18145 name = "https-browserify"; 17831 18146 packageName = "https-browserify"; ··· 17907 18222 sha512 = "xFwOnNlOt8L+SovC7dTNchKaNYJb5l8rKZZwpWQnCme1r7CU4Hlhp1RDqPES6b0OpS7DkTo9iU0GltQGkpsjMw=="; 17908 18223 }; 17909 18224 }; 17910 - "hypercore-protocol-6.11.0" = { 18225 + "hypercore-protocol-6.11.1" = { 17911 18226 name = "hypercore-protocol"; 17912 18227 packageName = "hypercore-protocol"; 17913 - version = "6.11.0"; 18228 + version = "6.11.1"; 17914 18229 src = fetchurl { 17915 - url = "https://registry.npmjs.org/hypercore-protocol/-/hypercore-protocol-6.11.0.tgz"; 17916 - sha512 = "V/0Vru8gavoO++K2QFOAXu7xgBuXcBAjURQ9BQ48DnQ/p4hK4Jy76ulRnppDHpbDthxRziMWLZfmYXncwD63Aw=="; 18230 + url = "https://registry.npmjs.org/hypercore-protocol/-/hypercore-protocol-6.11.1.tgz"; 18231 + sha512 = "4vyYGzSTRCfpIPnpYO/WN0VeS2oGeIrzCCwIXfz5TL2dyyHu7wF5xiigNuUfTn9n3cTOwwbH+EKsygTNsO2yfw=="; 17917 18232 }; 17918 18233 }; 17919 18234 "hyperdrive-9.15.0" = { ··· 18780 19095 sha512 = "Mb6kv78bTi4RNAIIWL8Bbre7hXOR2pNUi3j8FaQkLaitf/ZWxkq3/iIwXNYk2ACO3IMfdVdQrOkUtwZblO7uBA=="; 18781 19096 }; 18782 19097 }; 19098 + "ipaddr.js-0.1.3" = { 19099 + name = "ipaddr.js"; 19100 + packageName = "ipaddr.js"; 19101 + version = "0.1.3"; 19102 + src = fetchurl { 19103 + url = "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-0.1.3.tgz"; 19104 + sha1 = "27a9ca37f148d2102b0ef191ccbf2c51a8f025c6"; 19105 + }; 19106 + }; 18783 19107 "ipaddr.js-1.0.5" = { 18784 19108 name = "ipaddr.js"; 18785 19109 packageName = "ipaddr.js"; ··· 18807 19131 sha512 = "0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g=="; 18808 19132 }; 18809 19133 }; 19134 + "irc-framework-4.4.0" = { 19135 + name = "irc-framework"; 19136 + packageName = "irc-framework"; 19137 + version = "4.4.0"; 19138 + src = fetchurl { 19139 + url = "https://registry.npmjs.org/irc-framework/-/irc-framework-4.4.0.tgz"; 19140 + sha512 = "81ZjeFg0J+OdwGO4S90f8/GpwNwIcP9KaCt0lvRqt1GueT7cKPX2v1yiRML3cJXofkz/MsVZqJCnAEThYYaTUQ=="; 19141 + }; 19142 + }; 18810 19143 "irc-replies-2.0.1" = { 18811 19144 name = "irc-replies"; 18812 19145 packageName = "irc-replies"; ··· 19939 20272 src = fetchurl { 19940 20273 url = "https://registry.npmjs.org/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz"; 19941 20274 sha1 = "611ae1acf14f5e81f729507472819fe9733558a9"; 20275 + }; 20276 + }; 20277 + "isomorphic-git-0.47.0" = { 20278 + name = "isomorphic-git"; 20279 + packageName = "isomorphic-git"; 20280 + version = "0.47.0"; 20281 + src = fetchurl { 20282 + url = "https://registry.npmjs.org/isomorphic-git/-/isomorphic-git-0.47.0.tgz"; 20283 + sha512 = "oea4It03KvuJrEbwYGMrRmlY+Wh7a/J/jBYKezkiUW/s6GrcAePOCnpfLR8TXkHiASZlEHCgckMd7uMAfJ9w/w=="; 20284 + }; 20285 + }; 20286 + "isomorphic-textencoder-1.0.1" = { 20287 + name = "isomorphic-textencoder"; 20288 + packageName = "isomorphic-textencoder"; 20289 + version = "1.0.1"; 20290 + src = fetchurl { 20291 + url = "https://registry.npmjs.org/isomorphic-textencoder/-/isomorphic-textencoder-1.0.1.tgz"; 20292 + sha512 = "676hESgHullDdHDsj469hr+7t3i/neBKU9J7q1T4RHaWwLAsaQnywC0D1dIUId0YZ+JtVrShzuBk1soo0+GVcQ=="; 19942 20293 }; 19943 20294 }; 19944 20295 "isstream-0.1.2" = { ··· 21148 21499 sha512 = "avPEb8P8EGnwXKClwsNUgryVjllcRqtMYa49NTsbQagYuT1DcXnl1915oxWjoyGrXR6zH/Y0Zc96xWsPcoDKeA=="; 21149 21500 }; 21150 21501 }; 21502 + "ldap-filter-0.2.2" = { 21503 + name = "ldap-filter"; 21504 + packageName = "ldap-filter"; 21505 + version = "0.2.2"; 21506 + src = fetchurl { 21507 + url = "https://registry.npmjs.org/ldap-filter/-/ldap-filter-0.2.2.tgz"; 21508 + sha1 = "f2b842be0b86da3352798505b31ebcae590d77d0"; 21509 + }; 21510 + }; 21151 21511 "lead-1.0.0" = { 21152 21512 name = "lead"; 21153 21513 packageName = "lead"; ··· 21632 21992 src = fetchurl { 21633 21993 url = "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz"; 21634 21994 sha1 = "5bf45e8e49ba4189e17d482789dfd15bd140b7b6"; 21995 + }; 21996 + }; 21997 + "lodash-4.17.14" = { 21998 + name = "lodash"; 21999 + packageName = "lodash"; 22000 + version = "4.17.14"; 22001 + src = fetchurl { 22002 + url = "https://registry.npmjs.org/lodash/-/lodash-4.17.14.tgz"; 22003 + sha512 = "mmKYbW3GLuJeX+iGP+Y7Gp1AiGHGbXHCOh/jZmrawMmsE7MS4znI3RL2FsjbqOyMayHInjOeykW7PEajUk1/xw=="; 21635 22004 }; 21636 22005 }; 21637 22006 "lodash-4.17.15" = { ··· 23378 23747 src = fetchurl { 23379 23748 url = "https://registry.npmjs.org/marked/-/marked-0.7.0.tgz"; 23380 23749 sha512 = "c+yYdCZJQrsRjTPhUx7VKkApw9bwDkNbHUKo1ovgcfDjb2kc8rLuRbIFyXL5WOEUwzSSKo3IXpph2K6DqB/KZg=="; 23750 + }; 23751 + }; 23752 + "marky-1.2.1" = { 23753 + name = "marky"; 23754 + packageName = "marky"; 23755 + version = "1.2.1"; 23756 + src = fetchurl { 23757 + url = "https://registry.npmjs.org/marky/-/marky-1.2.1.tgz"; 23758 + sha512 = "md9k+Gxa3qLH6sUKpeC2CNkJK/Ld+bEz5X96nYwloqphQE0CKCVEKco/6jxEZixinqNdz5RFi/KaCyfbMDMAXQ=="; 23381 23759 }; 23382 23760 }; 23383 23761 "match-casing-1.0.2" = { ··· 23407 23785 sha1 = "c6f34834a0d8dbc3b37c27ee8bbcb27c7775582e"; 23408 23786 }; 23409 23787 }; 23788 + "matcher-1.1.1" = { 23789 + name = "matcher"; 23790 + packageName = "matcher"; 23791 + version = "1.1.1"; 23792 + src = fetchurl { 23793 + url = "https://registry.npmjs.org/matcher/-/matcher-1.1.1.tgz"; 23794 + sha512 = "+BmqxWIubKTRKNWx/ahnCkk3mG8m7OturVlqq6HiojGJTd5hVYbgZm6WzcYPCoB+KBT4Vd6R7WSRG2OADNaCjg=="; 23795 + }; 23796 + }; 23410 23797 "matcher-2.0.0" = { 23411 23798 name = "matcher"; 23412 23799 packageName = "matcher"; ··· 23866 24253 sha512 = "MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg=="; 23867 24254 }; 23868 24255 }; 24256 + "middleware-handler-0.2.0" = { 24257 + name = "middleware-handler"; 24258 + packageName = "middleware-handler"; 24259 + version = "0.2.0"; 24260 + src = fetchurl { 24261 + url = "https://registry.npmjs.org/middleware-handler/-/middleware-handler-0.2.0.tgz"; 24262 + sha1 = "bf02af7e6b577c0230609b2ae58df0e446f3fd02"; 24263 + }; 24264 + }; 23869 24265 "miller-rabin-4.0.1" = { 23870 24266 name = "miller-rabin"; 23871 24267 packageName = "miller-rabin"; ··· 24091 24487 sha512 = "yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA=="; 24092 24488 }; 24093 24489 }; 24490 + "minimatch-all-1.1.0" = { 24491 + name = "minimatch-all"; 24492 + packageName = "minimatch-all"; 24493 + version = "1.1.0"; 24494 + src = fetchurl { 24495 + url = "https://registry.npmjs.org/minimatch-all/-/minimatch-all-1.1.0.tgz"; 24496 + sha1 = "40c496a27a2e128d19bf758e76bb01a0c7145787"; 24497 + }; 24498 + }; 24094 24499 "minimist-0.0.10" = { 24095 24500 name = "minimist"; 24096 24501 packageName = "minimist"; ··· 24125 24530 src = fetchurl { 24126 24531 url = "https://registry.npmjs.org/minimist-options/-/minimist-options-3.0.2.tgz"; 24127 24532 sha512 = "FyBrT/d0d4+uiZRbqznPXqw3IpZZG3gl3wKWiX784FycUKVwBt0uLBFkQrtE4tZOrgo78nZp2jnKz3L65T5LdQ=="; 24533 + }; 24534 + }; 24535 + "minimisted-2.0.0" = { 24536 + name = "minimisted"; 24537 + packageName = "minimisted"; 24538 + version = "2.0.0"; 24539 + src = fetchurl { 24540 + url = "https://registry.npmjs.org/minimisted/-/minimisted-2.0.0.tgz"; 24541 + sha512 = "oP88Dw3LK/pdrKyMdlbmg3W50969UNr4ctISzJfPl+YPYHTAOrS+dihXnsgRNKSRIzDsrnV3eE2CCVlZbpOKdQ=="; 24128 24542 }; 24129 24543 }; 24130 24544 "minipass-2.3.5" = { ··· 24224 24638 src = fetchurl { 24225 24639 url = "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz"; 24226 24640 sha1 = "30057438eac6cf7f8c4767f38648d6697d75c903"; 24641 + }; 24642 + }; 24643 + "mkdirp-promise-5.0.1" = { 24644 + name = "mkdirp-promise"; 24645 + packageName = "mkdirp-promise"; 24646 + version = "5.0.1"; 24647 + src = fetchurl { 24648 + url = "https://registry.npmjs.org/mkdirp-promise/-/mkdirp-promise-5.0.1.tgz"; 24649 + sha1 = "e9b8f68e552c68a9c1713b84883f7a1dd039b8a1"; 24227 24650 }; 24228 24651 }; 24229 24652 "mkpath-1.0.0" = { ··· 24505 24928 sha512 = "xY8pX7V+ybyUpbYMxtjM9KAiD9ixtg5/JkeKUTD6xilfDv0vzzOFcCp4Ljb1UU3tSOM3VTZtKo63OmzOrGi3Cg=="; 24506 24929 }; 24507 24930 }; 24931 + "multi-progress-2.0.0" = { 24932 + name = "multi-progress"; 24933 + packageName = "multi-progress"; 24934 + version = "2.0.0"; 24935 + src = fetchurl { 24936 + url = "https://registry.npmjs.org/multi-progress/-/multi-progress-2.0.0.tgz"; 24937 + sha1 = "29ccb42cf24874b1c6384f03127ce5dff7b22f2c"; 24938 + }; 24939 + }; 24508 24940 "multi-random-access-2.1.1" = { 24509 24941 name = "multi-random-access"; 24510 24942 packageName = "multi-random-access"; ··· 25328 25760 sha512 = "1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ=="; 25329 25761 }; 25330 25762 }; 25763 + "nick-0.1.3" = { 25764 + name = "nick"; 25765 + packageName = "nick"; 25766 + version = "0.1.3"; 25767 + src = fetchurl { 25768 + url = "https://registry.npmjs.org/nick/-/nick-0.1.3.tgz"; 25769 + sha1 = "d8a30b7da789d417e0baa5437f33c487be9b6020"; 25770 + }; 25771 + }; 25331 25772 "nijs-0.0.25" = { 25332 25773 name = "nijs"; 25333 25774 packageName = "nijs"; ··· 26040 26481 sha1 = "99b85aec29fcb388d2dd351f0013bf5268787e67"; 26041 26482 }; 26042 26483 }; 26043 - "npm-lifecycle-3.0.0" = { 26484 + "npm-lifecycle-3.1.2" = { 26044 26485 name = "npm-lifecycle"; 26045 26486 packageName = "npm-lifecycle"; 26046 - version = "3.0.0"; 26487 + version = "3.1.2"; 26047 26488 src = fetchurl { 26048 - url = "https://registry.npmjs.org/npm-lifecycle/-/npm-lifecycle-3.0.0.tgz"; 26049 - sha512 = "/x/8zxo5Tn3qWj1eSUXgyr2pLBnEoFkpJQE/8pRwrEpJI4irZM0+YSp7W8NGDLzN6SaBOGOPaJV9O2dhY1IWwQ=="; 26489 + url = "https://registry.npmjs.org/npm-lifecycle/-/npm-lifecycle-3.1.2.tgz"; 26490 + sha512 = "nhfOcoTHrW1lJJlM2o77vTE2RWR4YOVyj7YzmY0y5itsMjEuoJHteio/ez0BliENEPsNxIUQgwhyEW9dShj3Ww=="; 26050 26491 }; 26051 26492 }; 26052 26493 "npm-package-arg-6.1.0" = { ··· 26743 27184 sha512 = "jQ31cORBFE6td25deYeD80wxKBMj+zBmHTrVxnc6CKhx8gho6ipmWM5zj/oeoqioZ99yqBls9Z/9Nss7J26G2g=="; 26744 27185 }; 26745 27186 }; 27187 + "opal-runtime-1.0.11" = { 27188 + name = "opal-runtime"; 27189 + packageName = "opal-runtime"; 27190 + version = "1.0.11"; 27191 + src = fetchurl { 27192 + url = "https://registry.npmjs.org/opal-runtime/-/opal-runtime-1.0.11.tgz"; 27193 + sha512 = "L+6pnRvXPlDtbamBRnJAnB9mEMXmsIQ/b+0r/2xJ5/n/nxheEkLo+Pm5QNQ08LEbEN9TI6/kedhIspqRRu6tXA=="; 27194 + }; 27195 + }; 26746 27196 "open-0.0.2" = { 26747 27197 name = "open"; 26748 27198 packageName = "open"; ··· 27353 27803 src = fetchurl { 27354 27804 url = "https://registry.npmjs.org/package-json/-/package-json-6.4.0.tgz"; 27355 27805 sha512 = "bd1T8OBG7hcvMd9c/udgv6u5v9wISP3Oyl9Cm7Weop8EFwrtcQDnS2sb6zhwqus2WslSr5wSTIPiTTpxxmPm7Q=="; 27806 + }; 27807 + }; 27808 + "package-json-6.5.0" = { 27809 + name = "package-json"; 27810 + packageName = "package-json"; 27811 + version = "6.5.0"; 27812 + src = fetchurl { 27813 + url = "https://registry.npmjs.org/package-json/-/package-json-6.5.0.tgz"; 27814 + sha512 = "k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ=="; 27356 27815 }; 27357 27816 }; 27358 27817 "package-json-versionify-1.0.4" = { ··· 29084 29543 sha1 = "c438ca2ca33e3927671db4ab69c0e52f936a4f0f"; 29085 29544 }; 29086 29545 }; 29546 + "printj-1.1.2" = { 29547 + name = "printj"; 29548 + packageName = "printj"; 29549 + version = "1.1.2"; 29550 + src = fetchurl { 29551 + url = "https://registry.npmjs.org/printj/-/printj-1.1.2.tgz"; 29552 + sha512 = "zA2SmoLaxZyArQTOPj5LXecR+RagfPSU5Kw1qP+jkWeNlrq+eJZyY2oS68SU1Z/7/myXM4lo9716laOFAVStCQ=="; 29553 + }; 29554 + }; 29087 29555 "prism-media-0.0.3" = { 29088 29556 name = "prism-media"; 29089 29557 packageName = "prism-media"; ··· 29111 29579 sha512 = "dWBTeQbyWr/4d97ZKjxFPvIHytnNlBsNzgsJC1eew3qoZ9A8vtRIFhsnPiD3kYIf67w56i2QO2O5Infe2FzMww=="; 29112 29580 }; 29113 29581 }; 29114 - "prismjs-1.16.0" = { 29582 + "prismjs-1.17.1" = { 29115 29583 name = "prismjs"; 29116 29584 packageName = "prismjs"; 29117 - version = "1.16.0"; 29585 + version = "1.17.1"; 29118 29586 src = fetchurl { 29119 - url = "https://registry.npmjs.org/prismjs/-/prismjs-1.16.0.tgz"; 29120 - sha512 = "OA4MKxjFZHSvZcisLGe14THYsug/nF6O1f0pAJc0KN0wTyAcLqmsbE+lTGKSpyh+9pEW57+k6pg2AfYR+coyHA=="; 29587 + url = "https://registry.npmjs.org/prismjs/-/prismjs-1.17.1.tgz"; 29588 + sha512 = "PrEDJAFdUGbOP6xK/UsfkC5ghJsPJviKgnQOoxaDbBjwc8op68Quupwt1DeAFoG8GImPhiKXAvvsH7wDSLsu1Q=="; 29121 29589 }; 29122 29590 }; 29123 29591 "private-0.1.8" = { ··· 30119 30587 sha512 = "XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A=="; 30120 30588 }; 30121 30589 }; 30122 - "puppeteer-1.18.1" = { 30590 + "puppeteer-1.19.0" = { 30123 30591 name = "puppeteer"; 30124 30592 packageName = "puppeteer"; 30125 - version = "1.18.1"; 30593 + version = "1.19.0"; 30126 30594 src = fetchurl { 30127 - url = "https://registry.npmjs.org/puppeteer/-/puppeteer-1.18.1.tgz"; 30128 - sha512 = "luUy0HPSuWPsPZ1wAp6NinE0zgetWtudf5zwZ6dHjMWfYpTQcmKveFRox7VBNhQ98OjNA9PQ9PzQyX8k/KrxTg=="; 30595 + url = "https://registry.npmjs.org/puppeteer/-/puppeteer-1.19.0.tgz"; 30596 + sha512 = "2S6E6ygpoqcECaagDbBopoSOPDv0pAZvTbnBgUY+6hq0/XDFDOLEMNlHF/SKJlzcaZ9ckiKjKDuueWI3FN/WXw=="; 30129 30597 }; 30130 30598 }; 30131 30599 "push-stream-10.1.2" = { ··· 30335 30803 sha512 = "w7fLxIRCRT7U8Qu53jQnJyPkYZIaR4n5151KMfcJlO/A9397Wxb1amJvROTK6TOnp7PfoAmg/qXiNHI+08jRfA=="; 30336 30804 }; 30337 30805 }; 30806 + "queue-4.5.1" = { 30807 + name = "queue"; 30808 + packageName = "queue"; 30809 + version = "4.5.1"; 30810 + src = fetchurl { 30811 + url = "https://registry.npmjs.org/queue/-/queue-4.5.1.tgz"; 30812 + sha512 = "AMD7w5hRXcFSb8s9u38acBZ+309u6GsiibP4/0YacJeaurRshogB7v/ZcVPxP5gD5+zIw6ixRHdutiYUJfwKHw=="; 30813 + }; 30814 + }; 30338 30815 "quick-format-unescaped-3.0.2" = { 30339 30816 name = "quick-format-unescaped"; 30340 30817 packageName = "quick-format-unescaped"; ··· 31161 31638 src = fetchurl { 31162 31639 url = "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-3.4.0.tgz"; 31163 31640 sha512 = "4LM6Fw8eBQdwMYcES4yTnn2TqIasbXuwDx3um+QRs7S55aMKCBKBxvPXl2RiUjHwuJLTyYfxSpmfSAjQpcuP+A=="; 31641 + }; 31642 + }; 31643 + "registry-auth-token-4.0.0" = { 31644 + name = "registry-auth-token"; 31645 + packageName = "registry-auth-token"; 31646 + version = "4.0.0"; 31647 + src = fetchurl { 31648 + url = "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-4.0.0.tgz"; 31649 + sha512 = "lpQkHxd9UL6tb3k/aHAVfnVtn+Bcs9ob5InuFLLEDqSqeq+AljB8GZW9xY0x7F+xYwEcjKe07nyoxzEYz6yvkw=="; 31164 31650 }; 31165 31651 }; 31166 31652 "registry-url-3.1.0" = { ··· 33620 34106 sha1 = "6541184cc90aeea6c6e7b35e2659082443c66198"; 33621 34107 }; 33622 34108 }; 33623 - "snyk-1.195.1" = { 34109 + "snyk-1.197.0" = { 33624 34110 name = "snyk"; 33625 34111 packageName = "snyk"; 33626 - version = "1.195.1"; 34112 + version = "1.197.0"; 33627 34113 src = fetchurl { 33628 - url = "https://registry.npmjs.org/snyk/-/snyk-1.195.1.tgz"; 33629 - sha512 = "PJ5K8W+gTkg/CktePxvhahiHZ75PC6ZPVpsk2icYX9nx9Fx4VYZ8pt8GJYo31KLrlwENG3WxBNV5xas+dd2csg=="; 34114 + url = "https://registry.npmjs.org/snyk/-/snyk-1.197.0.tgz"; 34115 + sha512 = "qZSQ0nW+ow1sjogLME3CumXgMJXpm37lyhikt8SurGUH8ogkq4Q7s7Md9ercJJpEd9+LVjKJY4IBp+2Qv4HInw=="; 33630 34116 }; 33631 34117 }; 33632 34118 "snyk-config-2.2.2" = { ··· 33764 34250 sha512 = "GP3VBrkz1iDDw2q8ftTqppHqzIAxmsUIoXR+FRWDKcipkKHXHJyUmtEo11QVT5fNRV0D0RCsssk2S5CTxTCu6A=="; 33765 34251 }; 33766 34252 }; 33767 - "snyk-sbt-plugin-2.5.7" = { 34253 + "snyk-sbt-plugin-2.6.0" = { 33768 34254 name = "snyk-sbt-plugin"; 33769 34255 packageName = "snyk-sbt-plugin"; 33770 - version = "2.5.7"; 34256 + version = "2.6.0"; 33771 34257 src = fetchurl { 33772 - url = "https://registry.npmjs.org/snyk-sbt-plugin/-/snyk-sbt-plugin-2.5.7.tgz"; 33773 - sha512 = "nVGsYq/EZfSFzKaXJvUTqaf9phH5+EgZNN3ynN9Y54EO8Lh4Dljnd/gBIQzxHMI2joQDH4FMB3ojDZeiCkeQ1Q=="; 34258 + url = "https://registry.npmjs.org/snyk-sbt-plugin/-/snyk-sbt-plugin-2.6.0.tgz"; 34259 + sha512 = "a2NGX82rWkzGbgL9HZNACvGWR25SnPpCWw4aM+bDuSBYuWp/61oBz2DW1kI+pCP658FYjzDql7pmz0H+UPiwNA=="; 33774 34260 }; 33775 34261 }; 33776 34262 "snyk-tree-1.0.0" = { ··· 33980 34466 sha512 = "FbZ/X/2Xq3DAMhuRA4bnN0jy1QxaPTVPLFvyv6CEj0QDKSTdWp9yRxo1JhqXmWKhPQeJyUMajHJB2UjT43pFcw=="; 33981 34467 }; 33982 34468 }; 34469 + "socksjs-0.5.0" = { 34470 + name = "socksjs"; 34471 + packageName = "socksjs"; 34472 + version = "0.5.0"; 34473 + src = fetchurl { 34474 + url = "https://registry.npmjs.org/socksjs/-/socksjs-0.5.0.tgz"; 34475 + sha1 = "77b005e32d1bfc96e560fedd5d7eedcf120f87e3"; 34476 + }; 34477 + }; 33983 34478 "sodium-browserify-1.3.0" = { 33984 34479 name = "sodium-browserify"; 33985 34480 packageName = "sodium-browserify"; ··· 34034 34529 sha512 = "csdVyakzHJRyCevY4aZC2Eacda8paf+4nmRGF2N7KxCLKY2Ajn72JsExaQlJQ2BiXJncp44p3T+b80cU+2TTsg=="; 34035 34530 }; 34036 34531 }; 34037 - "sonic-boom-0.7.4" = { 34532 + "sonic-boom-0.7.5" = { 34038 34533 name = "sonic-boom"; 34039 34534 packageName = "sonic-boom"; 34040 - version = "0.7.4"; 34535 + version = "0.7.5"; 34041 34536 src = fetchurl { 34042 - url = "https://registry.npmjs.org/sonic-boom/-/sonic-boom-0.7.4.tgz"; 34043 - sha512 = "8JRAJg0RxZtFLQMxolwETvWd2JSlH3ZGo/Z4xPxMbpqF14xCgVYPVeFCFOR3zyr3pcfG82QDVj6537Sx5ZWdNw=="; 34537 + url = "https://registry.npmjs.org/sonic-boom/-/sonic-boom-0.7.5.tgz"; 34538 + sha512 = "1pKrnAV6RfvntPnarY71tpthFTM3pWZWWQdghZY8ARjtDPGzG/inxqSuRwQY/7V1woUjfyxPb437zn4p5phgnQ=="; 34044 34539 }; 34045 34540 }; 34046 34541 "sorcery-0.10.0" = { ··· 35166 35661 src = fetchurl { 35167 35662 url = "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.0.tgz"; 35168 35663 sha1 = "d5c752825e5367e786f78e18e445ea223a155952"; 35664 + }; 35665 + }; 35666 + "stream-source-0.3.5" = { 35667 + name = "stream-source"; 35668 + packageName = "stream-source"; 35669 + version = "0.3.5"; 35670 + src = fetchurl { 35671 + url = "https://registry.npmjs.org/stream-source/-/stream-source-0.3.5.tgz"; 35672 + sha512 = "ZuEDP9sgjiAwUVoDModftG0JtYiLUV8K4ljYD1VyUMRWtbVf92474o4kuuul43iZ8t/hRuiDAx1dIJSvirrK/g=="; 35169 35673 }; 35170 35674 }; 35171 35675 "stream-splicer-2.0.1" = { ··· 36393 36897 sha1 = "458b83887f288fc56d6fffbfad262e26638efa69"; 36394 36898 }; 36395 36899 }; 36396 - "terminal-kit-1.28.19" = { 36900 + "terminal-kit-1.28.25" = { 36397 36901 name = "terminal-kit"; 36398 36902 packageName = "terminal-kit"; 36399 - version = "1.28.19"; 36903 + version = "1.28.25"; 36400 36904 src = fetchurl { 36401 - url = "https://registry.npmjs.org/terminal-kit/-/terminal-kit-1.28.19.tgz"; 36402 - sha512 = "lcQgNFfjb+VKCtmXG8K6VCryUMURLKTM3xumY4Y1eXV4ikpjAZ/SFdnb44bnL5iJTEr20xw2m20rJyTsDUeFSw=="; 36905 + url = "https://registry.npmjs.org/terminal-kit/-/terminal-kit-1.28.25.tgz"; 36906 + sha512 = "6E/vLiMg7uUZI7T1GLVLITx3Hw22VVPL3O8+s4Lh9q/wuzJ0s1fDD0L9F/u+tHMFH2lHIRa0n7QPCzHOv/AYGA=="; 36403 36907 }; 36404 36908 }; 36405 36909 "terser-3.17.0" = { ··· 36492 36996 sha512 = "PW6rXqLNGL3xZ6d5/INrX+pt8qbffmeDPLcvkBOlfNpDRFhVvNNjFmZXH86ZQjrOz9t/nNZDBXqnzqJuioJbSQ=="; 36493 36997 }; 36494 36998 }; 36999 + "thelounge-ldapjs-non-maintained-fork-1.0.4" = { 37000 + name = "thelounge-ldapjs-non-maintained-fork"; 37001 + packageName = "thelounge-ldapjs-non-maintained-fork"; 37002 + version = "1.0.4"; 37003 + src = fetchurl { 37004 + url = "https://registry.npmjs.org/thelounge-ldapjs-non-maintained-fork/-/thelounge-ldapjs-non-maintained-fork-1.0.4.tgz"; 37005 + sha512 = "uf6H6UMv6EKmU81V1Q5lECwiGz4noSua+C+nGiC/Vgtayu3VRjtSSIJzUJDUjJT3YS8HJgkvBe2SsgGrPlT/7g=="; 37006 + }; 37007 + }; 36495 37008 "then-fs-2.0.0" = { 36496 37009 name = "then-fs"; 36497 37010 packageName = "then-fs"; ··· 37021 37534 src = fetchurl { 37022 37535 url = "https://registry.npmjs.org/to-through/-/to-through-2.0.0.tgz"; 37023 37536 sha1 = "fc92adaba072647bc0b67d6b03664aa195093af6"; 37537 + }; 37538 + }; 37539 + "to-utf8-0.0.1" = { 37540 + name = "to-utf8"; 37541 + packageName = "to-utf8"; 37542 + version = "0.0.1"; 37543 + src = fetchurl { 37544 + url = "https://registry.npmjs.org/to-utf8/-/to-utf8-0.0.1.tgz"; 37545 + sha1 = "d17aea72ff2fba39b9e43601be7b3ff72e089852"; 37024 37546 }; 37025 37547 }; 37026 37548 "to-vfile-1.0.0" = { ··· 37761 38283 sha1 = "5c080e5d661cbbe38259d2e70a3c7253e873881d"; 37762 38284 }; 37763 38285 }; 38286 + "ua-parser-js-0.7.20" = { 38287 + name = "ua-parser-js"; 38288 + packageName = "ua-parser-js"; 38289 + version = "0.7.20"; 38290 + src = fetchurl { 38291 + url = "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.20.tgz"; 38292 + sha512 = "8OaIKfzL5cpx8eCMAhhvTlft8GYF8b2eQr6JkCyVdrgjcytyOmPCXrqXFcUnhonRpLlh5yxEZVohm6mzaowUOw=="; 38293 + }; 38294 + }; 37764 38295 "uc.micro-1.0.6" = { 37765 38296 name = "uc.micro"; 37766 38297 packageName = "uc.micro"; ··· 38778 39309 sha1 = "1505a03a289a48cbd7a434efbaeec5055f5633a9"; 38779 39310 }; 38780 39311 }; 39312 + "urlsafe-base64-1.0.0" = { 39313 + name = "urlsafe-base64"; 39314 + packageName = "urlsafe-base64"; 39315 + version = "1.0.0"; 39316 + src = fetchurl { 39317 + url = "https://registry.npmjs.org/urlsafe-base64/-/urlsafe-base64-1.0.0.tgz"; 39318 + sha1 = "23f89069a6c62f46cf3a1d3b00169cefb90be0c6"; 39319 + }; 39320 + }; 38781 39321 "use-3.1.1" = { 38782 39322 name = "use"; 38783 39323 packageName = "use"; ··· 39147 39687 sha1 = "d2bd5c66db76c13879d96e6a306edc989df978da"; 39148 39688 }; 39149 39689 }; 39690 + "varint-0.0.3" = { 39691 + name = "varint"; 39692 + packageName = "varint"; 39693 + version = "0.0.3"; 39694 + src = fetchurl { 39695 + url = "https://registry.npmjs.org/varint/-/varint-0.0.3.tgz"; 39696 + sha1 = "b821de9b04b38b3cd22f72c18d94a9fb72ab3518"; 39697 + }; 39698 + }; 39150 39699 "varint-3.0.1" = { 39151 39700 name = "varint"; 39152 39701 packageName = "varint"; ··· 39219 39768 sha1 = "4a69d7052a47f4ce85503d7641df1cbf40432a94"; 39220 39769 }; 39221 39770 }; 39771 + "vasync-1.6.4" = { 39772 + name = "vasync"; 39773 + packageName = "vasync"; 39774 + version = "1.6.4"; 39775 + src = fetchurl { 39776 + url = "https://registry.npmjs.org/vasync/-/vasync-1.6.4.tgz"; 39777 + sha1 = "dfe93616ad0e7ae801b332a9d88bfc5cdc8e1d1f"; 39778 + }; 39779 + }; 39222 39780 "vendors-1.0.3" = { 39223 39781 name = "vendors"; 39224 39782 packageName = "vendors"; ··· 39930 40488 sha1 = "7137946585c73fe44882013853bd000c5d687a4e"; 39931 40489 }; 39932 40490 }; 40491 + "web-push-3.3.5" = { 40492 + name = "web-push"; 40493 + packageName = "web-push"; 40494 + version = "3.3.5"; 40495 + src = fetchurl { 40496 + url = "https://registry.npmjs.org/web-push/-/web-push-3.3.5.tgz"; 40497 + sha512 = "sukVBk0chRCL4n+Xwurl2TlD4/JmezNv4L2nwlTZx4KwMeUPfmD9TdGl6A6taayNgjObYzp0k0gubAcQCp7TMg=="; 40498 + }; 40499 + }; 39933 40500 "webassemblyjs-1.8.5" = { 39934 40501 name = "webassemblyjs"; 39935 40502 packageName = "webassemblyjs"; ··· 39957 40524 sha512 = "YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg=="; 39958 40525 }; 39959 40526 }; 39960 - "webpack-4.36.1" = { 40527 + "webpack-4.37.0" = { 39961 40528 name = "webpack"; 39962 40529 packageName = "webpack"; 39963 - version = "4.36.1"; 40530 + version = "4.37.0"; 39964 40531 src = fetchurl { 39965 - url = "https://registry.npmjs.org/webpack/-/webpack-4.36.1.tgz"; 39966 - sha512 = "Ej01/N9W8DVyhEpeQnbUdGvOECw0L46FxS12cCOs8gSK7bhUlrbHRnWkjiXckGlHjUrmL89kDpTRIkUk6Y+fKg=="; 40532 + url = "https://registry.npmjs.org/webpack/-/webpack-4.37.0.tgz"; 40533 + sha512 = "iJPPvL7XpbcbwOthbzpa2BSPlmGp8lGDokAj/LdWtK80rsPoPOdANSbDBf2GAVLKZD3GhCuQ/gGkgN9HWs0Keg=="; 39967 40534 }; 39968 40535 }; 39969 40536 "webpack-cli-3.3.6" = { ··· 40794 41361 sha1 = "d501f97b3bdb403af8ef9ecc20573187aadac0e9"; 40795 41362 }; 40796 41363 }; 41364 + "xmlhttprequest-1.8.0" = { 41365 + name = "xmlhttprequest"; 41366 + packageName = "xmlhttprequest"; 41367 + version = "1.8.0"; 41368 + src = fetchurl { 41369 + url = "https://registry.npmjs.org/xmlhttprequest/-/xmlhttprequest-1.8.0.tgz"; 41370 + sha1 = "67fe075c5c24fef39f9d65f5f7b7fe75171968fc"; 41371 + }; 41372 + }; 40797 41373 "xmlhttprequest-https://github.com/LearnBoost/node-XMLHttpRequest/archive/0f36d0b5ebc03d85f860d42a64ae9791e1daa433.tar.gz" = { 40798 41374 name = "xmlhttprequest"; 40799 41375 packageName = "xmlhttprequest"; ··· 41173 41749 sha512 = "HK25qidFTCVuj/D1VfNiEndpLIeJN78aqgR23nL3y4N0U/91cOAzqfHlF8n2BvoNDcZmJKin3ddNSvOxSr8flw=="; 41174 41750 }; 41175 41751 }; 41752 + "yarn-1.16.0" = { 41753 + name = "yarn"; 41754 + packageName = "yarn"; 41755 + version = "1.16.0"; 41756 + src = fetchurl { 41757 + url = "https://registry.npmjs.org/yarn/-/yarn-1.16.0.tgz"; 41758 + sha512 = "cfemyGlnWKA1zopUUgebTPf8C4WkPIZ+TJmklwcEAJ4u6oWPtJeAzrsamaGGh/+b1XWe8W51yzAImC4AWbWR1g=="; 41759 + }; 41760 + }; 41176 41761 "yauzl-2.10.0" = { 41177 41762 name = "yauzl"; 41178 41763 packageName = "yauzl"; ··· 41189 41774 src = fetchurl { 41190 41775 url = "https://registry.npmjs.org/yauzl/-/yauzl-2.4.1.tgz"; 41191 41776 sha1 = "9528f442dab1b2284e58b4379bb194e22e0c4005"; 41777 + }; 41778 + }; 41779 + "yazl-2.5.1" = { 41780 + name = "yazl"; 41781 + packageName = "yazl"; 41782 + version = "2.5.1"; 41783 + src = fetchurl { 41784 + url = "https://registry.npmjs.org/yazl/-/yazl-2.5.1.tgz"; 41785 + sha512 = "phENi2PLiHnHb6QBVot+dJnaAZ0xosj7p3fWl+znIjBDlnMI2PsZCJZ306BPTFOaHf5qdDEI8x5qFrSOBN5vrw=="; 41192 41786 }; 41193 41787 }; 41194 41788 "yeast-0.1.2" = { ··· 41623 42217 bypassCache = true; 41624 42218 reconstructLock = true; 41625 42219 }; 41626 - asar = nodeEnv.buildNodePackage { 41627 - name = "asar"; 41628 - packageName = "asar"; 41629 - version = "2.0.1"; 42220 + "@antora/cli" = nodeEnv.buildNodePackage { 42221 + name = "_at_antora_slash_cli"; 42222 + packageName = "@antora/cli"; 42223 + version = "2.0.0"; 41630 42224 src = fetchurl { 41631 - url = "https://registry.npmjs.org/asar/-/asar-2.0.1.tgz"; 41632 - sha512 = "Vo9yTuUtyFahkVMFaI6uMuX6N7k5DWa6a/8+7ov0/f8Lq9TVR0tUjzSzxQSxT1Y+RJIZgnP7BVb6Uhi+9cjxqA=="; 42225 + url = "https://registry.npmjs.org/@antora/cli/-/cli-2.0.0.tgz"; 42226 + sha512 = "vgoGTRRFkPtKeMgGoBevYzK97DwT75rxUeE6yAtm50i7e/aIGoXFyCglaXdsyP4FAfENVqN+DWy3ZuKxhPfc7g=="; 41633 42227 }; 41634 42228 dependencies = [ 41635 - sources."balanced-match-1.0.0" 41636 - sources."bluebird-3.5.5" 41637 - sources."brace-expansion-1.1.11" 41638 - sources."chromium-pickle-js-0.2.0" 42229 + sources."@antora/playbook-builder-2.0.0" 42230 + sources."@iarna/toml-2.2.3" 42231 + sources."argparse-1.0.10" 42232 + sources."camelcase-5.3.1" 42233 + sources."camelcase-keys-5.2.0" 41639 42234 sources."commander-2.20.0" 41640 - sources."concat-map-0.0.1" 41641 - sources."cuint-0.2.2" 41642 - sources."fs.realpath-1.0.0" 41643 - sources."glob-7.1.4" 41644 - sources."inflight-1.0.6" 41645 - sources."inherits-2.0.4" 41646 - sources."minimatch-3.0.4" 41647 - sources."minimist-0.0.8" 41648 - sources."mkdirp-0.5.1" 41649 - sources."once-1.4.0" 41650 - sources."path-is-absolute-1.0.1" 41651 - sources."rimraf-2.6.3" 41652 - sources."tmp-0.1.0" 41653 - sources."tmp-promise-1.1.0" 41654 - sources."wrappy-1.0.2" 42235 + (sources."convict-4.4.1" // { 42236 + dependencies = [ 42237 + sources."json5-1.0.1" 42238 + ]; 42239 + }) 42240 + sources."decamelize-1.2.0" 42241 + sources."deep-freeze-0.0.1" 42242 + sources."depd-1.1.2" 42243 + sources."esprima-4.0.1" 42244 + sources."js-yaml-3.13.1" 42245 + sources."json5-2.1.0" 42246 + sources."lodash.clonedeep-4.5.0" 42247 + sources."map-obj-3.1.0" 42248 + sources."minimist-1.2.0" 42249 + sources."moment-2.22.2" 42250 + sources."quick-lru-1.1.0" 42251 + sources."sprintf-js-1.0.3" 42252 + sources."validator-10.8.0" 42253 + sources."yargs-parser-11.0.0" 41655 42254 ]; 41656 42255 buildInputs = globalBuildInputs; 41657 42256 meta = { 41658 - description = "Creating Electron app packages"; 41659 - homepage = https://github.com/electron/asar; 41660 - license = "MIT"; 42257 + description = "The command line interface for Antora."; 42258 + homepage = https://antora.org/; 42259 + license = "MPL-2.0"; 41661 42260 }; 41662 42261 production = true; 41663 42262 bypassCache = true; 41664 42263 reconstructLock = true; 41665 42264 }; 41666 - "@antora/cli" = nodeEnv.buildNodePackage { 41667 - name = "_at_antora_slash_cli"; 41668 - packageName = "@antora/cli"; 42265 + "@antora/site-generator-default" = nodeEnv.buildNodePackage { 42266 + name = "_at_antora_slash_site-generator-default"; 42267 + packageName = "@antora/site-generator-default"; 41669 42268 version = "2.0.0"; 41670 42269 src = fetchurl { 41671 - url = "https://registry.npmjs.org/@antora/cli/-/cli-2.0.0.tgz"; 41672 - sha512 = "vgoGTRRFkPtKeMgGoBevYzK97DwT75rxUeE6yAtm50i7e/aIGoXFyCglaXdsyP4FAfENVqN+DWy3ZuKxhPfc7g=="; 42270 + url = "https://registry.npmjs.org/@antora/site-generator-default/-/site-generator-default-2.0.0.tgz"; 42271 + sha512 = "YMor7dPAef4Pqyxbz7/ZqS0k5haxtcIkmEAfTJpGthCtRhrYfOu2iH+ZntnKRCubNdSgs77CRYjpSjm43rQ7FQ=="; 41673 42272 }; 41674 42273 dependencies = [ 42274 + sources."@antora/asciidoc-loader-2.0.0" 42275 + sources."@antora/content-aggregator-2.0.0" 42276 + sources."@antora/content-classifier-2.0.0" 42277 + sources."@antora/document-converter-2.0.0" 42278 + sources."@antora/expand-path-helper-1.0.0" 42279 + sources."@antora/navigation-builder-2.0.0" 42280 + sources."@antora/page-composer-2.0.0" 41675 42281 sources."@antora/playbook-builder-2.0.0" 42282 + sources."@antora/redirect-producer-2.0.0" 42283 + sources."@antora/site-mapper-2.0.0" 42284 + sources."@antora/site-publisher-2.0.0" 42285 + sources."@antora/ui-loader-2.0.0" 42286 + sources."@babel/runtime-7.5.5" 41676 42287 sources."@iarna/toml-2.2.3" 42288 + sources."@sindresorhus/is-0.14.0" 42289 + sources."@szmarczak/http-timer-1.1.2" 42290 + sources."append-buffer-1.0.2" 41677 42291 sources."argparse-1.0.10" 42292 + sources."asciidoctor.js-1.5.9" 42293 + sources."async-lock-1.2.2" 42294 + sources."balanced-match-1.0.0" 42295 + sources."base64-js-0.0.2" 42296 + sources."benchmark-1.0.0" 42297 + (sources."bl-2.2.0" // { 42298 + dependencies = [ 42299 + sources."readable-stream-2.3.6" 42300 + sources."string_decoder-1.1.1" 42301 + ]; 42302 + }) 42303 + sources."bops-0.0.7" 42304 + sources."brace-expansion-1.1.11" 42305 + sources."buffer-crc32-0.2.13" 42306 + sources."buffer-equal-1.0.0" 42307 + sources."cache-directory-2.0.0" 42308 + (sources."cacheable-request-6.1.0" // { 42309 + dependencies = [ 42310 + sources."get-stream-5.1.0" 42311 + sources."lowercase-keys-2.0.0" 42312 + sources."pump-3.0.0" 42313 + ]; 42314 + }) 41678 42315 sources."camelcase-5.3.1" 41679 42316 sources."camelcase-keys-5.2.0" 42317 + sources."clean-git-ref-1.0.3" 42318 + sources."clone-2.1.2" 42319 + sources."clone-buffer-1.0.0" 42320 + sources."clone-response-1.0.2" 42321 + sources."clone-stats-1.0.0" 42322 + (sources."cloneable-readable-1.1.3" // { 42323 + dependencies = [ 42324 + sources."readable-stream-2.3.6" 42325 + sources."string_decoder-1.1.1" 42326 + ]; 42327 + }) 41680 42328 sources."commander-2.20.0" 42329 + sources."concat-map-0.0.1" 42330 + sources."convert-source-map-1.6.0" 41681 42331 (sources."convict-4.4.1" // { 41682 42332 dependencies = [ 41683 42333 sources."json5-1.0.1" 41684 42334 ]; 41685 42335 }) 42336 + sources."core-util-is-1.0.2" 42337 + sources."crc-32-1.2.0" 41686 42338 sources."decamelize-1.2.0" 42339 + sources."decompress-response-3.3.0" 41687 42340 sources."deep-freeze-0.0.1" 42341 + sources."defer-to-connect-1.0.2" 42342 + sources."define-properties-1.1.3" 41688 42343 sources."depd-1.1.2" 42344 + sources."diff-3.5.0" 42345 + sources."diff-lines-1.1.1" 42346 + sources."duplexer-0.1.1" 42347 + sources."duplexer3-0.1.4" 42348 + (sources."duplexify-3.7.1" // { 42349 + dependencies = [ 42350 + sources."readable-stream-2.3.6" 42351 + sources."string_decoder-1.1.1" 42352 + ]; 42353 + }) 42354 + sources."end-of-stream-1.4.1" 42355 + sources."escape-string-regexp-1.0.5" 41689 42356 sources."esprima-4.0.1" 42357 + sources."event-stream-3.3.4" 42358 + sources."exit-on-epipe-1.0.1" 42359 + sources."extend-3.0.2" 42360 + sources."fd-slicer-1.1.0" 42361 + (sources."flush-write-stream-1.1.1" // { 42362 + dependencies = [ 42363 + sources."readable-stream-2.3.6" 42364 + sources."string_decoder-1.1.1" 42365 + ]; 42366 + }) 42367 + sources."from-0.1.7" 42368 + sources."fs-extra-7.0.1" 42369 + (sources."fs-mkdirp-stream-1.0.0" // { 42370 + dependencies = [ 42371 + sources."readable-stream-2.3.6" 42372 + sources."string_decoder-1.1.1" 42373 + sources."through2-2.0.5" 42374 + ]; 42375 + }) 42376 + sources."fs.realpath-1.0.0" 42377 + sources."function-bind-1.1.1" 42378 + (sources."get-stream-4.1.0" // { 42379 + dependencies = [ 42380 + sources."pump-3.0.0" 42381 + ]; 42382 + }) 42383 + sources."git-apply-delta-0.0.7" 42384 + sources."glob-6.0.4" 42385 + sources."glob-parent-3.1.0" 42386 + (sources."glob-stream-6.1.0" // { 42387 + dependencies = [ 42388 + sources."glob-7.1.4" 42389 + sources."readable-stream-2.3.6" 42390 + sources."string_decoder-1.1.1" 42391 + ]; 42392 + }) 42393 + sources."globalyzer-0.1.4" 42394 + sources."globrex-0.1.2" 42395 + sources."got-9.6.0" 42396 + sources."graceful-fs-4.2.0" 42397 + (sources."gulp-vinyl-zip-2.1.2" // { 42398 + dependencies = [ 42399 + sources."readable-stream-2.3.6" 42400 + sources."string_decoder-1.1.1" 42401 + sources."through2-2.0.5" 42402 + ]; 42403 + }) 42404 + sources."handlebars-4.1.2" 42405 + sources."has-symbols-1.0.0" 42406 + sources."http-cache-semantics-4.0.3" 42407 + sources."ignore-5.1.2" 42408 + sources."inflight-1.0.6" 42409 + sources."inherits-2.0.4" 42410 + sources."is-absolute-1.0.0" 42411 + sources."is-buffer-1.1.6" 42412 + sources."is-extglob-2.1.1" 42413 + sources."is-glob-3.1.0" 42414 + sources."is-negated-glob-1.0.0" 42415 + sources."is-relative-1.0.0" 42416 + sources."is-unc-path-1.0.0" 42417 + sources."is-utf8-0.2.1" 42418 + sources."is-valid-glob-1.0.0" 42419 + sources."is-windows-1.0.2" 42420 + sources."isarray-1.0.0" 42421 + sources."isomorphic-git-0.47.0" 41690 42422 sources."js-yaml-3.13.1" 42423 + sources."json-buffer-3.0.0" 42424 + sources."json-stable-stringify-without-jsonify-1.0.1" 41691 42425 sources."json5-2.1.0" 42426 + sources."jsonfile-4.0.0" 42427 + sources."keyv-3.1.0" 42428 + (sources."lazystream-1.0.0" // { 42429 + dependencies = [ 42430 + sources."readable-stream-2.3.6" 42431 + sources."string_decoder-1.1.1" 42432 + ]; 42433 + }) 42434 + sources."lead-1.0.0" 42435 + sources."lodash-4.17.15" 41692 42436 sources."lodash.clonedeep-4.5.0" 42437 + sources."lowercase-keys-1.0.1" 41693 42438 sources."map-obj-3.1.0" 42439 + sources."map-stream-0.1.0" 42440 + sources."marky-1.2.1" 42441 + sources."matcher-1.1.1" 42442 + sources."mime-db-1.40.0" 42443 + sources."mime-types-2.1.24" 42444 + sources."mimic-response-1.0.1" 42445 + sources."minimatch-3.0.4" 42446 + sources."minimatch-all-1.1.0" 41694 42447 sources."minimist-1.2.0" 42448 + sources."minimisted-2.0.0" 41695 42449 sources."moment-2.22.2" 42450 + sources."multi-progress-2.0.0" 42451 + sources."neo-async-2.6.1" 42452 + sources."nick-0.1.3" 42453 + sources."normalize-path-2.1.1" 42454 + sources."normalize-url-4.3.0" 42455 + sources."now-and-later-2.0.1" 42456 + sources."object-keys-1.1.1" 42457 + sources."object.assign-4.1.0" 42458 + sources."once-1.4.0" 42459 + sources."opal-runtime-1.0.11" 42460 + (sources."optimist-0.6.1" // { 42461 + dependencies = [ 42462 + sources."minimist-0.0.10" 42463 + ]; 42464 + }) 42465 + (sources."ordered-read-streams-1.0.1" // { 42466 + dependencies = [ 42467 + sources."readable-stream-2.3.6" 42468 + sources."string_decoder-1.1.1" 42469 + ]; 42470 + }) 42471 + sources."p-cancelable-1.1.0" 42472 + sources."pako-1.0.10" 42473 + sources."path-dirname-1.0.2" 42474 + sources."path-is-absolute-1.0.1" 42475 + sources."pause-stream-0.0.11" 42476 + sources."pend-1.2.0" 42477 + sources."pify-4.0.1" 42478 + sources."prepend-http-2.0.0" 42479 + sources."printj-1.1.2" 42480 + sources."process-nextick-args-2.0.1" 42481 + sources."progress-1.1.8" 42482 + sources."pump-2.0.1" 42483 + sources."pumpify-1.5.1" 42484 + sources."queue-4.5.1" 41696 42485 sources."quick-lru-1.1.0" 42486 + sources."readable-stream-3.4.0" 42487 + sources."regenerator-runtime-0.13.3" 42488 + sources."remove-bom-buffer-3.0.0" 42489 + (sources."remove-bom-stream-1.2.0" // { 42490 + dependencies = [ 42491 + sources."readable-stream-2.3.6" 42492 + sources."string_decoder-1.1.1" 42493 + sources."through2-2.0.5" 42494 + ]; 42495 + }) 42496 + sources."remove-trailing-separator-1.1.0" 42497 + sources."replace-ext-1.0.0" 42498 + sources."require-from-string-2.0.2" 42499 + sources."resolve-options-1.1.0" 42500 + sources."responselike-1.0.2" 42501 + sources."safe-buffer-5.1.2" 42502 + sources."sha.js-2.4.11" 42503 + sources."simple-concat-1.0.0" 42504 + sources."simple-get-3.0.3" 42505 + sources."source-map-0.6.1" 42506 + sources."split-0.3.3" 42507 + sources."split2-3.1.1" 41697 42508 sources."sprintf-js-1.0.3" 42509 + sources."stream-combiner-0.0.4" 42510 + sources."stream-shift-1.0.0" 42511 + sources."stream-source-0.3.5" 42512 + sources."string_decoder-1.2.0" 42513 + sources."through-2.3.8" 42514 + sources."through2-3.0.1" 42515 + (sources."through2-filter-3.0.0" // { 42516 + dependencies = [ 42517 + sources."readable-stream-2.3.6" 42518 + sources."string_decoder-1.1.1" 42519 + sources."through2-2.0.5" 42520 + ]; 42521 + }) 42522 + sources."to-absolute-glob-2.0.2" 42523 + sources."to-readable-stream-1.0.0" 42524 + (sources."to-through-2.0.0" // { 42525 + dependencies = [ 42526 + sources."readable-stream-2.3.6" 42527 + sources."string_decoder-1.1.1" 42528 + sources."through2-2.0.5" 42529 + ]; 42530 + }) 42531 + sources."to-utf8-0.0.1" 42532 + sources."uglify-js-3.6.0" 42533 + sources."unc-path-regex-0.1.2" 42534 + sources."unique-stream-2.3.1" 42535 + sources."universalify-0.1.2" 42536 + sources."url-parse-lax-3.0.0" 42537 + sources."util-deprecate-1.0.2" 41698 42538 sources."validator-10.8.0" 42539 + sources."value-or-function-3.0.0" 42540 + sources."varint-0.0.3" 42541 + sources."vinyl-2.2.0" 42542 + (sources."vinyl-fs-3.0.3" // { 42543 + dependencies = [ 42544 + sources."readable-stream-2.3.6" 42545 + sources."string_decoder-1.1.1" 42546 + sources."through2-2.0.5" 42547 + ]; 42548 + }) 42549 + sources."vinyl-sourcemap-1.1.0" 42550 + sources."wordwrap-0.0.3" 42551 + sources."wrappy-1.0.2" 42552 + sources."xdg-basedir-3.0.0" 42553 + sources."xmlhttprequest-1.8.0" 42554 + sources."xtend-4.0.2" 41699 42555 sources."yargs-parser-11.0.0" 42556 + sources."yauzl-2.10.0" 42557 + sources."yazl-2.5.1" 41700 42558 ]; 41701 42559 buildInputs = globalBuildInputs; 41702 42560 meta = { 41703 - description = "The command line interface for Antora."; 42561 + description = "The default site generator pipeline for producing and publishing static documentation sites with Antora."; 41704 42562 homepage = https://antora.org/; 41705 42563 license = "MPL-2.0"; 41706 42564 }; ··· 41708 42566 bypassCache = true; 41709 42567 reconstructLock = true; 41710 42568 }; 42569 + asar = nodeEnv.buildNodePackage { 42570 + name = "asar"; 42571 + packageName = "asar"; 42572 + version = "2.0.1"; 42573 + src = fetchurl { 42574 + url = "https://registry.npmjs.org/asar/-/asar-2.0.1.tgz"; 42575 + sha512 = "Vo9yTuUtyFahkVMFaI6uMuX6N7k5DWa6a/8+7ov0/f8Lq9TVR0tUjzSzxQSxT1Y+RJIZgnP7BVb6Uhi+9cjxqA=="; 42576 + }; 42577 + dependencies = [ 42578 + sources."balanced-match-1.0.0" 42579 + sources."bluebird-3.5.5" 42580 + sources."brace-expansion-1.1.11" 42581 + sources."chromium-pickle-js-0.2.0" 42582 + sources."commander-2.20.0" 42583 + sources."concat-map-0.0.1" 42584 + sources."cuint-0.2.2" 42585 + sources."fs.realpath-1.0.0" 42586 + sources."glob-7.1.4" 42587 + sources."inflight-1.0.6" 42588 + sources."inherits-2.0.4" 42589 + sources."minimatch-3.0.4" 42590 + sources."minimist-0.0.8" 42591 + sources."mkdirp-0.5.1" 42592 + sources."once-1.4.0" 42593 + sources."path-is-absolute-1.0.1" 42594 + sources."rimraf-2.6.3" 42595 + sources."tmp-0.1.0" 42596 + sources."tmp-promise-1.1.0" 42597 + sources."wrappy-1.0.2" 42598 + ]; 42599 + buildInputs = globalBuildInputs; 42600 + meta = { 42601 + description = "Creating Electron app packages"; 42602 + homepage = https://github.com/electron/asar; 42603 + license = "MIT"; 42604 + }; 42605 + production = true; 42606 + bypassCache = true; 42607 + reconstructLock = true; 42608 + }; 41711 42609 aws-azure-login = nodeEnv.buildNodePackage { 41712 42610 name = "aws-azure-login"; 41713 42611 packageName = "aws-azure-login"; ··· 41724 42622 sources."ansi-styles-3.2.1" 41725 42623 sources."ast-types-0.13.2" 41726 42624 sources."async-limiter-1.0.0" 41727 - sources."aws-sdk-2.496.0" 42625 + sources."aws-sdk-2.497.0" 41728 42626 sources."balanced-match-1.0.0" 41729 42627 sources."base64-js-1.3.0" 41730 42628 sources."bluebird-3.5.5" ··· 41857 42755 sources."proxy-from-env-1.0.0" 41858 42756 sources."pseudomap-1.0.2" 41859 42757 sources."punycode-1.3.2" 41860 - sources."puppeteer-1.18.1" 42758 + sources."puppeteer-1.19.0" 41861 42759 sources."querystring-0.2.0" 41862 42760 sources."raw-body-2.4.1" 41863 42761 sources."readable-stream-3.4.0" ··· 44667 45565 ]; 44668 45566 }) 44669 45567 sources."hypercore-crypto-1.0.0" 44670 - (sources."hypercore-protocol-6.11.0" // { 45568 + (sources."hypercore-protocol-6.11.1" // { 44671 45569 dependencies = [ 44672 45570 sources."varint-5.0.0" 44673 45571 ]; ··· 45247 46145 sources."assert-plus-1.0.0" 45248 46146 sources."async-2.6.3" 45249 46147 sources."asynckit-0.4.0" 45250 - sources."aws-sdk-2.496.0" 46148 + sources."aws-sdk-2.497.0" 45251 46149 sources."aws-sign2-0.7.0" 45252 46150 sources."aws4-1.8.0" 45253 46151 sources."base64-js-1.3.0" ··· 50035 50933 sources."q-0.9.7" 50036 50934 ]; 50037 50935 }) 50038 - sources."terminal-kit-1.28.19" 50936 + sources."terminal-kit-1.28.25" 50039 50937 (sources."tkwidgets-0.5.26" // { 50040 50938 dependencies = [ 50041 50939 sources."is-fullwidth-code-point-2.0.0" ··· 50554 51452 sources."p-limit-2.2.0" 50555 51453 sources."p-locate-3.0.0" 50556 51454 sources."p-try-2.2.0" 50557 - sources."package-json-6.4.0" 51455 + sources."package-json-6.5.0" 50558 51456 sources."parseurl-1.3.3" 50559 51457 sources."path-exists-3.0.0" 50560 51458 sources."path-is-inside-1.0.2" ··· 50574 51472 sources."range-parser-1.2.1" 50575 51473 sources."raw-body-2.4.0" 50576 51474 sources."rc-1.2.8" 50577 - sources."registry-auth-token-3.4.0" 51475 + sources."registry-auth-token-4.0.0" 50578 51476 sources."registry-url-5.1.0" 50579 51477 (sources."request-2.88.0" // { 50580 51478 dependencies = [ ··· 51227 52125 lerna = nodeEnv.buildNodePackage { 51228 52126 name = "lerna"; 51229 52127 packageName = "lerna"; 51230 - version = "3.16.1"; 52128 + version = "3.16.2"; 51231 52129 src = fetchurl { 51232 - url = "https://registry.npmjs.org/lerna/-/lerna-3.16.1.tgz"; 51233 - sha512 = "MjVOWbSq5GABjfSG4q4wTw2eOTTFR5pwNmbDioI3nmrGsXI/kzzo3iRPTJlqL1klL+7O6s3lio7838vsPz9Iew=="; 52130 + url = "https://registry.npmjs.org/lerna/-/lerna-3.16.2.tgz"; 52131 + sha512 = "El4BJ3/h2Dw1TIMNk/30v6CXZrX85sVANMan5wmAaEGhlKwUGPV4HZLa7trFYCUSYgT4dL4pN15Vv3L48oYX/A=="; 51234 52132 }; 51235 52133 dependencies = [ 51236 52134 (sources."@evocateur/libnpmaccess-3.1.2" // { ··· 51250 52148 sources."semver-5.7.0" 51251 52149 ]; 51252 52150 }) 51253 - sources."@lerna/add-3.16.1" 52151 + sources."@lerna/add-3.16.2" 51254 52152 sources."@lerna/batch-packages-3.16.0" 51255 - sources."@lerna/bootstrap-3.16.1" 51256 - sources."@lerna/changed-3.16.1" 52153 + sources."@lerna/bootstrap-3.16.2" 52154 + sources."@lerna/changed-3.16.2" 51257 52155 sources."@lerna/check-working-tree-3.14.2" 51258 52156 sources."@lerna/child-process-3.14.2" 51259 52157 sources."@lerna/clean-3.16.0" ··· 51271 52169 sources."pify-4.0.1" 51272 52170 ]; 51273 52171 }) 51274 - sources."@lerna/create-symlink-3.16.0" 52172 + sources."@lerna/create-symlink-3.16.2" 51275 52173 sources."@lerna/describe-ref-3.14.2" 51276 52174 sources."@lerna/diff-3.16.0" 51277 52175 sources."@lerna/exec-3.16.0" ··· 51285 52183 sources."@lerna/has-npm-version-3.16.0" 51286 52184 sources."@lerna/import-3.16.0" 51287 52185 sources."@lerna/init-3.16.0" 51288 - sources."@lerna/link-3.16.0" 52186 + sources."@lerna/link-3.16.2" 51289 52187 sources."@lerna/list-3.16.0" 51290 52188 sources."@lerna/listable-3.16.0" 51291 52189 sources."@lerna/log-packed-3.16.0" ··· 51296 52194 }) 51297 52195 sources."@lerna/npm-dist-tag-3.16.0" 51298 52196 sources."@lerna/npm-install-3.16.0" 51299 - (sources."@lerna/npm-publish-3.16.1" // { 52197 + (sources."@lerna/npm-publish-3.16.2" // { 51300 52198 dependencies = [ 51301 52199 sources."pify-4.0.1" 51302 52200 ]; ··· 51304 52202 sources."@lerna/npm-run-script-3.14.2" 51305 52203 sources."@lerna/otplease-3.16.0" 51306 52204 sources."@lerna/output-3.13.0" 51307 - sources."@lerna/pack-directory-3.16.1" 52205 + sources."@lerna/pack-directory-3.16.2" 51308 52206 sources."@lerna/package-3.16.0" 51309 52207 sources."@lerna/package-graph-3.16.0" 51310 52208 sources."@lerna/prerelease-id-from-version-3.16.0" 51311 52209 sources."@lerna/project-3.16.0" 51312 52210 sources."@lerna/prompt-3.13.0" 51313 - sources."@lerna/publish-3.16.1" 52211 + sources."@lerna/publish-3.16.2" 51314 52212 sources."@lerna/pulse-till-done-3.13.0" 51315 52213 sources."@lerna/query-graph-3.16.0" 51316 52214 sources."@lerna/resolve-symlink-3.16.0" 51317 52215 sources."@lerna/rimraf-dir-3.14.2" 51318 52216 sources."@lerna/run-3.16.0" 51319 - sources."@lerna/run-lifecycle-3.16.1" 52217 + sources."@lerna/run-lifecycle-3.16.2" 51320 52218 sources."@lerna/run-parallel-batches-3.16.0" 51321 52219 sources."@lerna/run-topologically-3.16.0" 51322 - sources."@lerna/symlink-binary-3.16.0" 51323 - sources."@lerna/symlink-dependencies-3.16.0" 52220 + sources."@lerna/symlink-binary-3.16.2" 52221 + sources."@lerna/symlink-dependencies-3.16.2" 51324 52222 sources."@lerna/timer-3.13.0" 51325 52223 sources."@lerna/validation-error-3.13.0" 51326 - sources."@lerna/version-3.16.1" 52224 + sources."@lerna/version-3.16.2" 51327 52225 sources."@lerna/write-log-file-3.13.0" 51328 52226 sources."@mrmlnc/readdir-enhanced-2.2.1" 51329 52227 sources."@nodelib/fs.stat-1.1.3" 51330 - (sources."@octokit/endpoint-5.3.1" // { 52228 + (sources."@octokit/endpoint-5.3.2" // { 51331 52229 dependencies = [ 51332 52230 sources."is-plain-object-3.0.0" 51333 52231 sources."isobject-4.0.0" ··· 51341 52239 ]; 51342 52240 }) 51343 52241 sources."@octokit/request-error-1.0.4" 51344 - sources."@octokit/rest-16.28.5" 52242 + sources."@octokit/rest-16.28.6" 51345 52243 sources."@types/events-3.0.0" 51346 52244 sources."@types/glob-7.1.1" 51347 52245 sources."@types/minimatch-3.0.3" 51348 52246 sources."@types/node-12.6.8" 52247 + sources."@zkochan/cmd-shim-3.1.0" 51349 52248 sources."JSONStream-1.3.5" 51350 52249 sources."abbrev-1.1.1" 51351 52250 sources."agent-base-4.3.0" ··· 51354 52253 sources."ansi-escapes-3.2.0" 51355 52254 sources."ansi-regex-2.1.1" 51356 52255 sources."ansi-styles-3.2.1" 52256 + sources."any-promise-1.3.0" 51357 52257 sources."aproba-1.2.0" 51358 52258 sources."are-we-there-yet-1.1.5" 51359 52259 sources."argparse-1.0.10" ··· 51439 52339 ]; 51440 52340 }) 51441 52341 sources."clone-1.0.4" 51442 - sources."cmd-shim-2.0.2" 51443 52342 sources."code-point-at-1.1.0" 51444 52343 sources."collection-visit-1.0.0" 51445 52344 sources."color-convert-1.9.3" ··· 51804 52703 ]; 51805 52704 }) 51806 52705 sources."mkdirp-0.5.1" 52706 + sources."mkdirp-promise-5.0.1" 51807 52707 sources."modify-values-1.0.1" 51808 52708 sources."move-concurrently-1.0.1" 51809 52709 sources."ms-2.1.2" 51810 52710 sources."multimatch-3.0.0" 51811 52711 sources."mute-stream-0.0.7" 52712 + sources."mz-2.7.0" 51812 52713 sources."nanomatch-1.2.13" 51813 52714 sources."neo-async-2.6.1" 51814 52715 sources."nice-try-1.0.5" ··· 51827 52728 }) 51828 52729 sources."normalize-url-3.3.0" 51829 52730 sources."npm-bundled-1.0.6" 51830 - sources."npm-lifecycle-3.0.0" 52731 + sources."npm-lifecycle-3.1.2" 51831 52732 (sources."npm-package-arg-6.1.0" // { 51832 52733 dependencies = [ 51833 52734 sources."semver-5.7.0" ··· 52079 52980 sources."temp-dir-1.0.0" 52080 52981 sources."temp-write-3.4.0" 52081 52982 sources."text-extensions-2.0.0" 52983 + sources."thenify-3.3.0" 52984 + sources."thenify-all-1.6.0" 52082 52985 sources."through-2.3.8" 52083 52986 sources."through2-2.0.5" 52084 52987 sources."tmp-0.0.33" ··· 53576 54479 }) 53577 54480 sources."duplexer3-0.1.4" 53578 54481 sources."duplexify-3.7.1" 53579 - sources."electron-to-chromium-1.3.198" 54482 + sources."electron-to-chromium-1.3.199" 53580 54483 sources."elliptic-6.5.0" 53581 54484 sources."emoji-regex-7.0.3" 53582 54485 sources."emojis-list-2.1.0" ··· 54363 55266 sources."vm-browserify-1.1.0" 54364 55267 sources."watchpack-1.6.0" 54365 55268 sources."wcwidth-1.0.1" 54366 - (sources."webpack-4.36.1" // { 55269 + (sources."webpack-4.37.0" // { 54367 55270 dependencies = [ 54368 55271 sources."arr-diff-4.0.0" 54369 55272 sources."array-unique-0.3.2" ··· 57573 58476 sources."p-limit-2.2.0" 57574 58477 sources."p-locate-4.1.0" 57575 58478 sources."p-try-2.2.0" 57576 - sources."package-json-6.4.0" 58479 + sources."package-json-6.5.0" 57577 58480 (sources."pacote-9.5.4" // { 57578 58481 dependencies = [ 57579 58482 sources."semver-5.7.0" ··· 57616 58519 sources."safe-buffer-5.1.2" 57617 58520 ]; 57618 58521 }) 57619 - sources."registry-auth-token-3.4.0" 58522 + sources."registry-auth-token-4.0.0" 57620 58523 sources."registry-url-5.1.0" 57621 58524 sources."require-from-string-2.0.2" 57622 58525 (sources."requireg-0.2.2" // { ··· 58918 59821 sources."ecc-jsbn-0.1.2" 58919 59822 sources."editorconfig-0.15.3" 58920 59823 sources."ee-first-1.1.1" 58921 - sources."electron-to-chromium-1.3.198" 59824 + sources."electron-to-chromium-1.3.199" 58922 59825 sources."elliptic-6.5.0" 58923 59826 sources."encodeurl-1.0.2" 58924 59827 sources."entities-1.1.2" ··· 60793 61696 snyk = nodeEnv.buildNodePackage { 60794 61697 name = "snyk"; 60795 61698 packageName = "snyk"; 60796 - version = "1.195.1"; 61699 + version = "1.197.0"; 60797 61700 src = fetchurl { 60798 - url = "https://registry.npmjs.org/snyk/-/snyk-1.195.1.tgz"; 60799 - sha512 = "PJ5K8W+gTkg/CktePxvhahiHZ75PC6ZPVpsk2icYX9nx9Fx4VYZ8pt8GJYo31KLrlwENG3WxBNV5xas+dd2csg=="; 61701 + url = "https://registry.npmjs.org/snyk/-/snyk-1.197.0.tgz"; 61702 + sha512 = "qZSQ0nW+ow1sjogLME3CumXgMJXpm37lyhikt8SurGUH8ogkq4Q7s7Md9ercJJpEd9+LVjKJY4IBp+2Qv4HInw=="; 60800 61703 }; 60801 61704 dependencies = [ 60802 61705 sources."@snyk/composer-lockfile-parser-1.0.3" ··· 61104 62007 sources."semver-5.7.0" 61105 62008 ]; 61106 62009 }) 61107 - (sources."snyk-sbt-plugin-2.5.7" // { 62010 + (sources."snyk-sbt-plugin-2.6.0" // { 61108 62011 dependencies = [ 61109 62012 sources."tmp-0.1.0" 61110 62013 ]; ··· 64044 64947 bypassCache = true; 64045 64948 reconstructLock = true; 64046 64949 }; 64950 + thelounge = nodeEnv.buildNodePackage { 64951 + name = "thelounge"; 64952 + packageName = "thelounge"; 64953 + version = "3.1.1"; 64954 + src = fetchurl { 64955 + url = "https://registry.npmjs.org/thelounge/-/thelounge-3.1.1.tgz"; 64956 + sha512 = "TaYiWjvP5wjKAob3qMr8Ks+C8LfTxIohrhZ8b4DuilHlZCpIeEgADXs2K8u+ZVSMJ6GHOQKvpCogSE30sTL36A=="; 64957 + }; 64958 + dependencies = [ 64959 + sources."@sindresorhus/is-0.14.0" 64960 + sources."@szmarczak/http-timer-1.1.2" 64961 + sources."abbrev-1.1.1" 64962 + sources."abstract-logging-1.0.0" 64963 + sources."accepts-1.3.7" 64964 + sources."after-0.8.2" 64965 + sources."agent-base-4.3.0" 64966 + sources."ajv-6.10.2" 64967 + sources."ansi-regex-2.1.1" 64968 + sources."ansi-styles-3.2.1" 64969 + sources."aproba-1.2.0" 64970 + (sources."are-we-there-yet-1.1.5" // { 64971 + dependencies = [ 64972 + sources."isarray-1.0.0" 64973 + sources."readable-stream-2.3.6" 64974 + sources."string_decoder-1.1.1" 64975 + ]; 64976 + }) 64977 + sources."array-flatten-1.1.1" 64978 + sources."arraybuffer.slice-0.0.7" 64979 + sources."asn1-0.2.3" 64980 + sources."asn1.js-5.2.0" 64981 + sources."assert-plus-1.0.0" 64982 + sources."async-limiter-1.0.0" 64983 + sources."asynckit-0.4.0" 64984 + sources."aws-sign2-0.7.0" 64985 + sources."aws4-1.8.0" 64986 + sources."backo2-1.0.2" 64987 + sources."backoff-2.5.0" 64988 + sources."balanced-match-1.0.0" 64989 + sources."base64-arraybuffer-0.1.5" 64990 + sources."base64id-1.0.0" 64991 + sources."bcrypt-pbkdf-1.0.2" 64992 + sources."bcryptjs-2.4.3" 64993 + sources."better-assert-1.0.2" 64994 + sources."blob-0.0.5" 64995 + sources."bn.js-4.11.8" 64996 + sources."body-parser-1.19.0" 64997 + sources."boolbase-1.0.0" 64998 + sources."brace-expansion-1.1.11" 64999 + sources."buffer-equal-constant-time-1.0.1" 65000 + sources."busboy-0.3.1" 65001 + sources."bytes-3.1.0" 65002 + (sources."cacheable-request-6.1.0" // { 65003 + dependencies = [ 65004 + sources."get-stream-5.1.0" 65005 + sources."lowercase-keys-2.0.0" 65006 + ]; 65007 + }) 65008 + sources."callsite-1.0.0" 65009 + sources."caseless-0.12.0" 65010 + sources."chalk-2.4.2" 65011 + sources."cheerio-0.22.0" 65012 + sources."chownr-1.1.2" 65013 + sources."clone-response-1.0.2" 65014 + sources."code-point-at-1.1.0" 65015 + sources."color-convert-1.9.3" 65016 + sources."color-name-1.1.3" 65017 + sources."combined-stream-1.0.8" 65018 + sources."commander-2.20.0" 65019 + sources."component-bind-1.0.0" 65020 + sources."component-emitter-1.2.1" 65021 + sources."component-inherit-0.0.3" 65022 + sources."concat-map-0.0.1" 65023 + sources."console-control-strings-1.1.0" 65024 + sources."content-disposition-0.5.3" 65025 + sources."content-type-1.0.4" 65026 + sources."cookie-0.4.0" 65027 + sources."cookie-signature-1.0.6" 65028 + sources."core-js-3.1.4" 65029 + sources."core-util-is-1.0.2" 65030 + sources."css-select-1.2.0" 65031 + sources."css-what-2.1.3" 65032 + sources."dashdash-1.14.1" 65033 + sources."debug-2.6.9" 65034 + sources."decompress-response-3.3.0" 65035 + sources."deep-extend-0.6.0" 65036 + sources."defer-to-connect-1.0.2" 65037 + sources."delayed-stream-1.0.0" 65038 + sources."delegates-1.0.0" 65039 + sources."depd-1.1.2" 65040 + sources."destroy-1.0.4" 65041 + sources."detect-libc-1.0.3" 65042 + sources."dicer-0.3.0" 65043 + sources."dom-serializer-0.1.1" 65044 + sources."domelementtype-1.3.1" 65045 + sources."domhandler-2.4.2" 65046 + sources."domutils-1.5.1" 65047 + sources."duplexer3-0.1.4" 65048 + sources."ecc-jsbn-0.1.2" 65049 + sources."ecdsa-sig-formatter-1.0.11" 65050 + sources."ee-first-1.1.1" 65051 + sources."encodeurl-1.0.2" 65052 + sources."end-of-stream-1.4.1" 65053 + (sources."engine.io-3.3.2" // { 65054 + dependencies = [ 65055 + sources."cookie-0.3.1" 65056 + sources."debug-3.1.0" 65057 + ]; 65058 + }) 65059 + (sources."engine.io-client-3.3.2" // { 65060 + dependencies = [ 65061 + sources."debug-3.1.0" 65062 + ]; 65063 + }) 65064 + sources."engine.io-parser-2.1.3" 65065 + sources."entities-1.1.2" 65066 + sources."es6-promise-4.2.8" 65067 + sources."es6-promisify-5.0.0" 65068 + sources."escape-html-1.0.3" 65069 + sources."escape-string-regexp-1.0.5" 65070 + sources."etag-1.8.1" 65071 + sources."eventemitter3-2.0.3" 65072 + sources."express-4.17.1" 65073 + sources."extend-3.0.2" 65074 + sources."extsprintf-1.2.0" 65075 + sources."fast-deep-equal-2.0.1" 65076 + sources."fast-json-stable-stringify-2.0.0" 65077 + sources."fast-text-encoding-1.0.0" 65078 + sources."file-type-12.0.1" 65079 + sources."filename-reserved-regex-2.0.0" 65080 + sources."filenamify-4.1.0" 65081 + sources."finalhandler-1.1.2" 65082 + sources."forever-agent-0.6.1" 65083 + sources."form-data-2.3.3" 65084 + sources."forwarded-0.1.2" 65085 + sources."fresh-0.5.2" 65086 + sources."fs-extra-8.1.0" 65087 + sources."fs-minipass-1.2.6" 65088 + sources."fs.realpath-1.0.0" 65089 + sources."gauge-2.7.4" 65090 + sources."get-stream-4.1.0" 65091 + sources."getpass-0.1.7" 65092 + sources."glob-7.1.4" 65093 + sources."got-9.6.0" 65094 + sources."graceful-fs-4.2.0" 65095 + sources."grapheme-splitter-1.0.4" 65096 + sources."har-schema-2.0.0" 65097 + sources."har-validator-5.1.3" 65098 + sources."has-binary2-1.0.3" 65099 + sources."has-cors-1.1.0" 65100 + sources."has-flag-3.0.0" 65101 + sources."has-unicode-2.0.1" 65102 + sources."htmlparser2-3.10.1" 65103 + sources."http-cache-semantics-4.0.3" 65104 + (sources."http-errors-1.7.2" // { 65105 + dependencies = [ 65106 + sources."inherits-2.0.3" 65107 + ]; 65108 + }) 65109 + sources."http-signature-1.2.0" 65110 + sources."http_ece-1.1.0" 65111 + (sources."https-proxy-agent-2.2.2" // { 65112 + dependencies = [ 65113 + sources."debug-3.2.6" 65114 + sources."ms-2.1.2" 65115 + ]; 65116 + }) 65117 + sources."iconv-lite-0.4.24" 65118 + sources."ignore-walk-3.0.1" 65119 + sources."indexof-0.0.1" 65120 + sources."inflight-1.0.6" 65121 + sources."inherits-2.0.4" 65122 + sources."ini-1.3.5" 65123 + sources."ipaddr.js-1.9.0" 65124 + sources."irc-framework-4.4.0" 65125 + sources."is-fullwidth-code-point-1.0.0" 65126 + sources."is-typedarray-1.0.0" 65127 + sources."is-utf8-0.2.1" 65128 + sources."isarray-2.0.1" 65129 + sources."isomorphic-textencoder-1.0.1" 65130 + sources."isstream-0.1.2" 65131 + sources."jsbn-0.1.1" 65132 + sources."json-buffer-3.0.0" 65133 + sources."json-schema-0.2.3" 65134 + sources."json-schema-traverse-0.4.1" 65135 + sources."json-stringify-safe-5.0.1" 65136 + sources."jsonfile-4.0.0" 65137 + (sources."jsprim-1.4.1" // { 65138 + dependencies = [ 65139 + sources."extsprintf-1.3.0" 65140 + ]; 65141 + }) 65142 + sources."jwa-1.4.1" 65143 + sources."jws-3.2.2" 65144 + sources."keyv-3.1.0" 65145 + (sources."ldap-filter-0.2.2" // { 65146 + dependencies = [ 65147 + sources."assert-plus-0.1.5" 65148 + ]; 65149 + }) 65150 + sources."linkify-it-2.1.0" 65151 + sources."lodash-4.17.14" 65152 + sources."lodash.assignin-4.2.0" 65153 + sources."lodash.bind-4.2.1" 65154 + sources."lodash.defaults-4.2.0" 65155 + sources."lodash.filter-4.6.0" 65156 + sources."lodash.flatten-4.4.0" 65157 + sources."lodash.foreach-4.5.0" 65158 + sources."lodash.map-4.6.0" 65159 + sources."lodash.merge-4.6.2" 65160 + sources."lodash.pick-4.4.0" 65161 + sources."lodash.reduce-4.6.0" 65162 + sources."lodash.reject-4.6.0" 65163 + sources."lodash.some-4.6.0" 65164 + sources."lowercase-keys-1.0.1" 65165 + sources."media-typer-0.3.0" 65166 + sources."merge-descriptors-1.0.1" 65167 + sources."methods-1.1.2" 65168 + sources."middleware-handler-0.2.0" 65169 + sources."mime-1.6.0" 65170 + sources."mime-db-1.40.0" 65171 + sources."mime-types-2.1.24" 65172 + sources."mimic-response-1.0.1" 65173 + sources."minimalistic-assert-1.0.1" 65174 + sources."minimatch-3.0.4" 65175 + sources."minimist-1.2.0" 65176 + sources."minipass-2.3.5" 65177 + sources."minizlib-1.2.1" 65178 + (sources."mkdirp-0.5.1" // { 65179 + dependencies = [ 65180 + sources."minimist-0.0.8" 65181 + ]; 65182 + }) 65183 + sources."ms-2.0.0" 65184 + sources."mute-stream-0.0.8" 65185 + sources."nan-2.14.0" 65186 + (sources."needle-2.4.0" // { 65187 + dependencies = [ 65188 + sources."debug-3.2.6" 65189 + sources."ms-2.1.2" 65190 + ]; 65191 + }) 65192 + sources."negotiator-0.6.2" 65193 + (sources."node-pre-gyp-0.11.0" // { 65194 + dependencies = [ 65195 + sources."semver-5.7.0" 65196 + ]; 65197 + }) 65198 + sources."nopt-4.0.1" 65199 + sources."normalize-url-4.3.0" 65200 + sources."npm-bundled-1.0.6" 65201 + sources."npm-packlist-1.4.4" 65202 + sources."npmlog-4.1.2" 65203 + sources."nth-check-1.0.2" 65204 + sources."number-is-nan-1.0.1" 65205 + sources."oauth-sign-0.9.0" 65206 + sources."object-assign-4.1.1" 65207 + sources."object-component-0.0.3" 65208 + sources."on-finished-2.3.0" 65209 + sources."once-1.4.0" 65210 + sources."os-homedir-1.0.2" 65211 + sources."os-tmpdir-1.0.2" 65212 + sources."osenv-0.1.5" 65213 + sources."p-cancelable-1.1.0" 65214 + sources."p-finally-1.0.0" 65215 + sources."p-try-2.2.0" 65216 + sources."package-json-6.4.0" 65217 + sources."parseqs-0.0.5" 65218 + sources."parseuri-0.0.5" 65219 + sources."parseurl-1.3.3" 65220 + sources."path-is-absolute-1.0.1" 65221 + sources."path-to-regexp-0.1.7" 65222 + sources."performance-now-2.1.0" 65223 + sources."pify-4.0.1" 65224 + sources."precond-0.2.3" 65225 + sources."prepend-http-2.0.0" 65226 + sources."process-nextick-args-2.0.1" 65227 + sources."proxy-addr-2.0.5" 65228 + sources."psl-1.2.0" 65229 + sources."pump-3.0.0" 65230 + sources."punycode-2.1.1" 65231 + sources."qs-6.7.0" 65232 + sources."range-parser-1.2.1" 65233 + sources."raw-body-2.4.0" 65234 + sources."rc-1.2.8" 65235 + sources."read-1.0.7" 65236 + sources."read-chunk-3.2.0" 65237 + sources."readable-stream-3.4.0" 65238 + sources."regenerator-runtime-0.13.3" 65239 + sources."registry-auth-token-3.4.0" 65240 + sources."registry-url-5.1.0" 65241 + (sources."request-2.88.0" // { 65242 + dependencies = [ 65243 + sources."qs-6.5.2" 65244 + ]; 65245 + }) 65246 + sources."responselike-1.0.2" 65247 + sources."rimraf-2.6.3" 65248 + sources."safe-buffer-5.1.2" 65249 + sources."safer-buffer-2.1.2" 65250 + sources."sax-1.2.4" 65251 + sources."semver-6.2.0" 65252 + (sources."send-0.17.1" // { 65253 + dependencies = [ 65254 + sources."ms-2.1.1" 65255 + ]; 65256 + }) 65257 + sources."serve-static-1.14.1" 65258 + sources."set-blocking-2.0.0" 65259 + sources."setprototypeof-1.1.1" 65260 + sources."signal-exit-3.0.2" 65261 + (sources."socket.io-2.2.0" // { 65262 + dependencies = [ 65263 + sources."debug-4.1.1" 65264 + sources."ms-2.1.2" 65265 + ]; 65266 + }) 65267 + sources."socket.io-adapter-1.1.1" 65268 + (sources."socket.io-client-2.2.0" // { 65269 + dependencies = [ 65270 + sources."debug-3.1.0" 65271 + ]; 65272 + }) 65273 + (sources."socket.io-parser-3.3.0" // { 65274 + dependencies = [ 65275 + sources."debug-3.1.0" 65276 + ]; 65277 + }) 65278 + (sources."socksjs-0.5.0" // { 65279 + dependencies = [ 65280 + sources."ipaddr.js-0.1.3" 65281 + ]; 65282 + }) 65283 + sources."sqlite3-4.0.9" 65284 + sources."sshpk-1.16.1" 65285 + sources."statuses-1.5.0" 65286 + sources."streamsearch-0.1.2" 65287 + sources."string-width-1.0.2" 65288 + sources."string_decoder-1.2.0" 65289 + sources."strip-ansi-3.0.1" 65290 + sources."strip-json-comments-2.0.1" 65291 + sources."strip-outer-1.0.1" 65292 + sources."supports-color-5.5.0" 65293 + sources."tar-4.4.10" 65294 + sources."thelounge-ldapjs-non-maintained-fork-1.0.4" 65295 + sources."tlds-1.203.1" 65296 + sources."to-array-0.1.4" 65297 + sources."to-readable-stream-1.0.0" 65298 + sources."toidentifier-1.0.0" 65299 + (sources."tough-cookie-2.4.3" // { 65300 + dependencies = [ 65301 + sources."punycode-1.4.1" 65302 + ]; 65303 + }) 65304 + sources."trim-repeated-1.0.0" 65305 + sources."tunnel-agent-0.6.0" 65306 + sources."tweetnacl-0.14.5" 65307 + sources."type-is-1.6.18" 65308 + sources."ua-parser-js-0.7.20" 65309 + sources."uc.micro-1.0.6" 65310 + sources."universalify-0.1.2" 65311 + sources."unpipe-1.0.0" 65312 + sources."uri-js-4.2.2" 65313 + sources."url-parse-lax-3.0.0" 65314 + sources."urlsafe-base64-1.0.0" 65315 + sources."util-deprecate-1.0.2" 65316 + sources."utils-merge-1.0.1" 65317 + sources."uuid-3.3.2" 65318 + sources."vary-1.1.2" 65319 + (sources."vasync-1.6.4" // { 65320 + dependencies = [ 65321 + sources."verror-1.6.0" 65322 + ]; 65323 + }) 65324 + sources."verror-1.10.0" 65325 + sources."web-push-3.3.5" 65326 + sources."wide-align-1.1.3" 65327 + sources."with-open-file-0.1.6" 65328 + sources."wrappy-1.0.2" 65329 + sources."ws-6.1.4" 65330 + sources."xmlhttprequest-ssl-1.5.5" 65331 + sources."yallist-3.0.3" 65332 + sources."yarn-1.16.0" 65333 + sources."yeast-0.1.2" 65334 + ]; 65335 + buildInputs = globalBuildInputs; 65336 + meta = { 65337 + description = "The self-hosted Web IRC client"; 65338 + homepage = https://thelounge.chat/; 65339 + license = "MIT"; 65340 + }; 65341 + production = true; 65342 + bypassCache = true; 65343 + reconstructLock = true; 65344 + }; 64047 65345 three = nodeEnv.buildNodePackage { 64048 65346 name = "three"; 64049 65347 packageName = "three"; ··· 65585 66883 sources."ecc-jsbn-0.1.2" 65586 66884 sources."ee-first-1.1.1" 65587 66885 sources."ejs-2.6.2" 65588 - sources."electron-to-chromium-1.3.198" 66886 + sources."electron-to-chromium-1.3.199" 65589 66887 sources."encodeurl-1.0.2" 65590 66888 sources."end-of-stream-1.4.1" 65591 66889 sources."entities-1.1.2" ··· 65981 67279 }) 65982 67280 sources."posix-character-classes-0.1.1" 65983 67281 sources."prepend-http-1.0.4" 65984 - sources."prismjs-1.16.0" 67282 + sources."prismjs-1.17.1" 65985 67283 sources."private-0.1.8" 65986 67284 sources."process-exists-3.1.0" 65987 67285 sources."process-nextick-args-2.0.1" ··· 67446 68744 webpack = nodeEnv.buildNodePackage { 67447 68745 name = "webpack"; 67448 68746 packageName = "webpack"; 67449 - version = "4.36.1"; 68747 + version = "4.37.0"; 67450 68748 src = fetchurl { 67451 - url = "https://registry.npmjs.org/webpack/-/webpack-4.36.1.tgz"; 67452 - sha512 = "Ej01/N9W8DVyhEpeQnbUdGvOECw0L46FxS12cCOs8gSK7bhUlrbHRnWkjiXckGlHjUrmL89kDpTRIkUk6Y+fKg=="; 68749 + url = "https://registry.npmjs.org/webpack/-/webpack-4.37.0.tgz"; 68750 + sha512 = "iJPPvL7XpbcbwOthbzpa2BSPlmGp8lGDokAj/LdWtK80rsPoPOdANSbDBf2GAVLKZD3GhCuQ/gGkgN9HWs0Keg=="; 67453 68751 }; 67454 68752 dependencies = [ 67455 68753 sources."@webassemblyjs/ast-1.8.5" ··· 68264 69562 sources."bencode-2.0.1" 68265 69563 sources."binary-search-1.3.5" 68266 69564 sources."bitfield-2.0.0" 68267 - (sources."bittorrent-dht-9.0.0" // { 69565 + (sources."bittorrent-dht-9.0.1" // { 68268 69566 dependencies = [ 68269 - sources."debug-3.2.6" 69567 + sources."debug-4.1.1" 68270 69568 sources."ms-2.1.2" 68271 69569 ]; 68272 69570 }) ··· 69552 70850 ]; 69553 70851 }) 69554 70852 sources."snapdragon-util-3.0.1" 69555 - (sources."snyk-1.195.1" // { 70853 + (sources."snyk-1.197.0" // { 69556 70854 dependencies = [ 69557 70855 sources."ansi-regex-4.1.0" 69558 70856 sources."debug-3.2.6" ··· 69632 70930 sources."semver-5.7.0" 69633 70931 ]; 69634 70932 }) 69635 - (sources."snyk-sbt-plugin-2.5.7" // { 70933 + (sources."snyk-sbt-plugin-2.6.0" // { 69636 70934 dependencies = [ 69637 70935 sources."semver-6.2.0" 69638 70936 ]; ··· 69652 70950 sources."es6-promisify-5.0.0" 69653 70951 ]; 69654 70952 }) 69655 - sources."sonic-boom-0.7.4" 70953 + sources."sonic-boom-0.7.5" 69656 70954 sources."source-map-0.6.1" 69657 70955 sources."source-map-resolve-0.5.2" 69658 70956 sources."source-map-support-0.5.12" ··· 69787 71085 sources."is-ci-2.0.0" 69788 71086 sources."is-npm-3.0.0" 69789 71087 sources."latest-version-5.1.0" 69790 - sources."package-json-6.4.0" 71088 + sources."package-json-6.5.0" 69791 71089 sources."prepend-http-2.0.0" 71090 + sources."registry-auth-token-4.0.0" 69792 71091 sources."registry-url-5.1.0" 71092 + sources."semver-6.2.0" 69793 71093 sources."string-width-3.1.0" 69794 71094 sources."strip-ansi-5.2.0" 69795 71095 sources."type-fest-0.3.1"
+35 -18
pkgs/development/node-packages/node-packages-v12.nix
··· 13 13 sha512 = "nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q=="; 14 14 }; 15 15 }; 16 - "ajv-6.10.0" = { 16 + "ajv-6.10.2" = { 17 17 name = "ajv"; 18 18 packageName = "ajv"; 19 - version = "6.10.0"; 19 + version = "6.10.2"; 20 20 src = fetchurl { 21 - url = "https://registry.npmjs.org/ajv/-/ajv-6.10.0.tgz"; 22 - sha512 = "nffhOpkymDECQyR0mnsUtoCE8RlX38G0rYP+wgLWFyZuUyuuojSSvi/+euOiQBIn63whYwYVIIH1TvE3tu4OEg=="; 21 + url = "https://registry.npmjs.org/ajv/-/ajv-6.10.2.tgz"; 22 + sha512 = "TXtUUEYHuaTEbLZWIKUr5pmBuhDLy+8KYtPYdcV8qC+pOZL+NKqYwvWSRrVXHn+ZmRRAu8vJTAznH7Oag6RVRw=="; 23 23 }; 24 24 }; 25 25 "ansi-regex-2.1.1" = { ··· 256 256 sha1 = "1b681c21ff84033c826543090689420d187151dc"; 257 257 }; 258 258 }; 259 - "chownr-1.1.1" = { 259 + "chownr-1.1.2" = { 260 260 name = "chownr"; 261 261 packageName = "chownr"; 262 - version = "1.1.1"; 262 + version = "1.1.2"; 263 263 src = fetchurl { 264 - url = "https://registry.npmjs.org/chownr/-/chownr-1.1.1.tgz"; 265 - sha512 = "j38EvO5+LHX84jlo6h4UzmOwi0UgW61WRyPtJz4qaadK5eY3BTS5TY/S1Stc3Uk2lIM6TPevAlULiEJwie860g=="; 264 + url = "https://registry.npmjs.org/chownr/-/chownr-1.1.2.tgz"; 265 + sha512 = "GkfeAQh+QNy3wquu9oIZr6SS5x7wGdSgNQvD10X3r+AZr1Oys22HW8kAmDMvNg2+Dm0TeGaEuO8gFwdBXxwO8A=="; 266 266 }; 267 267 }; 268 268 "class-utils-0.3.6" = { ··· 1786 1786 sha512 = "Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="; 1787 1787 }; 1788 1788 }; 1789 + "safe-buffer-5.2.0" = { 1790 + name = "safe-buffer"; 1791 + packageName = "safe-buffer"; 1792 + version = "5.2.0"; 1793 + src = fetchurl { 1794 + url = "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.0.tgz"; 1795 + sha512 = "fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg=="; 1796 + }; 1797 + }; 1789 1798 "safe-regex-1.1.0" = { 1790 1799 name = "safe-regex"; 1791 1800 packageName = "safe-regex"; ··· 1957 1966 sha512 = "Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg=="; 1958 1967 }; 1959 1968 }; 1960 - "spdx-license-ids-3.0.4" = { 1969 + "spdx-license-ids-3.0.5" = { 1961 1970 name = "spdx-license-ids"; 1962 1971 packageName = "spdx-license-ids"; 1963 - version = "3.0.4"; 1972 + version = "3.0.5"; 1964 1973 src = fetchurl { 1965 - url = "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.4.tgz"; 1966 - sha512 = "7j8LYJLeY/Yb6ACbQ7F76qy5jHkp0U6jgBfJsk97bwWlVUnUWsAgpyaCvo17h0/RQGnQ036tVDomiwoI4pDkQA=="; 1974 + url = "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.5.tgz"; 1975 + sha512 = "J+FWzZoynJEXGphVIS+XEh3kFSjZX/1i9gFBaWQcB+/tmpe2qUsSBABpcxqxnAxFdiUFEgAX1bjYGQvIZmoz9Q=="; 1967 1976 }; 1968 1977 }; 1969 1978 "split-string-3.1.0" = { ··· 2591 2600 }; 2592 2601 dependencies = [ 2593 2602 sources."abbrev-1.1.1" 2594 - sources."ajv-6.10.0" 2603 + sources."ajv-6.10.2" 2595 2604 sources."ansi-regex-2.1.1" 2596 2605 sources."aproba-1.2.0" 2597 2606 sources."are-we-there-yet-1.1.5" ··· 2607 2616 sources."buffer-from-1.1.1" 2608 2617 sources."builtins-1.0.3" 2609 2618 sources."caseless-0.12.0" 2610 - sources."chownr-1.1.1" 2619 + sources."chownr-1.1.2" 2611 2620 sources."code-point-at-1.1.0" 2612 2621 sources."combined-stream-1.0.8" 2613 2622 sources."concat-map-0.0.1" ··· 2710 2719 sources."psl-1.2.0" 2711 2720 sources."punycode-2.1.1" 2712 2721 sources."qs-6.5.2" 2713 - sources."readable-stream-2.3.6" 2722 + (sources."readable-stream-2.3.6" // { 2723 + dependencies = [ 2724 + sources."safe-buffer-5.1.2" 2725 + ]; 2726 + }) 2714 2727 sources."request-2.88.0" 2715 2728 sources."resolve-1.11.1" 2716 2729 sources."retry-0.10.1" 2717 2730 sources."rimraf-2.6.3" 2718 - sources."safe-buffer-5.1.2" 2731 + sources."safe-buffer-5.2.0" 2719 2732 sources."safer-buffer-2.1.2" 2720 2733 sources."semver-6.1.3" 2721 2734 sources."set-blocking-2.0.0" ··· 2725 2738 sources."spdx-correct-3.1.0" 2726 2739 sources."spdx-exceptions-2.2.0" 2727 2740 sources."spdx-expression-parse-3.0.0" 2728 - sources."spdx-license-ids-3.0.4" 2741 + sources."spdx-license-ids-3.0.5" 2729 2742 sources."sshpk-1.16.1" 2730 2743 sources."ssri-5.3.0" 2731 2744 sources."string-width-1.0.2" 2732 - sources."string_decoder-1.1.1" 2745 + (sources."string_decoder-1.1.1" // { 2746 + dependencies = [ 2747 + sources."safe-buffer-5.1.2" 2748 + ]; 2749 + }) 2733 2750 sources."strip-ansi-3.0.1" 2734 2751 sources."tar-4.4.10" 2735 2752 sources."temp-0.9.0"
+318 -312
pkgs/development/node-packages/node-packages-v8.nix
··· 4 4 5 5 let 6 6 sources = { 7 + "@babel/code-frame-7.5.5" = { 8 + name = "_at_babel_slash_code-frame"; 9 + packageName = "@babel/code-frame"; 10 + version = "7.5.5"; 11 + src = fetchurl { 12 + url = "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.5.5.tgz"; 13 + sha512 = "27d4lZoomVyo51VegxI20xZPuSHusqbQag/ztrBC7wegWoQ1nLREPVSKSW8byhTlzTKyNE4ifaTA6lCp7JjpFw=="; 14 + }; 15 + }; 16 + "@babel/core-7.5.5" = { 17 + name = "_at_babel_slash_core"; 18 + packageName = "@babel/core"; 19 + version = "7.5.5"; 20 + src = fetchurl { 21 + url = "https://registry.npmjs.org/@babel/core/-/core-7.5.5.tgz"; 22 + sha512 = "i4qoSr2KTtce0DmkuuQBV4AuQgGPUcPXMr9L5MyYAtk06z068lQ10a4O009fe5OB/DfNV+h+qqT7ddNV8UnRjg=="; 23 + }; 24 + }; 25 + "@babel/generator-7.5.5" = { 26 + name = "_at_babel_slash_generator"; 27 + packageName = "@babel/generator"; 28 + version = "7.5.5"; 29 + src = fetchurl { 30 + url = "https://registry.npmjs.org/@babel/generator/-/generator-7.5.5.tgz"; 31 + sha512 = "ETI/4vyTSxTzGnU2c49XHv2zhExkv9JHLTwDAFz85kmcwuShvYG2H08FwgIguQf4JC75CBnXAUM5PqeF4fj0nQ=="; 32 + }; 33 + }; 34 + "@babel/helper-function-name-7.1.0" = { 35 + name = "_at_babel_slash_helper-function-name"; 36 + packageName = "@babel/helper-function-name"; 37 + version = "7.1.0"; 38 + src = fetchurl { 39 + url = "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.1.0.tgz"; 40 + sha512 = "A95XEoCpb3TO+KZzJ4S/5uW5fNe26DjBGqf1o9ucyLyCmi1dXq/B3c8iaWTfBk3VvetUxl16e8tIrd5teOCfGw=="; 41 + }; 42 + }; 43 + "@babel/helper-get-function-arity-7.0.0" = { 44 + name = "_at_babel_slash_helper-get-function-arity"; 45 + packageName = "@babel/helper-get-function-arity"; 46 + version = "7.0.0"; 47 + src = fetchurl { 48 + url = "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0.tgz"; 49 + sha512 = "r2DbJeg4svYvt3HOS74U4eWKsUAMRH01Z1ds1zx8KNTPtpTL5JAsdFv8BNyOpVqdFhHkkRDIg5B4AsxmkjAlmQ=="; 50 + }; 51 + }; 52 + "@babel/helper-split-export-declaration-7.4.4" = { 53 + name = "_at_babel_slash_helper-split-export-declaration"; 54 + packageName = "@babel/helper-split-export-declaration"; 55 + version = "7.4.4"; 56 + src = fetchurl { 57 + url = "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.4.4.tgz"; 58 + sha512 = "Ro/XkzLf3JFITkW6b+hNxzZ1n5OQ80NvIUdmHspih1XAhtN3vPTuUFT4eQnela+2MaZ5ulH+iyP513KJrxbN7Q=="; 59 + }; 60 + }; 61 + "@babel/helpers-7.5.5" = { 62 + name = "_at_babel_slash_helpers"; 63 + packageName = "@babel/helpers"; 64 + version = "7.5.5"; 65 + src = fetchurl { 66 + url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.5.5.tgz"; 67 + sha512 = "nRq2BUhxZFnfEn/ciJuhklHvFOqjJUD5wpx+1bxUF2axL9C+v4DE/dmp5sT2dKnpOs4orZWzpAZqlCy8QqE/7g=="; 68 + }; 69 + }; 70 + "@babel/highlight-7.5.0" = { 71 + name = "_at_babel_slash_highlight"; 72 + packageName = "@babel/highlight"; 73 + version = "7.5.0"; 74 + src = fetchurl { 75 + url = "https://registry.npmjs.org/@babel/highlight/-/highlight-7.5.0.tgz"; 76 + sha512 = "7dV4eu9gBxoM0dAnj/BCFDW9LFU0zvTrkq0ugM7pnHEgguOEeOz1so2ZghEdzviYzQEED0r4EAgpsBChKy1TRQ=="; 77 + }; 78 + }; 79 + "@babel/parser-7.5.5" = { 80 + name = "_at_babel_slash_parser"; 81 + packageName = "@babel/parser"; 82 + version = "7.5.5"; 83 + src = fetchurl { 84 + url = "https://registry.npmjs.org/@babel/parser/-/parser-7.5.5.tgz"; 85 + sha512 = "E5BN68cqR7dhKan1SfqgPGhQ178bkVKpXTPEXnFJBrEt8/DKRZlybmy+IgYLTeN7tp1R5Ccmbm2rBk17sHYU3g=="; 86 + }; 87 + }; 88 + "@babel/template-7.4.4" = { 89 + name = "_at_babel_slash_template"; 90 + packageName = "@babel/template"; 91 + version = "7.4.4"; 92 + src = fetchurl { 93 + url = "https://registry.npmjs.org/@babel/template/-/template-7.4.4.tgz"; 94 + sha512 = "CiGzLN9KgAvgZsnivND7rkA+AeJ9JB0ciPOD4U59GKbQP2iQl+olF1l76kJOupqidozfZ32ghwBEJDhnk9MEcw=="; 95 + }; 96 + }; 97 + "@babel/traverse-7.5.5" = { 98 + name = "_at_babel_slash_traverse"; 99 + packageName = "@babel/traverse"; 100 + version = "7.5.5"; 101 + src = fetchurl { 102 + url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.5.5.tgz"; 103 + sha512 = "MqB0782whsfffYfSjH4TM+LMjrJnhCNEDMDIjeTpl+ASaUvxcjoiVCo/sM1GhS1pHOXYfWVCYneLjMckuUxDaQ=="; 104 + }; 105 + }; 106 + "@babel/types-7.5.5" = { 107 + name = "_at_babel_slash_types"; 108 + packageName = "@babel/types"; 109 + version = "7.5.5"; 110 + src = fetchurl { 111 + url = "https://registry.npmjs.org/@babel/types/-/types-7.5.5.tgz"; 112 + sha512 = "s63F9nJioLqOlW3UkyMd+BYhXt44YuaFm/VV0VwuteqjYwRrObkU7ra9pY4wAJR3oXi8hJrMcrcJdO/HH33vtw=="; 113 + }; 114 + }; 7 115 "@sailshq/lodash-3.10.3" = { 8 116 name = "_at_sailshq_slash_lodash"; 9 117 packageName = "@sailshq/lodash"; ··· 40 148 sha512 = "xH2e58elpj1X4ynnKp9qSnWlsRTIs6n3tgLGNfwAGHwePw0mulHQllV34n0T25uYSu1k0hRKkWXF890B1yS47w=="; 41 149 }; 42 150 }; 43 - "@types/node-8.10.49" = { 151 + "@types/node-8.10.51" = { 44 152 name = "_at_types_slash_node"; 45 153 packageName = "@types/node"; 46 - version = "8.10.49"; 154 + version = "8.10.51"; 47 155 src = fetchurl { 48 - url = "https://registry.npmjs.org/@types/node/-/node-8.10.49.tgz"; 49 - sha512 = "YX30JVx0PvSmJ3Eqr74fYLGeBxD+C7vIL20ek+GGGLJeUbVYRUW3EzyAXpIRA0K8c8o0UWqR/GwEFYiFoz1T8w=="; 156 + url = "https://registry.npmjs.org/@types/node/-/node-8.10.51.tgz"; 157 + sha512 = "cArrlJp3Yv6IyFT/DYe+rlO8o3SIHraALbBW/+CcCYW/a9QucpLI+n2p4sRxAvl2O35TiecpX2heSZtJjvEO+Q=="; 50 158 }; 51 159 }; 52 160 "JSV-4.0.2" = { ··· 175 283 sha1 = "d6de10d5af6132d5bd692427d46fc538539094c7"; 176 284 }; 177 285 }; 178 - "ajv-6.10.0" = { 286 + "ajv-6.10.2" = { 179 287 name = "ajv"; 180 288 packageName = "ajv"; 181 - version = "6.10.0"; 289 + version = "6.10.2"; 182 290 src = fetchurl { 183 - url = "https://registry.npmjs.org/ajv/-/ajv-6.10.0.tgz"; 184 - sha512 = "nffhOpkymDECQyR0mnsUtoCE8RlX38G0rYP+wgLWFyZuUyuuojSSvi/+euOiQBIn63whYwYVIIH1TvE3tu4OEg=="; 291 + url = "https://registry.npmjs.org/ajv/-/ajv-6.10.2.tgz"; 292 + sha512 = "TXtUUEYHuaTEbLZWIKUr5pmBuhDLy+8KYtPYdcV8qC+pOZL+NKqYwvWSRrVXHn+ZmRRAu8vJTAznH7Oag6RVRw=="; 185 293 }; 186 294 }; 187 295 "align-text-0.1.4" = { ··· 236 344 src = fetchurl { 237 345 url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz"; 238 346 sha1 = "b432dd3358b634cf75e1e4664368240533c1ddbe"; 347 + }; 348 + }; 349 + "ansi-styles-3.2.1" = { 350 + name = "ansi-styles"; 351 + packageName = "ansi-styles"; 352 + version = "3.2.1"; 353 + src = fetchurl { 354 + url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz"; 355 + sha512 = "VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA=="; 239 356 }; 240 357 }; 241 358 "append-field-1.0.0" = { ··· 517 634 sha512 = "fNEiL2+AZt6AlAw/29Cr0UDe4sRAHCpEHh54WMz+Bb7QfNcFw4h3loofyJpLeQs4Yx7yuqu/2dLgM5hKOs6HlQ=="; 518 635 }; 519 636 }; 520 - "async-2.6.2" = { 637 + "async-2.6.3" = { 521 638 name = "async"; 522 639 packageName = "async"; 523 - version = "2.6.2"; 640 + version = "2.6.3"; 524 641 src = fetchurl { 525 - url = "https://registry.npmjs.org/async/-/async-2.6.2.tgz"; 526 - sha512 = "H1qVYh1MYhEEFLsP97cVKqCGo7KfCyTt6uEWqsTBr9SO84oK9Uwbyd/yCW+6rKJLHksBNUVWZDAjfS+Ccx0Bbg=="; 642 + url = "https://registry.npmjs.org/async/-/async-2.6.3.tgz"; 643 + sha512 = "zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg=="; 527 644 }; 528 645 }; 529 646 "async-limiter-1.0.0" = { ··· 553 670 sha512 = "Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg=="; 554 671 }; 555 672 }; 556 - "aws-sdk-2.486.0" = { 673 + "aws-sdk-2.497.0" = { 557 674 name = "aws-sdk"; 558 675 packageName = "aws-sdk"; 559 - version = "2.486.0"; 676 + version = "2.497.0"; 560 677 src = fetchurl { 561 - url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.486.0.tgz"; 562 - sha512 = "Gd5IB3HPG+fBE7sh16ATwEuHLv7DcpRLmG381i+0UwrWmka+0t6Dc7/yHKkLOXQKVBDI5FvRdlsWAsP/LFpOxw=="; 678 + url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.497.0.tgz"; 679 + sha512 = "SCAVfWqj0qe22Lj6ZHMP/4autc9x3GqgWTj3YrE3VleSuql62xhyCC9gSYfbm7wo8Puqx0+kEnKYyyXR7Z98QA=="; 563 680 }; 564 681 }; 565 682 "aws-sign2-0.6.0" = { ··· 886 1003 sha512 = "IM5nUITXMgTFTF4avRxsz/oLcMXLSZEzpukulRRpO1emXBI4EgSIr0++hUo+AZ94MINE2C4DXgCDiQ9P0suYXw=="; 887 1004 }; 888 1005 }; 889 - "azure-common-0.9.20" = { 1006 + "azure-common-0.9.22" = { 890 1007 name = "azure-common"; 891 1008 packageName = "azure-common"; 892 - version = "0.9.20"; 1009 + version = "0.9.22"; 893 1010 src = fetchurl { 894 - url = "https://registry.npmjs.org/azure-common/-/azure-common-0.9.20.tgz"; 895 - sha512 = "0gxFOLV12poak+raLYAU4z9JAZEafYSo9LrS+7WlToOawb2Ye2BfHYAGfLBkQrAZbo/NHpJ28/IaiUZVqiZ4fQ=="; 1011 + url = "https://registry.npmjs.org/azure-common/-/azure-common-0.9.22.tgz"; 1012 + sha512 = "0r9tK9D+1xl2/VPVtfmGmtkMqfooiBLS87fX+Ab0hOCPVVe/6CgVC4in0wSf2Ta8r65DbvxV5P4/t8fp8Q3EsQ=="; 896 1013 }; 897 1014 }; 898 1015 "azure-gallery-2.0.0-pre.18" = { ··· 949 1066 sha512 = "IGLs5Xj6kO8Ii90KerQrrwuJKexLgSwYC4oLWmc11mzKe7Jt2E5IVg+ZQ8K53YWZACtVTMBNO3iGuA+4ipjJxQ=="; 950 1067 }; 951 1068 }; 952 - "babel-code-frame-6.26.0" = { 953 - name = "babel-code-frame"; 954 - packageName = "babel-code-frame"; 955 - version = "6.26.0"; 956 - src = fetchurl { 957 - url = "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz"; 958 - sha1 = "63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b"; 959 - }; 960 - }; 961 - "babel-core-6.26.3" = { 962 - name = "babel-core"; 963 - packageName = "babel-core"; 964 - version = "6.26.3"; 965 - src = fetchurl { 966 - url = "https://registry.npmjs.org/babel-core/-/babel-core-6.26.3.tgz"; 967 - sha512 = "6jyFLuDmeidKmUEb3NM+/yawG0M2bDZ9Z1qbZP59cyHLz8kYGKYwpJP0UwUKKUiTRNvxfLesJnTedqczP7cTDA=="; 968 - }; 969 - }; 970 - "babel-generator-6.26.1" = { 971 - name = "babel-generator"; 972 - packageName = "babel-generator"; 973 - version = "6.26.1"; 974 - src = fetchurl { 975 - url = "https://registry.npmjs.org/babel-generator/-/babel-generator-6.26.1.tgz"; 976 - sha512 = "HyfwY6ApZj7BYTcJURpM5tznulaBvyio7/0d4zFOeMPUmfxkCjHocCuoLa2SAGzBI8AREcH3eP3758F672DppA=="; 977 - }; 978 - }; 979 - "babel-helpers-6.24.1" = { 980 - name = "babel-helpers"; 981 - packageName = "babel-helpers"; 982 - version = "6.24.1"; 983 - src = fetchurl { 984 - url = "https://registry.npmjs.org/babel-helpers/-/babel-helpers-6.24.1.tgz"; 985 - sha1 = "3471de9caec388e5c850e597e58a26ddf37602b2"; 986 - }; 987 - }; 988 - "babel-messages-6.23.0" = { 989 - name = "babel-messages"; 990 - packageName = "babel-messages"; 991 - version = "6.23.0"; 992 - src = fetchurl { 993 - url = "https://registry.npmjs.org/babel-messages/-/babel-messages-6.23.0.tgz"; 994 - sha1 = "f3cdf4703858035b2a2951c6ec5edf6c62f2630e"; 995 - }; 996 - }; 997 - "babel-register-6.26.0" = { 998 - name = "babel-register"; 999 - packageName = "babel-register"; 1000 - version = "6.26.0"; 1001 - src = fetchurl { 1002 - url = "https://registry.npmjs.org/babel-register/-/babel-register-6.26.0.tgz"; 1003 - sha1 = "6ed021173e2fcb486d7acb45c6009a856f647071"; 1004 - }; 1005 - }; 1006 1069 "babel-runtime-6.26.0" = { 1007 1070 name = "babel-runtime"; 1008 1071 packageName = "babel-runtime"; ··· 1010 1073 src = fetchurl { 1011 1074 url = "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz"; 1012 1075 sha1 = "965c7058668e82b55d7bfe04ff2337bc8b5647fe"; 1013 - }; 1014 - }; 1015 - "babel-template-6.26.0" = { 1016 - name = "babel-template"; 1017 - packageName = "babel-template"; 1018 - version = "6.26.0"; 1019 - src = fetchurl { 1020 - url = "https://registry.npmjs.org/babel-template/-/babel-template-6.26.0.tgz"; 1021 - sha1 = "de03e2d16396b069f46dd9fff8521fb1a0e35e02"; 1022 - }; 1023 - }; 1024 - "babel-traverse-6.26.0" = { 1025 - name = "babel-traverse"; 1026 - packageName = "babel-traverse"; 1027 - version = "6.26.0"; 1028 - src = fetchurl { 1029 - url = "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.26.0.tgz"; 1030 - sha1 = "46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee"; 1031 1076 }; 1032 1077 }; 1033 1078 "babel-types-6.26.0" = { ··· 1471 1516 sha1 = "a8115c55e4a702fe4d150abd3872822a7e09fc98"; 1472 1517 }; 1473 1518 }; 1519 + "chalk-2.4.2" = { 1520 + name = "chalk"; 1521 + packageName = "chalk"; 1522 + version = "2.4.2"; 1523 + src = fetchurl { 1524 + url = "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz"; 1525 + sha512 = "Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ=="; 1526 + }; 1527 + }; 1474 1528 "chance-1.0.18" = { 1475 1529 name = "chance"; 1476 1530 packageName = "chance"; ··· 1498 1552 sha512 = "Y5uI7Iq/Az6HgJEL6pdw7THVd7jbVOTPwsmcPOBjQL8e3N+pz872kzK5QxYGEy21iRys+iHWV0UZQXDFJo1hyA=="; 1499 1553 }; 1500 1554 }; 1501 - "chownr-1.1.1" = { 1555 + "chownr-1.1.2" = { 1502 1556 name = "chownr"; 1503 1557 packageName = "chownr"; 1504 - version = "1.1.1"; 1558 + version = "1.1.2"; 1505 1559 src = fetchurl { 1506 - url = "https://registry.npmjs.org/chownr/-/chownr-1.1.1.tgz"; 1507 - sha512 = "j38EvO5+LHX84jlo6h4UzmOwi0UgW61WRyPtJz4qaadK5eY3BTS5TY/S1Stc3Uk2lIM6TPevAlULiEJwie860g=="; 1560 + url = "https://registry.npmjs.org/chownr/-/chownr-1.1.2.tgz"; 1561 + sha512 = "GkfeAQh+QNy3wquu9oIZr6SS5x7wGdSgNQvD10X3r+AZr1Oys22HW8kAmDMvNg2+Dm0TeGaEuO8gFwdBXxwO8A=="; 1508 1562 }; 1509 1563 }; 1510 1564 "class-utils-0.3.6" = { ··· 1579 1633 sha1 = "4bc0373c164bc3291b4d368c829cf1a80a59dca0"; 1580 1634 }; 1581 1635 }; 1636 + "color-convert-1.9.3" = { 1637 + name = "color-convert"; 1638 + packageName = "color-convert"; 1639 + version = "1.9.3"; 1640 + src = fetchurl { 1641 + url = "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz"; 1642 + sha512 = "QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg=="; 1643 + }; 1644 + }; 1645 + "color-name-1.1.3" = { 1646 + name = "color-name"; 1647 + packageName = "color-name"; 1648 + version = "1.1.3"; 1649 + src = fetchurl { 1650 + url = "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz"; 1651 + sha1 = "a7d0558bd89c42f795dd42328f740831ca53bc25"; 1652 + }; 1653 + }; 1582 1654 "colors-0.6.2" = { 1583 1655 name = "colors"; 1584 1656 packageName = "colors"; ··· 2164 2236 sha1 = "f0d66d03672a825cb1b73bdb3fe62310c8e552b7"; 2165 2237 }; 2166 2238 }; 2167 - "detect-indent-4.0.0" = { 2168 - name = "detect-indent"; 2169 - packageName = "detect-indent"; 2170 - version = "4.0.0"; 2171 - src = fetchurl { 2172 - url = "https://registry.npmjs.org/detect-indent/-/detect-indent-4.0.0.tgz"; 2173 - sha1 = "f76d064352cdf43a1cb6ce619c4ee3a9475de208"; 2174 - }; 2175 - }; 2176 2239 "detect-libc-1.0.3" = { 2177 2240 name = "detect-libc"; 2178 2241 packageName = "detect-libc"; ··· 2758 2821 sha512 = "1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ=="; 2759 2822 }; 2760 2823 }; 2761 - "form-data-2.4.0" = { 2824 + "form-data-2.5.0" = { 2762 2825 name = "form-data"; 2763 2826 packageName = "form-data"; 2764 - version = "2.4.0"; 2827 + version = "2.5.0"; 2765 2828 src = fetchurl { 2766 - url = "https://registry.npmjs.org/form-data/-/form-data-2.4.0.tgz"; 2767 - sha512 = "4FinE8RfqYnNim20xDwZZE0V2kOs/AuElIjFUbPuegQSaoZM+vUT5FnwSl10KPugH4voTg1bEQlcbCG9ka75TA=="; 2829 + url = "https://registry.npmjs.org/form-data/-/form-data-2.5.0.tgz"; 2830 + sha512 = "WXieX3G/8side6VIqx44ablyULoGruSde5PNTxoUyo5CeyAMX6nVWUd0rgist/EuX655cjhUhTo1Fo3tRYqbcA=="; 2768 2831 }; 2769 2832 }; 2770 2833 "formidable-1.2.1" = { ··· 3001 3064 sha1 = "dbf743c6c14992593c655568cb66ed32c0122ebe"; 3002 3065 }; 3003 3066 }; 3004 - "globals-9.18.0" = { 3067 + "globals-11.12.0" = { 3005 3068 name = "globals"; 3006 3069 packageName = "globals"; 3007 - version = "9.18.0"; 3070 + version = "11.12.0"; 3008 3071 src = fetchurl { 3009 - url = "https://registry.npmjs.org/globals/-/globals-9.18.0.tgz"; 3010 - sha512 = "S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ=="; 3072 + url = "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz"; 3073 + sha512 = "WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="; 3011 3074 }; 3012 3075 }; 3013 3076 "gm-1.23.1" = { ··· 3118 3181 sha1 = "5e474793f7ea9843d1bb99c23eef49ff126fff39"; 3119 3182 }; 3120 3183 }; 3184 + "has-flag-3.0.0" = { 3185 + name = "has-flag"; 3186 + packageName = "has-flag"; 3187 + version = "3.0.0"; 3188 + src = fetchurl { 3189 + url = "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz"; 3190 + sha1 = "b5d454dc2199ae225699f3467e5a07f3b955bafd"; 3191 + }; 3192 + }; 3121 3193 "has-unicode-2.0.1" = { 3122 3194 name = "has-unicode"; 3123 3195 packageName = "has-unicode"; ··· 3206 3278 src = fetchurl { 3207 3279 url = "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz"; 3208 3280 sha1 = "20bb7403d3cea398e91dc4710a8ff1b8274a25ed"; 3209 - }; 3210 - }; 3211 - "home-or-tmp-2.0.0" = { 3212 - name = "home-or-tmp"; 3213 - packageName = "home-or-tmp"; 3214 - version = "2.0.0"; 3215 - src = fetchurl { 3216 - url = "https://registry.npmjs.org/home-or-tmp/-/home-or-tmp-2.0.0.tgz"; 3217 - sha1 = "e36c3f2d2cae7d746a857e38d18d5f32a7882db8"; 3218 3281 }; 3219 3282 }; 3220 3283 "homedir-polyfill-1.0.3" = { ··· 3406 3469 sha1 = "7ed1b1410c6a0e0f78cf95d3b8440c63f78b8614"; 3407 3470 }; 3408 3471 }; 3409 - "invariant-2.2.4" = { 3410 - name = "invariant"; 3411 - packageName = "invariant"; 3412 - version = "2.2.4"; 3413 - src = fetchurl { 3414 - url = "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz"; 3415 - sha512 = "phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA=="; 3416 - }; 3417 - }; 3418 3472 "invert-kv-1.0.0" = { 3419 3473 name = "invert-kv"; 3420 3474 packageName = "invert-kv"; ··· 3575 3629 src = fetchurl { 3576 3630 url = "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz"; 3577 3631 sha1 = "a88c02535791f02ed37c76a1b9ea9773c833f8c2"; 3578 - }; 3579 - }; 3580 - "is-finite-1.0.2" = { 3581 - name = "is-finite"; 3582 - packageName = "is-finite"; 3583 - version = "1.0.2"; 3584 - src = fetchurl { 3585 - url = "https://registry.npmjs.org/is-finite/-/is-finite-1.0.2.tgz"; 3586 - sha1 = "cc6677695602be550ef11e8b4aa6305342b6d0aa"; 3587 3632 }; 3588 3633 }; 3589 3634 "is-fullwidth-code-point-1.0.0" = { ··· 3838 3883 sha1 = "1736fddfd9724f28a3682adc6230ae7e4e9679db"; 3839 3884 }; 3840 3885 }; 3841 - "js-tokens-3.0.2" = { 3886 + "js-tokens-4.0.0" = { 3842 3887 name = "js-tokens"; 3843 3888 packageName = "js-tokens"; 3844 - version = "3.0.2"; 3889 + version = "4.0.0"; 3845 3890 src = fetchurl { 3846 - url = "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz"; 3847 - sha1 = "9866df395102130e38f7f996bceb65443209c25b"; 3891 + url = "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz"; 3892 + sha512 = "RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="; 3848 3893 }; 3849 3894 }; 3850 3895 "js-yaml-3.13.1" = { ··· 3883 3928 sha1 = "a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"; 3884 3929 }; 3885 3930 }; 3886 - "jsesc-1.3.0" = { 3931 + "jsesc-2.5.2" = { 3887 3932 name = "jsesc"; 3888 3933 packageName = "jsesc"; 3889 - version = "1.3.0"; 3934 + version = "2.5.2"; 3890 3935 src = fetchurl { 3891 - url = "https://registry.npmjs.org/jsesc/-/jsesc-1.3.0.tgz"; 3892 - sha1 = "46c3fec8c1892b12b0833db9bc7622176dbab34b"; 3936 + url = "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz"; 3937 + sha512 = "OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA=="; 3893 3938 }; 3894 3939 }; 3895 3940 "json-edm-parser-0.1.2" = { ··· 3946 3991 sha1 = "1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"; 3947 3992 }; 3948 3993 }; 3949 - "json5-0.5.1" = { 3994 + "json5-1.0.1" = { 3950 3995 name = "json5"; 3951 3996 packageName = "json5"; 3952 - version = "0.5.1"; 3997 + version = "1.0.1"; 3953 3998 src = fetchurl { 3954 - url = "https://registry.npmjs.org/json5/-/json5-0.5.1.tgz"; 3955 - sha1 = "1eade7acc012034ad84e2396767ead9fa5495821"; 3999 + url = "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz"; 4000 + sha512 = "aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow=="; 3956 4001 }; 3957 4002 }; 3958 - "json5-1.0.1" = { 4003 + "json5-2.1.0" = { 3959 4004 name = "json5"; 3960 4005 packageName = "json5"; 3961 - version = "1.0.1"; 4006 + version = "2.1.0"; 3962 4007 src = fetchurl { 3963 - url = "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz"; 3964 - sha512 = "aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow=="; 4008 + url = "https://registry.npmjs.org/json5/-/json5-2.1.0.tgz"; 4009 + sha512 = "8Mh9h6xViijj36g7Dxi+Y4S6hNGV96vcJZr/SrlHh1LR/pEn/8j/+qIBbs44YKl69Lrfctp4QD+AdWLTMqEZAQ=="; 3965 4010 }; 3966 4011 }; 3967 4012 "jsonfile-4.0.0" = { ··· 4252 4297 sha1 = "d22c9ac660288f3843e16ba7d2b5d06cca27d777"; 4253 4298 }; 4254 4299 }; 4255 - "lodash-4.17.11" = { 4300 + "lodash-4.17.15" = { 4256 4301 name = "lodash"; 4257 4302 packageName = "lodash"; 4258 - version = "4.17.11"; 4303 + version = "4.17.15"; 4259 4304 src = fetchurl { 4260 - url = "https://registry.npmjs.org/lodash/-/lodash-4.17.11.tgz"; 4261 - sha512 = "cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg=="; 4305 + url = "https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz"; 4306 + sha512 = "8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A=="; 4262 4307 }; 4263 4308 }; 4264 4309 "lodash.get-4.4.2" = { ··· 4306 4351 sha1 = "7ca7446b083655c377e7512213dc754d52a64a7e"; 4307 4352 }; 4308 4353 }; 4309 - "loose-envify-1.4.0" = { 4310 - name = "loose-envify"; 4311 - packageName = "loose-envify"; 4312 - version = "1.4.0"; 4313 - src = fetchurl { 4314 - url = "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz"; 4315 - sha512 = "lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q=="; 4316 - }; 4317 - }; 4318 4354 "lru-cache-4.1.5" = { 4319 4355 name = "lru-cache"; 4320 4356 packageName = "lru-cache"; ··· 4675 4711 sha1 = "400515e05b1924889cb61a1ec6054290a68e1207"; 4676 4712 }; 4677 4713 }; 4678 - "ms-rest-2.5.1" = { 4714 + "ms-rest-2.5.3" = { 4679 4715 name = "ms-rest"; 4680 4716 packageName = "ms-rest"; 4681 - version = "2.5.1"; 4717 + version = "2.5.3"; 4682 4718 src = fetchurl { 4683 - url = "https://registry.npmjs.org/ms-rest/-/ms-rest-2.5.1.tgz"; 4684 - sha512 = "bRRHn/asERilNDXrm4/paFRAljnIh+L6Qo6zQkBUZRXaDiHYDRq4AFCNX4Bau0db+eXlcnjnHyu3A9EjQc4s6Q=="; 4719 + url = "https://registry.npmjs.org/ms-rest/-/ms-rest-2.5.3.tgz"; 4720 + sha512 = "p0CnzrTzEkS8UTEwgCqT2O5YVK9E8KGBBlJVm3hFtMZvf0dmncKYXWFPyUa4PAsfBL7h4jfu39tOIFTu6exntg=="; 4685 4721 }; 4686 4722 }; 4687 4723 "ms-rest-azure-1.15.7" = { ··· 4702 4738 sha512 = "J6386a9krZ4VtU7CRt+Ypgo9RGf8+d3gjMBkH7zbkM4zzkhbbMOYiPRaZ+bHZcfihkKLlktTgA6rjshTjF329A=="; 4703 4739 }; 4704 4740 }; 4705 - "multer-1.4.1" = { 4741 + "multer-1.4.2" = { 4706 4742 name = "multer"; 4707 4743 packageName = "multer"; 4708 - version = "1.4.1"; 4744 + version = "1.4.2"; 4709 4745 src = fetchurl { 4710 - url = "https://registry.npmjs.org/multer/-/multer-1.4.1.tgz"; 4711 - sha512 = "zzOLNRxzszwd+61JFuAo0fxdQfvku12aNJgnla0AQ+hHxFmfc/B7jBVuPr5Rmvu46Jze/iJrFpSOsD7afO8SDw=="; 4746 + url = "https://registry.npmjs.org/multer/-/multer-1.4.2.tgz"; 4747 + sha512 = "xY8pX7V+ybyUpbYMxtjM9KAiD9ixtg5/JkeKUTD6xilfDv0vzzOFcCp4Ljb1UU3tSOM3VTZtKo63OmzOrGi3Cg=="; 4712 4748 }; 4713 4749 }; 4714 4750 "mustache-2.3.2" = { ··· 5575 5611 sha1 = "aa9591bcaa24923f1e0f4849d240f47efc1075ac"; 5576 5612 }; 5577 5613 }; 5578 - "private-0.1.8" = { 5579 - name = "private"; 5580 - packageName = "private"; 5581 - version = "0.1.8"; 5582 - src = fetchurl { 5583 - url = "https://registry.npmjs.org/private/-/private-0.1.8.tgz"; 5584 - sha512 = "VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg=="; 5585 - }; 5586 - }; 5587 5614 "process-nextick-args-1.0.7" = { 5588 5615 name = "process-nextick-args"; 5589 5616 packageName = "process-nextick-args"; ··· 6025 6052 sha1 = "8dcae470e1c88abc2d600fff4a776286da75e637"; 6026 6053 }; 6027 6054 }; 6028 - "repeating-2.0.1" = { 6029 - name = "repeating"; 6030 - packageName = "repeating"; 6031 - version = "2.0.1"; 6032 - src = fetchurl { 6033 - url = "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz"; 6034 - sha1 = "5214c53a926d3552707527fbab415dbc08d06dda"; 6035 - }; 6036 - }; 6037 6055 "request-2.74.0" = { 6038 6056 name = "request"; 6039 6057 packageName = "request"; ··· 6250 6268 sha512 = "Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="; 6251 6269 }; 6252 6270 }; 6271 + "safe-buffer-5.2.0" = { 6272 + name = "safe-buffer"; 6273 + packageName = "safe-buffer"; 6274 + version = "5.2.0"; 6275 + src = fetchurl { 6276 + url = "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.0.tgz"; 6277 + sha512 = "fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg=="; 6278 + }; 6279 + }; 6253 6280 "safe-json-stringify-1.2.0" = { 6254 6281 name = "safe-json-stringify"; 6255 6282 packageName = "safe-json-stringify"; ··· 6275 6302 src = fetchurl { 6276 6303 url = "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz"; 6277 6304 sha512 = "YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="; 6278 - }; 6279 - }; 6280 - "sax-0.5.2" = { 6281 - name = "sax"; 6282 - packageName = "sax"; 6283 - version = "0.5.2"; 6284 - src = fetchurl { 6285 - url = "https://registry.npmjs.org/sax/-/sax-0.5.2.tgz"; 6286 - sha1 = "735ffaa39a1cff8ffb9598f0223abdb03a9fb2ea"; 6287 6305 }; 6288 6306 }; 6289 6307 "sax-0.5.8" = { ··· 6556 6574 sha512 = "MjqsvNwyz1s0k81Goz/9vRBe9SZdB09Bdw+/zYyO+3CuPk6fouTaxscHkgtE8jKvf01kVfl8riHzERQ/kefaSA=="; 6557 6575 }; 6558 6576 }; 6559 - "source-map-support-0.4.18" = { 6560 - name = "source-map-support"; 6561 - packageName = "source-map-support"; 6562 - version = "0.4.18"; 6563 - src = fetchurl { 6564 - url = "https://registry.npmjs.org/source-map-support/-/source-map-support-0.4.18.tgz"; 6565 - sha512 = "try0/JqxPLF9nOjvSta7tVondkP5dwgyLDjVoyMDlmjugT2lRZ1OfsrYTkCd2hkDnJTKRbO/Rl3orm8vlsUzbA=="; 6566 - }; 6567 - }; 6568 6577 "source-map-support-0.5.12" = { 6569 6578 name = "source-map-support"; 6570 6579 packageName = "source-map-support"; ··· 6610 6619 sha512 = "Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg=="; 6611 6620 }; 6612 6621 }; 6613 - "spdx-license-ids-3.0.4" = { 6622 + "spdx-license-ids-3.0.5" = { 6614 6623 name = "spdx-license-ids"; 6615 6624 packageName = "spdx-license-ids"; 6616 - version = "3.0.4"; 6625 + version = "3.0.5"; 6617 6626 src = fetchurl { 6618 - url = "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.4.tgz"; 6619 - sha512 = "7j8LYJLeY/Yb6ACbQ7F76qy5jHkp0U6jgBfJsk97bwWlVUnUWsAgpyaCvo17h0/RQGnQ036tVDomiwoI4pDkQA=="; 6627 + url = "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.5.tgz"; 6628 + sha512 = "J+FWzZoynJEXGphVIS+XEh3kFSjZX/1i9gFBaWQcB+/tmpe2qUsSBABpcxqxnAxFdiUFEgAX1bjYGQvIZmoz9Q=="; 6620 6629 }; 6621 6630 }; 6622 6631 "split-0.2.10" = { ··· 6925 6934 sha1 = "535d045ce6b6363fa40117084629995e9df324c7"; 6926 6935 }; 6927 6936 }; 6937 + "supports-color-5.5.0" = { 6938 + name = "supports-color"; 6939 + packageName = "supports-color"; 6940 + version = "5.5.0"; 6941 + src = fetchurl { 6942 + url = "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz"; 6943 + sha512 = "QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow=="; 6944 + }; 6945 + }; 6928 6946 "swagger-express-mw-0.7.0" = { 6929 6947 name = "swagger-express-mw"; 6930 6948 packageName = "swagger-express-mw"; ··· 7076 7094 src = fetchurl { 7077 7095 url = "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-1.0.3.tgz"; 7078 7096 sha1 = "b83571fa4d8c25b82e231b06e3a3055de4ca1a47"; 7097 + }; 7098 + }; 7099 + "to-fast-properties-2.0.0" = { 7100 + name = "to-fast-properties"; 7101 + packageName = "to-fast-properties"; 7102 + version = "2.0.0"; 7103 + src = fetchurl { 7104 + url = "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz"; 7105 + sha1 = "dc5e698cbd079265bc73e0377681a4e4e83f616e"; 7079 7106 }; 7080 7107 }; 7081 7108 "to-object-path-0.3.0" = { ··· 7789 7816 sha1 = "5274e67f5a64c5f92974cd85139e0332adc6b90c"; 7790 7817 }; 7791 7818 }; 7792 - "xml2js-0.2.7" = { 7793 - name = "xml2js"; 7794 - packageName = "xml2js"; 7795 - version = "0.2.7"; 7796 - src = fetchurl { 7797 - url = "https://registry.npmjs.org/xml2js/-/xml2js-0.2.7.tgz"; 7798 - sha1 = "1838518bb01741cae0878bab4915e494c32306af"; 7799 - }; 7800 - }; 7801 7819 "xml2js-0.2.8" = { 7802 7820 name = "xml2js"; 7803 7821 packageName = "xml2js"; ··· 7897 7915 sha512 = "jg+qkfS4K8E7965sqaUl8mRngXiKb3WZGfONgE18pr03FUQiuSV6G+Ej4tS55B+rIQSFEIw3phdVAQ4pPqNWfQ=="; 7898 7916 }; 7899 7917 }; 7900 - "xtend-4.0.1" = { 7918 + "xtend-4.0.2" = { 7901 7919 name = "xtend"; 7902 7920 packageName = "xtend"; 7903 - version = "4.0.1"; 7921 + version = "4.0.2"; 7904 7922 src = fetchurl { 7905 - url = "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz"; 7906 - sha1 = "a5c6d532be656e23db820efb943a1f04998d63af"; 7923 + url = "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz"; 7924 + sha512 = "LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ=="; 7907 7925 }; 7908 7926 }; 7909 7927 "y18n-3.2.1" = { ··· 8029 8047 alloy = nodeEnv.buildNodePackage { 8030 8048 name = "alloy"; 8031 8049 packageName = "alloy"; 8032 - version = "1.13.10"; 8050 + version = "1.14.0"; 8033 8051 src = fetchurl { 8034 - url = "https://registry.npmjs.org/alloy/-/alloy-1.13.10.tgz"; 8035 - sha512 = "bqkApu0vIEGaUPyS7wKv9BkUpHJTE51B5oJ45VHF5GuBmP8YCGgIUw7z4bluMb7q7SVrpzfc2/RIORwjoz6GOA=="; 8052 + url = "https://registry.npmjs.org/alloy/-/alloy-1.14.0.tgz"; 8053 + sha512 = "42iwEb64YKWuX7E73Q6zIz7/eP6p3SvacSR02LVoTfveitVXTXw5lzW9JFmBQRqua1kdN+YeaPgx8ocz8Ea3wQ=="; 8036 8054 }; 8037 8055 dependencies = [ 8038 - sources."JSV-4.0.2" 8039 - sources."ansi-regex-2.1.1" 8040 - sources."ansi-styles-2.2.1" 8041 - sources."array-unique-0.3.2" 8042 - sources."async-2.6.2" 8043 - sources."babel-code-frame-6.26.0" 8044 - (sources."babel-core-6.26.3" // { 8056 + sources."@babel/code-frame-7.5.5" 8057 + (sources."@babel/core-7.5.5" // { 8045 8058 dependencies = [ 8046 8059 sources."source-map-0.5.7" 8047 8060 ]; 8048 8061 }) 8049 - (sources."babel-generator-6.26.1" // { 8062 + (sources."@babel/generator-7.5.5" // { 8050 8063 dependencies = [ 8051 8064 sources."source-map-0.5.7" 8052 8065 ]; 8053 8066 }) 8054 - sources."babel-helpers-6.24.1" 8055 - sources."babel-messages-6.23.0" 8056 - sources."babel-register-6.26.0" 8057 - sources."babel-runtime-6.26.0" 8058 - sources."babel-template-6.26.0" 8059 - sources."babel-traverse-6.26.0" 8060 - sources."babel-types-6.26.0" 8061 - sources."babylon-6.18.0" 8067 + sources."@babel/helper-function-name-7.1.0" 8068 + sources."@babel/helper-get-function-arity-7.0.0" 8069 + sources."@babel/helper-split-export-declaration-7.4.4" 8070 + sources."@babel/helpers-7.5.5" 8071 + sources."@babel/highlight-7.5.0" 8072 + sources."@babel/parser-7.5.5" 8073 + sources."@babel/template-7.4.4" 8074 + sources."@babel/traverse-7.5.5" 8075 + sources."@babel/types-7.5.5" 8076 + sources."JSV-4.0.2" 8077 + sources."ansi-styles-3.2.1" 8078 + sources."array-unique-0.3.2" 8079 + sources."async-2.6.3" 8062 8080 sources."balanced-match-1.0.0" 8063 8081 sources."brace-expansion-1.1.11" 8064 - sources."chalk-1.1.3" 8082 + sources."chalk-2.4.2" 8065 8083 sources."chmodr-1.2.0" 8084 + sources."color-convert-1.9.3" 8085 + sources."color-name-1.1.3" 8066 8086 sources."colors-1.3.3" 8067 8087 sources."commander-2.20.0" 8068 8088 sources."concat-map-0.0.1" 8069 8089 sources."convert-source-map-1.6.0" 8070 - sources."core-js-2.6.9" 8071 - sources."debug-2.6.9" 8072 - sources."detect-indent-4.0.0" 8090 + sources."debug-4.1.1" 8073 8091 sources."ejs-2.5.7" 8074 8092 sources."ensure-posix-path-1.1.1" 8075 8093 sources."escape-string-regexp-1.0.5" ··· 8086 8104 sources."is-windows-0.2.0" 8087 8105 ]; 8088 8106 }) 8089 - sources."globals-9.18.0" 8107 + sources."globals-11.12.0" 8090 8108 sources."graceful-fs-4.2.0" 8091 - sources."has-ansi-2.0.0" 8092 8109 sources."has-color-0.1.7" 8093 - sources."home-or-tmp-2.0.0" 8110 + sources."has-flag-3.0.0" 8094 8111 sources."homedir-polyfill-1.0.3" 8095 8112 sources."ini-1.3.5" 8096 - sources."invariant-2.2.4" 8097 8113 sources."is-3.3.0" 8098 - sources."is-finite-1.0.2" 8099 8114 sources."is-windows-1.0.2" 8100 8115 sources."isexe-2.0.0" 8101 - sources."js-tokens-3.0.2" 8102 - sources."jsesc-1.3.0" 8103 - sources."json5-0.5.1" 8116 + sources."js-tokens-4.0.0" 8117 + sources."jsesc-2.5.2" 8118 + sources."json5-2.1.0" 8104 8119 sources."jsonfile-4.0.0" 8105 8120 sources."jsonlint-1.6.2" 8106 - sources."lodash-4.17.11" 8107 - sources."loose-envify-1.4.0" 8121 + sources."lodash-4.17.15" 8108 8122 sources."matcher-collection-1.1.2" 8109 8123 sources."minimatch-3.0.4" 8110 - sources."minimist-0.0.8" 8111 - sources."mkdirp-0.5.1" 8124 + sources."minimist-1.2.0" 8112 8125 sources."moment-2.20.1" 8113 - sources."ms-2.0.0" 8126 + sources."ms-2.1.2" 8114 8127 sources."node.extend-2.0.0" 8115 8128 (sources."nomnom-1.8.1" // { 8116 8129 dependencies = [ 8117 8130 sources."ansi-styles-1.0.0" 8118 8131 sources."chalk-0.4.0" 8119 - sources."strip-ansi-0.1.1" 8120 8132 ]; 8121 8133 }) 8122 - sources."number-is-nan-1.0.1" 8123 - sources."os-homedir-1.0.2" 8124 - sources."os-tmpdir-1.0.2" 8125 8134 sources."parse-passwd-1.0.0" 8126 - sources."path-is-absolute-1.0.1" 8127 8135 sources."path-parse-1.0.6" 8128 8136 sources."pkginfo-0.4.1" 8129 - sources."private-0.1.8" 8130 - sources."regenerator-runtime-0.11.1" 8131 - sources."repeating-2.0.1" 8132 8137 sources."resolve-1.11.1" 8133 8138 sources."safe-buffer-5.1.2" 8134 8139 sources."sax-0.5.8" 8135 - sources."slash-1.0.0" 8140 + sources."semver-5.7.0" 8136 8141 sources."source-map-0.6.1" 8137 - (sources."source-map-support-0.4.18" // { 8138 - dependencies = [ 8139 - sources."source-map-0.5.7" 8140 - ]; 8141 - }) 8142 - sources."strip-ansi-3.0.1" 8143 - sources."supports-color-2.0.0" 8144 - sources."to-fast-properties-1.0.3" 8142 + sources."strip-ansi-0.1.1" 8143 + sources."supports-color-5.5.0" 8144 + sources."to-fast-properties-2.0.0" 8145 8145 sources."trim-right-1.0.1" 8146 8146 sources."underscore-1.6.0" 8147 8147 sources."universalify-0.1.2" ··· 8170 8170 sha512 = "MMiK5sFfIocNMWCc5PshUCAe6aY4P13/GCmSwudOziA/pFdQMHU8jhu+jU2SSWFug4K1ugeuCwtMXe43oL0PhQ=="; 8171 8171 }; 8172 8172 dependencies = [ 8173 - sources."@types/node-8.10.49" 8173 + sources."@types/node-8.10.51" 8174 8174 sources."JSV-4.0.2" 8175 8175 sources."adal-node-0.1.28" 8176 - sources."ajv-6.10.0" 8176 + sources."ajv-6.10.2" 8177 8177 sources."amdefine-1.0.1" 8178 8178 sources."ansi-regex-2.1.1" 8179 8179 sources."ansi-styles-2.2.1" ··· 8257 8257 sources."underscore-1.9.1" 8258 8258 ]; 8259 8259 }) 8260 - (sources."azure-common-0.9.20" // { 8260 + (sources."azure-common-0.9.22" // { 8261 8261 dependencies = [ 8262 8262 sources."validator-9.4.1" 8263 - sources."xml2js-0.2.7" 8263 + (sources."xml2js-0.4.19" // { 8264 + dependencies = [ 8265 + sources."xmlbuilder-9.0.7" 8266 + ]; 8267 + }) 8264 8268 ]; 8265 8269 }) 8266 8270 sources."azure-gallery-2.0.0-pre.18" ··· 8275 8279 (sources."azure-storage-2.10.3" // { 8276 8280 dependencies = [ 8277 8281 sources."readable-stream-2.0.6" 8282 + sources."sax-0.5.8" 8278 8283 sources."underscore-1.8.3" 8279 8284 sources."validator-9.4.1" 8280 8285 sources."xml2js-0.2.8" ··· 8305 8310 dependencies = [ 8306 8311 sources."process-nextick-args-2.0.1" 8307 8312 sources."readable-stream-2.3.6" 8313 + sources."safe-buffer-5.1.2" 8308 8314 sources."string_decoder-1.1.1" 8309 8315 ]; 8310 8316 }) ··· 8339 8345 sources."forever-agent-0.6.1" 8340 8346 (sources."form-data-1.0.1" // { 8341 8347 dependencies = [ 8342 - sources."async-2.6.2" 8348 + sources."async-2.6.3" 8343 8349 ]; 8344 8350 }) 8345 8351 sources."from-0.1.7" ··· 8405 8411 sources."streamline-0.4.11" 8406 8412 ]; 8407 8413 }) 8408 - sources."lodash-4.17.11" 8414 + sources."lodash-4.17.15" 8409 8415 sources."map-stream-0.1.0" 8410 8416 sources."md5.js-1.3.4" 8411 8417 sources."mime-db-1.40.0" ··· 8414 8420 sources."minimist-0.0.8" 8415 8421 sources."mkdirp-0.5.1" 8416 8422 sources."moment-2.24.0" 8417 - (sources."ms-rest-2.5.1" // { 8423 + (sources."ms-rest-2.5.3" // { 8418 8424 dependencies = [ 8419 8425 sources."through-2.3.8" 8420 8426 sources."tunnel-0.0.5" ··· 8487 8493 }) 8488 8494 sources."revalidator-0.1.8" 8489 8495 sources."rimraf-2.6.3" 8490 - sources."safe-buffer-5.1.2" 8496 + sources."safe-buffer-5.2.0" 8491 8497 sources."safer-buffer-2.1.2" 8492 - sources."sax-0.5.2" 8498 + sources."sax-1.2.4" 8493 8499 sources."sntp-1.0.9" 8494 8500 sources."source-map-0.1.43" 8495 8501 sources."split-0.2.10" ··· 8553 8559 sources."xmlbuilder-0.4.3" 8554 8560 sources."xmldom-0.1.27" 8555 8561 sources."xpath.js-1.1.0" 8556 - sources."xtend-4.0.1" 8562 + sources."xtend-4.0.2" 8557 8563 ]; 8558 8564 buildInputs = globalBuildInputs; 8559 8565 meta = { ··· 8870 8876 node-gyp = nodeEnv.buildNodePackage { 8871 8877 name = "node-gyp"; 8872 8878 packageName = "node-gyp"; 8873 - version = "5.0.1"; 8879 + version = "5.0.3"; 8874 8880 src = fetchurl { 8875 - url = "https://registry.npmjs.org/node-gyp/-/node-gyp-5.0.1.tgz"; 8876 - sha512 = "D68549U6EDVJLrAkSOZCWX/nmlYo0eCX2dYZoTOOZJ7bEIFrSE/MQgsgMFBKjByJ323hNzkifw2OuT3A5bR5mA=="; 8881 + url = "https://registry.npmjs.org/node-gyp/-/node-gyp-5.0.3.tgz"; 8882 + sha512 = "z/JdtkFGUm0QaQUusvloyYuGDub3nUbOo5de1Fz57cM++osBTvQatBUSTlF1k/w8vFHPxxXW6zxGvkxXSpaBkQ=="; 8877 8883 }; 8878 8884 dependencies = [ 8879 8885 sources."abbrev-1.1.1" 8880 - sources."ajv-6.10.0" 8886 + sources."ajv-6.10.2" 8881 8887 sources."ansi-regex-2.1.1" 8882 8888 sources."aproba-1.2.0" 8883 8889 sources."are-we-there-yet-1.1.5" ··· 8890 8896 sources."bcrypt-pbkdf-1.0.2" 8891 8897 sources."brace-expansion-1.1.11" 8892 8898 sources."caseless-0.12.0" 8893 - sources."chownr-1.1.1" 8899 + sources."chownr-1.1.2" 8894 8900 sources."code-point-at-1.1.0" 8895 8901 sources."combined-stream-1.0.8" 8896 8902 sources."concat-map-0.0.1" ··· 9020 9026 sources."are-we-there-yet-1.1.5" 9021 9027 sources."balanced-match-1.0.0" 9022 9028 sources."brace-expansion-1.1.11" 9023 - sources."chownr-1.1.1" 9029 + sources."chownr-1.1.2" 9024 9030 sources."code-point-at-1.1.0" 9025 9031 sources."concat-map-0.0.1" 9026 9032 sources."console-control-strings-1.1.0" ··· 9096 9102 pnpm = nodeEnv.buildNodePackage { 9097 9103 name = "pnpm"; 9098 9104 packageName = "pnpm"; 9099 - version = "3.5.3"; 9105 + version = "3.6.0"; 9100 9106 src = fetchurl { 9101 - url = "https://registry.npmjs.org/pnpm/-/pnpm-3.5.3.tgz"; 9102 - sha512 = "4gBUaY+IiuJLmoqP3QEtqxmFzY4yqbpnYx7WFrv0Aoy9zR6oneI4429KEO5G3rX+P3jF/OuYdVZ8E59URgD0ag=="; 9107 + url = "https://registry.npmjs.org/pnpm/-/pnpm-3.6.0.tgz"; 9108 + sha512 = "tjBYCFDvnGdA/FHlOfLn4WZ2Iy1JO8GRFem0RkbtbKO91Z9Jz8v2oYQYkMspY7/7lCBbjQA8+eUatTUu3d6eqw=="; 9103 9109 }; 9104 9110 buildInputs = globalBuildInputs; 9105 9111 meta = { ··· 9162 9168 sources."semver-5.0.3" 9163 9169 ]; 9164 9170 }) 9165 - sources."ajv-6.10.0" 9171 + sources."ajv-6.10.2" 9166 9172 sources."align-text-0.1.4" 9167 9173 sources."ansi-regex-2.1.1" 9168 9174 sources."ansi-styles-2.2.1" ··· 9179 9185 sources."async-1.5.2" 9180 9186 sources."async-limiter-1.0.0" 9181 9187 sources."asynckit-0.4.0" 9182 - sources."aws-sdk-2.486.0" 9188 + sources."aws-sdk-2.497.0" 9183 9189 sources."aws-sign2-0.6.0" 9184 9190 sources."aws4-1.8.0" 9185 9191 sources."babel-runtime-6.26.0" ··· 9485 9491 }) 9486 9492 sources."load-json-file-1.1.0" 9487 9493 sources."locate-path-3.0.0" 9488 - sources."lodash-4.17.11" 9494 + sources."lodash-4.17.15" 9489 9495 sources."lodash.get-4.4.2" 9490 9496 sources."lodash.isequal-4.5.0" 9491 9497 sources."long-2.4.0" ··· 9535 9541 sources."mkdirp-0.5.1" 9536 9542 sources."moment-2.24.0" 9537 9543 sources."ms-2.0.0" 9538 - sources."multer-1.4.1" 9544 + sources."multer-1.4.2" 9539 9545 sources."mustache-2.3.2" 9540 9546 sources."mv-2.1.1" 9541 9547 sources."my-local-ip-1.0.0" ··· 9720 9726 sources."spdx-correct-3.1.0" 9721 9727 sources."spdx-exceptions-2.2.0" 9722 9728 sources."spdx-expression-parse-3.0.0" 9723 - sources."spdx-license-ids-3.0.4" 9729 + sources."spdx-license-ids-3.0.5" 9724 9730 sources."split-1.0.1" 9725 9731 sources."sprintf-js-1.0.3" 9726 9732 (sources."sshpk-1.16.1" // { ··· 9756 9762 (sources."superagent-3.8.3" // { 9757 9763 dependencies = [ 9758 9764 sources."debug-3.2.6" 9759 - sources."form-data-2.4.0" 9765 + sources."form-data-2.5.0" 9760 9766 sources."ms-2.1.2" 9761 9767 sources."qs-6.7.0" 9762 9768 sources."readable-stream-2.3.6" ··· 9888 9894 sources."xmlhttprequest-ssl-1.5.5" 9889 9895 sources."xpath-0.0.5" 9890 9896 sources."xpath.js-1.1.0" 9891 - sources."xtend-4.0.1" 9897 + sources."xtend-4.0.2" 9892 9898 sources."y18n-4.0.0" 9893 9899 sources."yallist-2.1.2" 9894 9900 (sources."yargs-6.6.0" // { ··· 9942 9948 }; 9943 9949 dependencies = [ 9944 9950 sources."adm-zip-0.4.13" 9945 - sources."ajv-6.10.0" 9951 + sources."ajv-6.10.2" 9946 9952 sources."asn1-0.2.4" 9947 9953 sources."assert-plus-1.0.0" 9948 9954 sources."async-2.6.1" ··· 9996 10002 sources."jsonfile-4.0.0" 9997 10003 sources."jsprim-1.4.1" 9998 10004 sources."keypress-0.2.1" 9999 - sources."lodash-4.17.11" 10005 + sources."lodash-4.17.15" 10000 10006 sources."longjohn-0.2.12" 10001 10007 sources."mime-db-1.40.0" 10002 10008 sources."mime-types-2.1.24" ··· 10021 10027 sources."qs-6.5.2" 10022 10028 sources."request-2.88.0" 10023 10029 sources."rimraf-2.2.8" 10024 - sources."safe-buffer-5.1.2" 10030 + sources."safe-buffer-5.2.0" 10025 10031 sources."safer-buffer-2.1.2" 10026 10032 sources."semver-5.6.0" 10027 10033 sources."source-map-0.6.1"
+12 -3
pkgs/development/python-modules/backports_functools_lru_cache/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchPypi 4 4 , setuptools_scm 5 - , pythonOlder 5 + , isPy3k 6 + , pytest 6 7 }: 7 8 8 - if !(pythonOlder "3.3") then null else buildPythonPackage rec { 9 + buildPythonPackage rec { 9 10 pname = "backports.functools_lru_cache"; 10 11 version = "1.5"; 11 12 ··· 15 16 }; 16 17 17 18 buildInputs = [ setuptools_scm ]; 18 - doCheck = false; # No proper test 19 + 20 + checkInputs = [ pytest ]; 21 + 22 + checkPhase = '' 23 + pytest 24 + ''; 25 + 26 + # Test fail on Python 2 27 + doCheck = isPy3k; 19 28 20 29 meta = { 21 30 description = "Backport of functools.lru_cache";
+2 -2
pkgs/development/python-modules/buildout/default.nix
··· 2 2 3 3 buildPythonPackage rec { 4 4 pname = "zc.buildout"; 5 - version = "2.13.1"; 5 + version = "2.13.2"; 6 6 7 7 src = fetchPypi { 8 8 inherit pname version; 9 - sha256 = "3d14d07226963a517295dfad5879d2799e2e3b65b2c61c71b53cb80f5ab11484"; 9 + sha256 = "0a73s5q548l2vs2acqs3blkzd9sw6d7ci77fz1pc9156vn3dxm2x"; 10 10 }; 11 11 12 12 meta = with stdenv.lib; {
+13 -22
pkgs/development/python-modules/cheroot/default.nix
··· 1 - { stdenv, fetchPypi, buildPythonPackage, fetchpatch 2 - , more-itertools, six 3 - , pytest, pytestcov, portend 4 - , backports_unittest-mock 1 + { stdenv, fetchPypi, buildPythonPackage 2 + , more-itertools, six, setuptools_scm, setuptools-scm-git-archive 3 + , pytest, pytestcov, portend, pytest-testmon, pytest-mock 4 + , backports_unittest-mock, pyopenssl, requests, trustme, requests-unixsocket 5 5 , backports_functools_lru_cache }: 6 6 7 7 buildPythonPackage rec { 8 8 pname = "cheroot"; 9 - version = "6.3.3"; 9 + version = "6.5.5"; 10 10 11 11 src = fetchPypi { 12 12 inherit pname version; 13 - sha256 = "8e3ac15e1efffc81425a693e99b3c09d7ea4bf947255d8d4c38e2cf76f3a4d25"; 13 + sha256 = "f6a85e005adb5bc5f3a92b998ff0e48795d4d98a0fbb7edde47a7513d4100601"; 14 14 }; 15 15 16 - patches = fetchpatch { 17 - name = "cheroot-fix-setup-python3.patch"; 18 - url = "https://git.archlinux.org/svntogit/community.git/plain/trunk/cheroot-fix-setup-python3.patch?h=packages/python-cheroot&id=9b33cb0885b3c0d91adeacae23761a4321eb0e64"; 19 - sha256 = "1rlgz0qln536y00mfqlf0i9hz3f53id73wh47cg5q2vcsw1w2bpc"; 20 - }; 16 + nativeBuildInputs = [ setuptools_scm setuptools-scm-git-archive ]; 21 17 22 18 propagatedBuildInputs = [ more-itertools six backports_functools_lru_cache ]; 23 19 24 - checkInputs = [ pytest pytestcov portend backports_unittest-mock ]; 20 + checkInputs = [ pytest pytestcov portend backports_unittest-mock pytest-mock pytest-testmon pyopenssl requests trustme requests-unixsocket ]; 25 21 26 - # Disable testmon, it needs pytest-testmon, which we do not currently have in nikpkgs, 27 - # and is only used to skip some tests that are already known to work. 28 - postPatch = '' 29 - substituteInPlace "./pytest.ini" --replace "--testmon" "" 30 - substituteInPlace setup.py --replace "use_scm_version=True" "version=\"${version}\"" \ 31 - --replace "'setuptools_scm>=1.15.0'," "" \ 32 - --replace "'setuptools_scm_git_archive>=1.0'," "" \ 33 - ''; 34 - 22 + # Disable doctest plugin because times out 23 + # Deselect test_bind_addr_unix on darwin because times out 24 + # Deselect test_http_over_https_error on darwin because builtin cert fails 35 25 checkPhase = '' 36 - py.test cheroot 26 + substituteInPlace pytest.ini --replace "--doctest-modules" "" 27 + pytest ${stdenv.lib.optionalString stdenv.isDarwin "--deselect=cheroot/test/test_ssl.py::test_http_over_https_error --deselect=cheroot/test/test_server.py::test_bind_addr_unix"} 37 28 ''; 38 29 39 30 meta = with stdenv.lib; {
+5 -5
pkgs/development/python-modules/cherrypy/17.nix
··· 1 - { lib, buildPythonPackage, fetchPypi 1 + { stdenv, buildPythonPackage, fetchPypi 2 2 , setuptools_scm 3 3 , cheroot, contextlib2, portend, routes, six, zc_lockfile 4 4 , backports_unittest-mock, objgraph, pathpy, pytest, pytestcov, backports_functools_lru_cache, requests_toolbelt ··· 6 6 7 7 buildPythonPackage rec { 8 8 pname = "cherrypy"; 9 - version = "17.4.1"; 9 + version = "17.4.2"; 10 10 11 11 src = fetchPypi { 12 12 pname = "CherryPy"; 13 13 inherit version; 14 - sha256 = "1kl17anzz535jgkn9qcy0c2m0zlafph0iv7ph3bb9mfrs2bgvagv"; 14 + sha256 = "ef1619ad161f526745d4f0e4e517753d9d985814f1280e330661333d2ba05cdf"; 15 15 }; 16 16 17 17 propagatedBuildInputs = [ ··· 25 25 ]; 26 26 27 27 checkPhase = '' 28 - pytest 28 + pytest ${stdenv.lib.optionalString stdenv.isDarwin "--ignore=cherrypy/test/test_wsgi_unix_socket.py"} 29 29 ''; 30 30 31 - meta = with lib; { 31 + meta = with stdenv.lib; { 32 32 homepage = https://www.cherrypy.org; 33 33 description = "A pythonic, object-oriented HTTP framework"; 34 34 license = licenses.bsd3;
+5 -3
pkgs/development/python-modules/cherrypy/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, isPy3k 1 + { stdenv, buildPythonPackage, fetchPypi, isPy3k 2 2 , setuptools_scm 3 3 , cheroot, portend, more-itertools, zc_lockfile, routes 4 4 , objgraph, pytest, pytestcov, pathpy, requests_toolbelt, pytest-services ··· 29 29 objgraph pytest pytestcov pathpy requests_toolbelt pytest-services 30 30 ]; 31 31 32 + # Disable doctest plugin because times out 32 33 checkPhase = '' 33 - pytest 34 + substituteInPlace pytest.ini --replace "--doctest-modules" "" 35 + pytest --deselect=cherrypy/test/test_static.py::StaticTest::test_null_bytes ${stdenv.lib.optionalString stdenv.isDarwin "--deselect=cherrypy/test/test_bus.py::BusMethodTests::test_block"} 34 36 ''; 35 37 36 - meta = with lib; { 38 + meta = with stdenv.lib; { 37 39 homepage = https://www.cherrypy.org; 38 40 description = "A pythonic, object-oriented HTTP framework"; 39 41 license = licenses.bsd3;
+4 -3
pkgs/development/python-modules/joblib/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchPypi 4 4 , fetchpatch 5 + , stdenv 5 6 , sphinx 6 7 , numpydoc 7 8 , pytest ··· 38 39 checkInputs = [ sphinx numpydoc pytest ]; 39 40 propagatedBuildInputs = [ python-lz4 ]; 40 41 41 - # test_disk_used is broken 42 - # https://github.com/joblib/joblib/issues/57 42 + # test_disk_used is broken: https://github.com/joblib/joblib/issues/57 43 + # test_dispatch_multiprocessing is broken only on Darwin. 43 44 checkPhase = '' 44 - py.test joblib -k "not test_disk_used" 45 + py.test -k 'not test_disk_used${lib.optionalString (stdenv.isDarwin) " and not test_dispatch_multiprocessing"}' joblib/test 45 46 ''; 46 47 47 48 meta = {
+19 -3
pkgs/development/python-modules/lightgbm/default.nix
··· 1 - { lib 1 + { stdenv 2 2 , buildPythonPackage 3 3 , fetchPypi 4 4 , cmake 5 5 , numpy 6 6 , scipy 7 7 , scikitlearn 8 + , llvmPackages ? null 8 9 }: 9 10 10 11 buildPythonPackage rec { ··· 20 21 cmake 21 22 ]; 22 23 24 + # we never actually explicitly call the install command so this is the only way 25 + # to inject these options to it - however, openmp-library doesn't appear to have 26 + # any effect, so we have to inject it into NIX_LDFLAGS manually below 27 + postPatch = stdenv.lib.optionalString stdenv.cc.isClang '' 28 + cat >> setup.cfg <<EOF 29 + 30 + [install] 31 + openmp-include-dir=${llvmPackages.openmp}/include 32 + openmp-library=${llvmPackages.openmp}/lib/libomp.dylib 33 + 34 + EOF 35 + ''; 36 + 23 37 propagatedBuildInputs = [ 24 38 numpy 25 39 scipy ··· 28 42 29 43 postConfigure = '' 30 44 export HOME=$(mktemp -d) 45 + '' + stdenv.lib.optionalString stdenv.cc.isClang '' 46 + export NIX_LDFLAGS="$NIX_LDFLAGS -L${llvmPackages.openmp}/lib -lomp" 31 47 ''; 32 48 33 49 # The pypi package doesn't distribute the tests from the GitHub ··· 35 51 # `make check`. 36 52 doCheck = false; 37 53 38 - meta = with lib; { 54 + meta = with stdenv.lib; { 39 55 description = "A fast, distributed, high performance gradient boosting (GBDT, GBRT, GBM or MART) framework"; 40 56 homepage = https://github.com/Microsoft/LightGBM; 41 57 license = licenses.mit; 42 - maintainers = with lib.maintainers; [ teh costrouc ]; 58 + maintainers = with maintainers; [ teh costrouc ]; 43 59 }; 44 60 }
+53 -29
pkgs/development/python-modules/moto/default.nix
··· 1 - { buildPythonPackage, fetchPypi, jinja2, werkzeug, flask, cfn-lint 2 - , requests, pytz, backports_tempfile, cookies, jsondiff, botocore, aws-xray-sdk, docker, responses 3 - , six, boto, httpretty, xmltodict, nose, sure, boto3, freezegun, dateutil, mock, pyaml, python-jose }: 1 + { lib, buildPythonPackage, fetchPypi, isPy27 2 + , aws-xray-sdk 3 + , backports_tempfile 4 + , boto 5 + , boto3 6 + , botocore 7 + , cfn-lint 8 + , docker 9 + , flask 10 + , freezegun 11 + , jinja2 12 + , jsondiff 13 + , mock 14 + , nose 15 + , pyaml 16 + , python-jose 17 + , pytz 18 + , requests 19 + , responses 20 + , six 21 + , sshpubkeys 22 + , sure 23 + , werkzeug 24 + , xmltodict 25 + }: 4 26 5 27 buildPythonPackage rec { 6 28 pname = "moto"; 7 - version = "1.3.8"; 29 + version = "1.3.10"; 8 30 9 31 src = fetchPypi { 10 32 inherit pname version; 11 - sha256 = "9cb02134148fbe3ed81f11d6ab9bd71bbd6bc2db7e59a45de77fb1d0fedb744e"; 33 + sha256 = "0vlq015irqqwdknk1an7qqkg1zjk18c7jd89r7zbxxfwy3bgzwwj"; 12 34 }; 13 35 14 36 postPatch = '' 15 - # regarding aws-xray-sdk: https://github.com/spulec/moto/commit/31eac49e1555c5345021a252cb0c95043197ea16 16 - # regarding python-jose: https://github.com/spulec/moto/pull/1927 17 37 substituteInPlace setup.py \ 18 - --replace "aws-xray-sdk<0.96," "aws-xray-sdk" \ 19 - --replace "jsondiff==1.1.1" "jsondiff>=1.1.1" \ 20 - --replace "python-jose<3.0.0" "python-jose<4.0.0" 38 + --replace "jsondiff==1.1.2" "jsondiff~=1.1" 39 + sed -i '/datetime/d' setup.py # should be taken care of by std library 21 40 ''; 22 41 23 42 propagatedBuildInputs = [ 24 43 aws-xray-sdk 25 44 boto 26 45 boto3 46 + botocore 27 47 cfn-lint 28 - dateutil 29 - flask 30 - httpretty 48 + docker 49 + flask # required for server 31 50 jinja2 51 + jsondiff 52 + mock 53 + pyaml 54 + python-jose 32 55 pytz 56 + six 57 + requests 58 + responses 59 + sshpubkeys 33 60 werkzeug 34 - requests 35 - six 36 61 xmltodict 37 - mock 38 - pyaml 39 - backports_tempfile 40 - cookies 41 - jsondiff 42 - botocore 43 - docker 44 - responses 45 - python-jose 46 - ]; 62 + ] ++ lib.optionals isPy27 [ backports_tempfile ]; 47 63 48 - checkInputs = [ boto3 nose sure freezegun ]; 64 + checkInputs = [ boto3 freezegun nose sure ]; 49 65 50 - checkPhase = "nosetests"; 66 + checkPhase = ''nosetests -v ./tests/ \ 67 + -e test_invoke_function_from_sns \ 68 + -e test_invoke_requestresponse_function \ 69 + -e test_context_manager \ 70 + -e test_decorator_start_and_stop''; 51 71 52 - # TODO: make this true; I think lots of the tests want network access but we can probably run the others 53 - doCheck = false; 72 + meta = with lib; { 73 + description = "Allows your tests to easily mock out AWS Services"; 74 + homepage = https://github.com/spulec/moto; 75 + license = licenses.asl20; 76 + maintainers = [ ]; 77 + }; 54 78 }
+2 -2
pkgs/development/python-modules/nixpkgs/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "nixpkgs"; 11 - version = "0.2.3"; 11 + version = "0.2.4"; 12 12 disabled = ! pythonAtLeast "3.5"; 13 13 14 14 src = fetchPypi { 15 15 inherit pname version; 16 - sha256 = "12ycbv31g4qv14aq6hfb85hhx026lgvzqfsrkpzb64na0c1yjcvn"; 16 + sha256 = "0dlvq4bpamhlva86042wlc0xxfsxlpdgm2adfb1c6y3vjgbm0nvd"; 17 17 }; 18 18 19 19 buildInputs = [ pbr ];
+2 -2
pkgs/development/python-modules/nose2/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "nose2"; 12 - version = "0.8.0"; 12 + version = "0.9.1"; 13 13 14 14 src = fetchPypi { 15 15 inherit pname version; 16 - sha256 = "9052f2b46807b63d9bdf68e0768da1f8386368889b50043fd5d0889c470258f3"; 16 + sha256 = "16drs4bc2wvgwwi1pf6pmk6c00pl16vs1v7djc4a8kwpsxpibphf"; 17 17 }; 18 18 19 19 propagatedBuildInputs = [ six coverage ]
+1 -1
pkgs/development/python-modules/portend/default.nix
··· 21 21 checkInputs = [ pytest ]; 22 22 23 23 checkPhase = '' 24 - py.test 24 + py.test --deselect=test_portend.py::TestChecker::test_check_port_listening 25 25 ''; 26 26 27 27 meta = with stdenv.lib; {
+2 -2
pkgs/development/python-modules/pycountry/default.nix
··· 6 6 7 7 buildPythonPackage rec { 8 8 pname = "pycountry"; 9 - version = "18.12.8"; 9 + version = "19.7.15"; 10 10 11 11 src = fetchPypi { 12 12 inherit pname version; 13 - sha256 = "1phn1av57jbm166facjk6r8gw4pf886q4wymjc443k8m5c5h5i4f"; 13 + sha256 = "15lhv18za0zv36laksr86rszjhp0slmqzcylm6ds9vpd7gyqprb8"; 14 14 }; 15 15 16 16 meta = with stdenv.lib; {
+2 -2
pkgs/development/python-modules/pysonos/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "pysonos"; 16 - version = "0.0.14"; 16 + version = "0.0.21"; 17 17 18 18 disabled = !isPy3k; 19 19 20 20 src = fetchPypi { 21 21 inherit pname version; 22 - sha256 = "6ebab661eb3ff9f814139924c18a87d0b1cab8a6af98d323e2b1ee313ed856c9"; 22 + sha256 = "0x2nznjnm721qw9nys5ap3b6hq9s48bsd1yj5xih50pvn0rf0nz2"; 23 23 }; 24 24 25 25 propagatedBuildInputs = [ xmltodict requests ifaddr ];
+3 -3
pkgs/development/python-modules/pytest-testmon/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "pytest-testmon"; 10 - version = "0.9.16"; 10 + version = "0.9.18"; 11 11 12 12 src = fetchPypi { 13 13 inherit pname version; 14 - sha256 = "df00594e55f8f8f826e0e345dc23863ebac066eb749f8229c515a0373669c5bb"; 14 + sha256 = "05648f9b22aeeda9d32e61b46fa78c9ff28f217d69005b3b19ffb75d5992187e"; 15 15 }; 16 16 17 17 buildInputs = [ pytest ]; ··· 21 21 checkInputs = [ pytest ]; 22 22 23 23 checkPhase = '' 24 - pytest test 24 + pytest --deselect=test/test_testmon.py::TestmonDeselect::test_dependent_testmodule 25 25 ''; 26 26 27 27 meta = with lib; {
+3 -9
pkgs/development/python-modules/scrapy/default.nix
··· 1 - { stdenv, buildPythonPackage, fetchPypi, fetchpatch, glibcLocales, mock, pytest, botocore, 1 + { stdenv, buildPythonPackage, fetchPypi, glibcLocales, mock, pytest, botocore, 2 2 testfixtures, pillow, six, twisted, w3lib, lxml, queuelib, pyopenssl, 3 3 service-identity, parsel, pydispatcher, cssselect, lib }: 4 4 buildPythonPackage rec { 5 - version = "1.7.1"; 5 + version = "1.7.2"; 6 6 pname = "Scrapy"; 7 7 8 8 checkInputs = [ glibcLocales mock pytest botocore testfixtures pillow ]; ··· 16 16 # root and readonly. As a consequence scrapy can't edit the 17 17 # project templates. 18 18 ./permissions-fix.patch 19 - 20 - # Fix configparser import for python2. See: https://github.com/scrapy/scrapy/pull/3887 21 - (fetchpatch { 22 - url = "https://github.com/scrapy/scrapy/commit/21345dc9ec60dcc1cd2e5c0eace5788aa502ce23.patch"; 23 - sha256 = "09834rcjyggvyj6zignvfga2xbqkknygly5p4a96k2mvz0xn3v6z"; 24 - }) 25 19 ]; 26 20 27 21 LC_ALL="en_US.UTF-8"; ··· 37 31 38 32 src = fetchPypi { 39 33 inherit pname version; 40 - sha256 = "da8987d199092c3bb33d4d1d021507cd933aa67f5177e2d36f31343e8a6bd7f1"; 34 + sha256 = "7a4ed68cfb44dc86e1895f0fb46257ee4adb1090754ac21faec205763f054464"; 41 35 }; 42 36 43 37 postInstall = ''
+23
pkgs/development/python-modules/setuptools-scm-git-archive/default.nix
··· 1 + { stdenv, buildPythonPackage, fetchPypi, setuptools_scm, pytest }: 2 + 3 + buildPythonPackage rec { 4 + pname = "setuptools-scm-git-archive"; 5 + version = "1.1"; 6 + 7 + src = fetchPypi { 8 + inherit version; 9 + pname = "setuptools_scm_git_archive"; 10 + sha256 = "6026f61089b73fa1b5ee737e95314f41cb512609b393530385ed281d0b46c062"; 11 + }; 12 + 13 + nativeBuildInputs = [ setuptools_scm ]; 14 + 15 + checkInputs = [ pytest ]; 16 + 17 + meta = with stdenv.lib; { 18 + description = "setuptools_scm plugin for git archives"; 19 + homepage = "https://github.com/Changaco/setuptools_scm_git_archive"; 20 + license = licenses.mit; 21 + maintainers = [ maintainers.marsam ]; 22 + }; 23 + }
+25
pkgs/development/python-modules/sshpubkeys/default.nix
··· 1 + { lib, buildPythonPackage, fetchFromGitHub 2 + , cryptography 3 + , ecdsa 4 + }: 5 + 6 + buildPythonPackage rec { 7 + version = "3.1.0"; 8 + pname = "sshpubkeys"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "ojarva"; 12 + repo = "python-${pname}"; 13 + rev = "v${version}"; 14 + sha256 = "1h4gwmcfn84kkqh83km1vfz8sc5kr2g4gzgzmr8gz704jmqiv7nq"; 15 + }; 16 + 17 + propagatedBuildInputs = [ cryptography ecdsa ]; 18 + 19 + meta = with lib; { 20 + description = "OpenSSH Public Key Parser for Python"; 21 + homepage = https://github.com/ojarva/python-sshpubkeys; 22 + license = licenses.bsd3; 23 + maintainers = [ ]; 24 + }; 25 + }
+8 -3
pkgs/development/python-modules/tempora/default.nix
··· 1 1 { lib, buildPythonPackage, fetchPypi 2 - , setuptools_scm 2 + , setuptools_scm, pytest, freezegun, backports_unittest-mock 3 3 , six, pytz, jaraco_functools }: 4 4 5 5 buildPythonPackage rec { ··· 11 11 sha256 = "cb60b1d2b1664104e307f8e5269d7f4acdb077c82e35cd57246ae14a3427d2d6"; 12 12 }; 13 13 14 - doCheck = false; 15 - 16 14 buildInputs = [ setuptools_scm ]; 17 15 18 16 propagatedBuildInputs = [ six pytz jaraco_functools ]; 17 + 18 + checkInputs = [ pytest freezegun backports_unittest-mock ]; 19 + 20 + checkPhase = '' 21 + substituteInPlace pytest.ini --replace "--flake8" "" 22 + pytest 23 + ''; 19 24 20 25 meta = with lib; { 21 26 description = "Objects and routines pertaining to date and time";
+3 -3
pkgs/development/tools/analysis/tflint/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "tflint"; 5 - version = "0.9.1"; 5 + version = "0.9.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "wata727"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "1p6859lax6cmk2q4pvqw4sm78k80gs2561nxa1gwdna3af211fbp"; 11 + sha256 = "0yk5hygrjkbq5ry2kark3hd59hwjxpgryz0ychr8mhzvlr97aj1k"; 12 12 }; 13 13 14 - modSha256 = "021iqy5a703cymcc66rd1rxnpqa3rnzj37y400s0rmiq0zpkm2nc"; 14 + modSha256 = "096hq0xc3cq45r13pm0s0q9rxd4z0ia6x0wy4xmwgzfb97jvn20p"; 15 15 16 16 subPackages = [ "." ]; 17 17
+7 -7
pkgs/development/tools/build-managers/bazel/buildtools/default.nix
··· 1 - { stdenv, buildGoPackage, fetchFromGitHub }: 1 + { stdenv, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: 2 2 3 3 buildGoPackage rec { 4 4 name = "bazel-buildtools-${version}"; 5 - version = "0.22.0"; 5 + version = "0.28.0"; 6 + rev = "d7ccc5507c6c16e04f5e362e558d70b8b179b052"; 6 7 7 8 goPackagePath = "github.com/bazelbuild/buildtools"; 8 9 9 - src = fetchFromGitHub { 10 - owner = "bazelbuild"; 11 - repo = "buildtools"; 12 - rev = "55b64c3d2ddfb57f06477c1d94ef477419c96bd6"; 13 - sha256 = "0n6q8pkgy3vvmwyrxvkmjfbcxc31i31czg2bjdzq7awwrr4fdbwy"; 10 + src = fetchgit { 11 + inherit rev; 12 + url = "https://github.com/bazelbuild/buildtools"; 13 + sha256 = "1d8zjgbg77sk27cz9pjz1h6ajwxqmvdzqgwa2jbh6iykibhpadq0"; 14 14 }; 15 15 16 16 goDeps = ./deps.nix;
+2 -2
pkgs/development/tools/build-managers/bazel/buildtools/deps.nix
··· 5 5 fetch = { 6 6 type = "git"; 7 7 url = "https://github.com/golang/protobuf"; 8 - rev = "b5d812f8a3706043e23a9cd5babf2e5423744d30"; 9 - sha256 = "15am4s4646qy6iv0g3kkqq52rzykqjhm4bf08dk0fy2r58knpsyl"; 8 + rev = "6c65a5562fc06764971b7c5d05c76c75e84bdbf7"; 9 + sha256 = "1k1wb4zr0qbwgpvz9q5ws9zhlal8hq7dmq62pwxxriksayl6hzym"; 10 10 }; 11 11 } 12 12 {
+30
pkgs/development/tools/build-managers/redo-apenwarr/default.nix
··· 1 + {stdenv, fetchFromGitHub, python2, which}: 2 + stdenv.mkDerivation rec { 3 + name = "redo-apenwarr-${version}"; 4 + 5 + version = "unstable-2019-06-21"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "apenwarr"; 9 + repo = "redo"; 10 + rev = "8924fa35fa7363b531f8e6b48a1328d2407ad5cf"; 11 + sha256 = "1dj20w29najqjyvk0jh5kqbcd10k32rad986q5mzv4v49qcwdc1q"; 12 + }; 13 + 14 + DESTDIR=""; 15 + PREFIX = placeholder "out"; 16 + 17 + patchPhase = '' 18 + patchShebangs . 19 + ''; 20 + 21 + buildInputs = [ python2 which ]; 22 + 23 + meta = with stdenv.lib; { 24 + description = "Apenwarr version of the redo build tool."; 25 + homepage = https://github.com/apenwarr/redo/; 26 + license = stdenv.lib.licenses.asl20; 27 + platforms = platforms.all; 28 + maintainers = with stdenv.lib.maintainers; [ andrewchambers ]; 29 + }; 30 + }
+11 -4
pkgs/development/tools/clang-tools/default.nix
··· 2 2 3 3 let 4 4 clang = llvmPackages.clang-unwrapped; 5 + 6 + in stdenv.mkDerivation { 7 + pname = "clang-tools"; 5 8 version = stdenv.lib.getVersion clang; 6 - in 7 9 8 - stdenv.mkDerivation { 9 - name = "clang-tools-${version}"; 10 10 dontUnpack = true; 11 + 11 12 installPhase = '' 13 + runHook preInstall 14 + 12 15 mkdir -p $out/bin 13 16 for tool in \ 14 17 clang-apply-replacements \ 15 18 clang-check \ 16 19 clang-format \ 17 20 clang-rename \ 18 - clang-tidy 21 + clang-tidy \ 22 + clangd 19 23 do 20 24 ln -s ${clang}/bin/$tool $out/bin/$tool 21 25 done 26 + 27 + runHook postInstall 22 28 ''; 29 + 23 30 meta = clang.meta // { 24 31 description = "Standalone command line tools for C++ development"; 25 32 maintainers = with stdenv.lib.maintainers; [ aherrmann ];
+4 -4
pkgs/development/tools/continuous-integration/gitlab-runner/default.nix
··· 1 1 { lib, buildGoPackage, fetchFromGitLab, fetchurl }: 2 2 3 3 let 4 - version = "12.0.2"; 4 + version = "12.1.0"; 5 5 # Gitlab runner embeds some docker images these are prebuilt for arm and x86_64 6 6 docker_x86_64 = fetchurl { 7 7 url = "https://gitlab-runner-downloads.s3.amazonaws.com/v${version}/helper-images/prebuilt-x86_64.tar.xz"; 8 - sha256 = "0b1xkksd4rgqvjahp5bf53sk887z2fxwr7rf8vqs9j9aw54zm5cn"; 8 + sha256 = "0zrlprzbjnssrf0qjb80fy50ypryrqhmkqrpad68bnsz7da34idk"; 9 9 }; 10 10 11 11 docker_arm = fetchurl { 12 12 url = "https://gitlab-runner-downloads.s3.amazonaws.com/v${version}/helper-images/prebuilt-arm.tar.xz"; 13 - sha256 = "1cjl64g3ymnrs9c3fl28aydfzf18ik4vnjcvijv28c3gm1i6chs0"; 13 + sha256 = "0zsin76qiq46w675wdkaz3ng1i9szad3hzmk5dngdnr59gq5mqhk"; 14 14 }; 15 15 in 16 16 buildGoPackage rec { ··· 29 29 owner = "gitlab-org"; 30 30 repo = "gitlab-runner"; 31 31 rev = "v${version}"; 32 - sha256 = "0cbh11libcyfdgrvnl1aa11x90ac7zgn1d9myc4dwmqzfdm4kdlb"; 32 + sha256 = "0npjgarbwih8j2ih1mshwyp4nj9h15phvg61kifh63p9mf4r63nn"; 33 33 }; 34 34 35 35 patches = [ ./fix-shell-path.patch ];
+25
pkgs/development/tools/documentation/antora/default.nix
··· 1 + { stdenv, nodePackages_10_x }: 2 + 3 + let 4 + drvName = drv: (builtins.parseDrvName drv).name; 5 + linkNodeDeps = ({ pkg, deps, name ? "" }: 6 + let 7 + targetModule = if name != "" then name else drvName pkg; 8 + in nodePackages_10_x.${pkg}.override (oldAttrs: { 9 + postInstall = '' 10 + mkdir -p $out/lib/node_modules/${targetModule}/node_modules 11 + ${stdenv.lib.concatStringsSep "\n" (map (dep: '' 12 + ln -s ${nodePackages_10_x.${dep}}/lib/node_modules/${drvName dep} \ 13 + $out/lib/node_modules/${targetModule}/node_modules/${drvName dep} 14 + '') deps 15 + )} 16 + ''; 17 + }) 18 + ); 19 + in linkNodeDeps { 20 + pkg = "@antora/cli"; 21 + name = "@antora/cli"; 22 + deps = [ 23 + "@antora/site-generator-default" 24 + ]; 25 + }
+22
pkgs/development/tools/misc/terraform-lsp/default.nix
··· 1 + { lib, buildGoModule, fetchFromGitHub }: 2 + 3 + buildGoModule rec { 4 + pname = "terraform-lsp"; 5 + version = "0.0.5"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "juliosueiras"; 9 + repo = pname; 10 + rev = "v${version}"; 11 + sha256 = "018ypvmd9cwys5l7rm1c7b9jf8fljdk0m22id32d88jiw4iwq44m"; 12 + }; 13 + 14 + modSha256 = "1196fn69nnplj7sz5mffawf58j9n7h211shv795gknvfnwavh344"; 15 + 16 + meta = with lib; { 17 + description = "Language Server Protocol for Terraform"; 18 + homepage = "https://github.com/juliosueiras/terraform-lsp"; 19 + license = licenses.mit; 20 + maintainers = [ maintainers.marsam ]; 21 + }; 22 + }
+3 -3
pkgs/development/tools/ocaml/dune/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "dune"; 5 - version = "1.10.0"; 5 + version = "1.11.0"; 6 6 src = fetchurl { 7 - url = "https://github.com/ocaml/dune/releases/download/${version}/dune-${version}.tbz"; 8 - sha256 = "15fx9rg16g7ig43rg4sdq0wp0br5h1mjxxgv8b15s317vqlfc5pd"; 7 + url = "https://github.com/ocaml/dune/releases/download/${version}/dune-build-info-${version}.tbz"; 8 + sha256 = "11jl2vavypbgvwblch25q10hsd16myik9b3cd4d64zhxk1fzbzdw"; 9 9 }; 10 10 11 11 buildInputs = [ ocaml findlib ];
+1 -1
pkgs/development/tools/rubocop/Gemfile.lock
··· 7 7 parser (2.6.3.0) 8 8 ast (~> 2.4.0) 9 9 rainbow (3.0.0) 10 - rubocop (0.72.0) 10 + rubocop (0.73.0) 11 11 jaro_winkler (~> 1.5.1) 12 12 parallel (~> 1.10) 13 13 parser (>= 2.6)
+2 -2
pkgs/development/tools/rubocop/gemset.nix
··· 56 56 platforms = []; 57 57 source = { 58 58 remotes = ["https://rubygems.org"]; 59 - sha256 = "192vmm9ah6b4wyabawaszpr8n3z93y3ymykp3m4pncrbwngmn3m2"; 59 + sha256 = "1b5zc8xaqb5krchjrjqj7sc205awmnpksc4ng0rbckd6xcbr7n0f"; 60 60 type = "gem"; 61 61 }; 62 - version = "0.72.0"; 62 + version = "0.73.0"; 63 63 }; 64 64 ruby-progressbar = { 65 65 groups = ["default"];
+30
pkgs/development/tools/rust/cargo-generate/default.nix
··· 1 + { stdenv, fetchFromGitHub, rustPlatform, Security, openssl, pkgconfig, libiconv, curl }: 2 + 3 + rustPlatform.buildRustPackage rec { 4 + name = "cargo-generate-${version}"; 5 + version = "0.3.0"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "ashleygwilliams"; 9 + repo = "cargo-generate"; 10 + rev = "v${version}"; 11 + sha256 = "0n6na6xq4bvs9hc7vc86qqmlrkv824qdmja27b21l2wz3l77r4jb"; 12 + }; 13 + 14 + cargoSha256 = "00fgzh1s63rr1vs3ahra604m81fc4imx3s09brw2y0n46syhwypi"; 15 + 16 + nativeBuildInputs = [ pkgconfig ]; 17 + 18 + buildInputs = [ openssl ] 19 + ++ stdenv.lib.optionals stdenv.isDarwin [ Security libiconv curl ]; 20 + 21 + doCheck = false; 22 + 23 + meta = with stdenv.lib; { 24 + description = "cargo, make me a project"; 25 + homepage = https://github.com/ashleygwilliams/cargo-generate; 26 + license = licenses.asl20; 27 + maintainers = [ maintainers.turbomack ]; 28 + platforms = platforms.all; 29 + }; 30 + }
+12 -20
pkgs/development/tools/rust/rls/default.nix
··· 1 1 { stdenv, fetchFromGitHub, rustPlatform 2 - , openssh, openssl, pkgconfig, cmake, zlib, curl, libiconv }: 2 + , openssh, openssl, pkgconfig, cmake, zlib, curl, libiconv 3 + , CoreFoundation, Security }: 3 4 4 5 rustPlatform.buildRustPackage rec { 5 - name = "rls-${version}"; 6 + pname = "rls"; 6 7 # with rust 1.x you can only build rls version 1.x.y 7 - version = "1.34.0"; 8 + version = "1.35.0"; 8 9 9 10 src = fetchFromGitHub { 10 11 owner = "rust-lang"; 11 - repo = "rls"; 12 - rev = "0d6f53e1a4adbaf7d83cdc0cb54720203fcb522e"; 13 - sha256 = "1aabs0kr87sp68n9893im5wz21dicip9ixir9a9l56nis4qxpm7i"; 12 + repo = pname; 13 + rev = version; 14 + sha256 = "1l3fvlgfzri8954nbwqxqghjy5wa8p1aiml12r1lqs92dh0g192f"; 14 15 }; 15 16 16 - cargoSha256 = "16r9rmjhb0dbdgx9qf740nsckjazz4z663vaajw5z9i4qh0jsy18"; 17 + cargoSha256 = "0v96ndys6bv5dfjg01chrqrqjc57qqfjw40n6vppi9bpw0f6wkf5"; 17 18 18 19 # a nightly compiler is required unless we use this cheat code. 19 20 RUSTC_BOOTSTRAP=1; 20 21 21 - # clippy is hard to build with stable rust so we disable clippy lints 22 - cargoBuildFlags = [ "--no-default-features" ]; 23 - 24 22 nativeBuildInputs = [ pkgconfig cmake ]; 25 - buildInputs = [ openssh openssl curl zlib libiconv ]; 23 + buildInputs = [ openssh openssl curl zlib libiconv ] 24 + ++ (stdenv.lib.optionals stdenv.isDarwin [ CoreFoundation Security ]); 26 25 27 26 doCheck = true; 28 - # the default checkPhase has no way to pass --no-default-features 29 - checkPhase = '' 30 - runHook preCheck 31 - 27 + preCheck = '' 32 28 # client tests are flaky 33 29 rm tests/client.rs 34 - 35 - echo "Running cargo test" 36 - cargo test --no-default-features 37 - runHook postCheck 38 30 ''; 39 31 40 32 meta = with stdenv.lib; { 41 33 description = "Rust Language Server - provides information about Rust programs to IDEs and other tools"; 42 34 homepage = https://github.com/rust-lang/rls/; 43 - license = licenses.mit; 35 + license = with licenses; [ asl20 /* or */ mit ]; 44 36 maintainers = with maintainers; [ symphorien ]; 45 37 platforms = platforms.all; 46 38 };
+3 -3
pkgs/games/minecraft-server/default.nix
··· 1 1 { stdenv, fetchurl, jre }: 2 2 stdenv.mkDerivation rec { 3 3 name = "minecraft-server-${version}"; 4 - version = "1.14.3"; 4 + version = "1.14.4"; 5 5 6 6 src = fetchurl { 7 - url = "https://launcher.mojang.com/v1/objects/d0d0fe2b1dc6ab4c65554cb734270872b72dadd6/server.jar"; 8 - sha256 = "0f0v0kqz2v5758551yji1vj6xf43lvbma30v3crz4h7cpzq5c8ll"; 7 + url = "https://launcher.mojang.com/v1/objects/3dc3d84a581f14691199cf6831b71ed1296a9fdf/server.jar"; 8 + sha256 = "0aapiwgx9bmnwgmrra9459qfl9bw8q50sja4lhhr64kf7amyvkay"; 9 9 }; 10 10 11 11 preferLocalBuild = true;
+2 -2
pkgs/misc/sndio/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "sndio-${version}"; 5 - version = "1.5.0"; 5 + version = "1.6.0"; 6 6 enableParallelBuilding = true; 7 7 buildInputs = [ alsaLib ]; 8 8 9 9 src = fetchurl { 10 10 url = "http://www.sndio.org/sndio-${version}.tar.gz"; 11 - sha256 = "0lyjb962w9qjkm3yywdywi7k2sxa2rl96v5jmrzcpncsfi201iqj"; 11 + sha256 = "1havdx3q4mipgddmd2bnygr1yh6y64567m1yqwjapkhsq550dq4r"; 12 12 }; 13 13 14 14 meta = with stdenv.lib; {
+61 -50
pkgs/misc/vim-plugins/generated.nix
··· 384 384 src = fetchFromGitHub { 385 385 owner = "neoclide"; 386 386 repo = "coc-lists"; 387 - rev = "f7d3c25fbefdf53cd5458904209d066545dbddc0"; 388 - sha256 = "1x3al8km0d61p2k42p5q2xkd1xx80hmhbv8l22wj6knrr9mpjmp2"; 387 + rev = "987409e8d350378a5b3ed40c21bceb8f6252c3df"; 388 + sha256 = "11xampj0pk6393qx340ldgpk0131r756156gm1yhk4mlcc4qfbh1"; 389 389 }; 390 390 }; 391 391 ··· 424 424 425 425 coc-python = buildVimPluginFrom2Nix { 426 426 pname = "coc-python"; 427 - version = "2019-07-09"; 427 + version = "2019-07-21"; 428 428 src = fetchFromGitHub { 429 429 owner = "neoclide"; 430 430 repo = "coc-python"; 431 - rev = "f36feb0251aa668a84f027bd937c93f69bf98c84"; 432 - sha256 = "1hc6hn5qlsvbyc52f0m398kjqw4j4sdqhjzpkxcdssa541fvn7pz"; 431 + rev = "afe3a0854206675f961e96e8514d758224e0a7df"; 432 + sha256 = "06nqmiypg55isa1iaz9k6jnwrb2whj06pmxq4r3jx9r6jgg2zf0g"; 433 433 }; 434 434 }; 435 435 ··· 457 457 458 458 coc-smartf = buildVimPluginFrom2Nix { 459 459 pname = "coc-smartf"; 460 - version = "2019-07-19"; 460 + version = "2019-07-22"; 461 461 src = fetchFromGitHub { 462 462 owner = "neoclide"; 463 463 repo = "coc-smartf"; 464 - rev = "12e76fcadda3f0bb16c64b2db2a1f8cd8025c47a"; 465 - sha256 = "0dfr7dcrnf40flcvdydywy5xmpxbrfswcq6vj12kjbwkcxlisj0s"; 464 + rev = "ccc4431b17d1e02a33d005ecc30af8638f32e5a5"; 465 + sha256 = "1gawpziv5qilhw5v7x7ihkmypfkjq22qgar6cfq6332c5rjqk6xi"; 466 466 }; 467 467 }; 468 468 ··· 501 501 502 502 coc-tabnine = buildVimPluginFrom2Nix { 503 503 pname = "coc-tabnine"; 504 - version = "2019-07-19"; 504 + version = "2019-07-21"; 505 505 src = fetchFromGitHub { 506 506 owner = "neoclide"; 507 507 repo = "coc-tabnine"; 508 - rev = "0bfb17e090e1dd44ec159c31968e0b5b249430eb"; 509 - sha256 = "1psn13bqj1yxanh45g72npjbv9mzgv2fjnib0fyzvw7460bvqn8r"; 508 + rev = "4cddbdc9ecb92fb1633bd3b89bb9aacc3a5504ce"; 509 + sha256 = "08k6vmdzgws6f9461gjc4psqn2ypwf1nz9sjncs1vddckxwxl9k3"; 510 510 }; 511 511 }; 512 512 ··· 534 534 535 535 coc-tsserver = buildVimPluginFrom2Nix { 536 536 pname = "coc-tsserver"; 537 - version = "2019-07-19"; 537 + version = "2019-07-21"; 538 538 src = fetchFromGitHub { 539 539 owner = "neoclide"; 540 540 repo = "coc-tsserver"; 541 - rev = "ed538dc3b55bb94efe2bc511327d81a90c00e674"; 542 - sha256 = "06anjgidbf04g0wnxkmdzgdszn22afr3sxbsx445cvwinm2q3i87"; 541 + rev = "f8ed02524da46c71e5c3b79e0707cbc6d66666f5"; 542 + sha256 = "1w7lz287b322zan6rqimcmypaf9vq3x0ix1ka9s63qzgnpwg7g1i"; 543 543 }; 544 544 }; 545 545 ··· 777 777 778 778 denite-nvim = buildVimPluginFrom2Nix { 779 779 pname = "denite-nvim"; 780 - version = "2019-07-15"; 780 + version = "2019-07-22"; 781 781 src = fetchFromGitHub { 782 782 owner = "Shougo"; 783 783 repo = "denite.nvim"; 784 - rev = "3a1b508116652a6c9b4b174ddafaee7852a15fc4"; 785 - sha256 = "18af8d9rmb0x3ln03ph2m0msaji7wvyvyn3xck12y99mpsf1l50w"; 784 + rev = "1b5b057fc5fdae0745b84d15954245ac23618dc2"; 785 + sha256 = "1f96br849xh0xhjny4q29wxzrf1ypgw10sx2s0rfdmbfip32djh4"; 786 786 }; 787 787 }; 788 788 ··· 834 834 835 835 deoplete-jedi = buildVimPluginFrom2Nix { 836 836 pname = "deoplete-jedi"; 837 - version = "2019-06-30"; 837 + version = "2019-07-22"; 838 838 src = fetchFromGitHub { 839 839 owner = "deoplete-plugins"; 840 840 repo = "deoplete-jedi"; 841 - rev = "763c7befa7bbe44aa00a0c832916958a16e71254"; 842 - sha256 = "1dvw8l8f0k9hkfv4n791lgm1lipf5n2xhjyrwx1px92j1h94i8f1"; 841 + rev = "46121d9ca7688c148764d7ee488bb3572d1434c4"; 842 + sha256 = "1hiw42dm12xyhmvg180mrbjv3bbbvrgl4p2abll0lv5l2zmsbf12"; 843 843 fetchSubmodules = true; 844 844 }; 845 845 }; ··· 890 890 891 891 deoplete-nvim = buildVimPluginFrom2Nix { 892 892 pname = "deoplete-nvim"; 893 - version = "2019-07-17"; 893 + version = "2019-07-22"; 894 894 src = fetchFromGitHub { 895 895 owner = "Shougo"; 896 896 repo = "deoplete.nvim"; 897 - rev = "6e9f26a0cf5d7d60ddf04ce126e4adebe5a01cf2"; 898 - sha256 = "10r7c2jjy2q3wq30rsv7bml0cxjs19hzrfmba4g407yckync92bi"; 897 + rev = "53ad762d357f74c02c04403325f8f9122ba3bade"; 898 + sha256 = "0j2fx981r5bzcw408x1jy82inkly1kc3ciwdyqlhi94lg8sl20jv"; 899 899 }; 900 900 }; 901 901 ··· 945 945 946 946 editorconfig-vim = buildVimPluginFrom2Nix { 947 947 pname = "editorconfig-vim"; 948 - version = "2019-05-21"; 948 + version = "2019-07-20"; 949 949 src = fetchFromGitHub { 950 950 owner = "editorconfig"; 951 951 repo = "editorconfig-vim"; 952 - rev = "37bedf88cabb61d4580295b6e347058df7e7f1b4"; 953 - sha256 = "120fi53qp915qnhaqil15b4n22mp4gp5jvi9yirfmsk88hgz2lab"; 952 + rev = "c718cefc51ccdaf7bd27c4c1ae2de55103434241"; 953 + sha256 = "1sbpkv2q68s6qnm03jr1vazvdqqnrgiw53w4jn38dr8l9i2im199"; 954 954 fetchSubmodules = true; 955 955 }; 956 956 }; ··· 1111 1111 }; 1112 1112 }; 1113 1113 1114 + ghcid = buildVimPluginFrom2Nix { 1115 + pname = "ghcid"; 1116 + version = "2019-07-04"; 1117 + src = fetchFromGitHub { 1118 + owner = "ndmitchell"; 1119 + repo = "ghcid"; 1120 + rev = "08dff021a806c252d8eeccf44fa30e8d4118b137"; 1121 + sha256 = "05w4lqqs25m10rpjglkm1ggyssl9kig0nbd0qkg0l38zhc87afjr"; 1122 + }; 1123 + }; 1124 + 1114 1125 ghcmod-vim = buildVimPluginFrom2Nix { 1115 1126 pname = "ghcmod-vim"; 1116 1127 version = "2016-06-19"; ··· 1499 1510 1500 1511 ncm2 = buildVimPluginFrom2Nix { 1501 1512 pname = "ncm2"; 1502 - version = "2019-04-10"; 1513 + version = "2019-07-22"; 1503 1514 src = fetchFromGitHub { 1504 1515 owner = "ncm2"; 1505 1516 repo = "ncm2"; 1506 - rev = "e5a7976ad175251a96c537488d2d9557fafdcc8b"; 1507 - sha256 = "0jdhbv56vg53vy5yd4322pjyqaidjj0jdbn1ykvi4scci26rzq35"; 1517 + rev = "53b6531769e43c7e3c9051e3a12ab31e3e06a422"; 1518 + sha256 = "1kf2gfcw0wmyib72na3j2dsw6q4qff1r9lvdbk7cm7iclhwylhma"; 1508 1519 }; 1509 1520 }; 1510 1521 ··· 1653 1664 1654 1665 neomake = buildVimPluginFrom2Nix { 1655 1666 pname = "neomake"; 1656 - version = "2019-07-16"; 1667 + version = "2019-07-22"; 1657 1668 src = fetchFromGitHub { 1658 1669 owner = "neomake"; 1659 1670 repo = "neomake"; 1660 - rev = "9c0dfbfc90c50ebbfbe53aa5a6094e1b1c806459"; 1661 - sha256 = "1rbfhmf1vnvn4p63q3pbdcyqnagb9kvckr0m6dp4hx9pc4d393xd"; 1671 + rev = "999b6710ab915de2a3a23ce2a2456e2a295a2cf8"; 1672 + sha256 = "18j0d6mvkr5a29d7v14j87lz63svv6f2xm7xi5drl0r4s8lvjmhw"; 1662 1673 }; 1663 1674 }; 1664 1675 ··· 1675 1686 1676 1687 neosnippet-snippets = buildVimPluginFrom2Nix { 1677 1688 pname = "neosnippet-snippets"; 1678 - version = "2019-07-11"; 1689 + version = "2019-07-21"; 1679 1690 src = fetchFromGitHub { 1680 1691 owner = "Shougo"; 1681 1692 repo = "neosnippet-snippets"; 1682 - rev = "eac39588c45bda3bcd46f386e063309449f23ff5"; 1683 - sha256 = "105w3qfyjbmx8w8cxcq476zy8yyblkzz3gs8jpl2dl453zs2qli6"; 1693 + rev = "25dbe4ac607580fa05940dae24e544147d0bafeb"; 1694 + sha256 = "19vbk47mxa7j4bznk4vbxqzlscbk9kfqrsp6ja6x6bv7xvnhs8wm"; 1684 1695 }; 1685 1696 }; 1686 1697 ··· 2379 2390 2380 2391 traces-vim = buildVimPluginFrom2Nix { 2381 2392 pname = "traces-vim"; 2382 - version = "2019-07-12"; 2393 + version = "2019-07-20"; 2383 2394 src = fetchFromGitHub { 2384 2395 owner = "markonm"; 2385 2396 repo = "traces.vim"; 2386 - rev = "a30c11ee96cd402e0044a2c3dde6d6e5cc4d6273"; 2387 - sha256 = "01zncza0b7bm7f4dna88pq42fq4ajg8zhyk1kzzrf4n1fid3nljz"; 2397 + rev = "6c82275b8cd4c70e0610fd87f0574ef2463952a6"; 2398 + sha256 = "1pms2bm4g0v0idkva1f9bdcbbwvs6fhbzzx90zdyyhs73xp62k9k"; 2388 2399 }; 2389 2400 }; 2390 2401 ··· 3017 3028 3018 3029 vim-dirvish = buildVimPluginFrom2Nix { 3019 3030 pname = "vim-dirvish"; 3020 - version = "2019-05-05"; 3031 + version = "2019-07-20"; 3021 3032 src = fetchFromGitHub { 3022 3033 owner = "justinmk"; 3023 3034 repo = "vim-dirvish"; 3024 - rev = "5a51bf3d52054990beef3221ec3a03d4ea9188e3"; 3025 - sha256 = "02sfi5138km2gnmv6vx5gff9xkd9bl0wz6n9dx6478syc49a2sai"; 3035 + rev = "eba64ed111a3aab8121a0e5b6df62c6f19e05322"; 3036 + sha256 = "13cmxbpimnm9nkn9igkd8cpcvydw6nlzgyxzq11qdj31bjfs4nma"; 3026 3037 }; 3027 3038 }; 3028 3039 ··· 3105 3116 3106 3117 vim-elixir = buildVimPluginFrom2Nix { 3107 3118 pname = "vim-elixir"; 3108 - version = "2019-06-27"; 3119 + version = "2019-07-22"; 3109 3120 src = fetchFromGitHub { 3110 3121 owner = "elixir-lang"; 3111 3122 repo = "vim-elixir"; 3112 - rev = "a219dc1f702e581878f51746c4c31b8b4805aa4e"; 3113 - sha256 = "1bw8i3nvqwrb8d0dbsz53jy3pvcx7kwz48xy7b9sslrhkf4llwpn"; 3123 + rev = "46a68476fc7b4f454c829d83d21997b82ac66f76"; 3124 + sha256 = "1fyi39s211cw2db7zb5a5jy2r18h5azpkiij52ba6asxk7n5dghs"; 3114 3125 }; 3115 3126 }; 3116 3127 ··· 3149 3160 3150 3161 vim-fireplace = buildVimPluginFrom2Nix { 3151 3162 pname = "vim-fireplace"; 3152 - version = "2019-07-19"; 3163 + version = "2019-07-21"; 3153 3164 src = fetchFromGitHub { 3154 3165 owner = "tpope"; 3155 3166 repo = "vim-fireplace"; 3156 - rev = "5aed1bc834456a5517221ba82f57d2577e8c932c"; 3157 - sha256 = "0gdghfpxkxx4hfsr5liqjqb8sg1qjhaadb9vqh30rhl08q47zdlk"; 3167 + rev = "923dfbdbdb395d6192483e12ec6069910162619a"; 3168 + sha256 = "1q1x5qxi081nnx7zqisr8ryb0ffskmjb0pylfzaswv7cwx4v4kpc"; 3158 3169 }; 3159 3170 }; 3160 3171 ··· 3215 3226 3216 3227 vim-fugitive = buildVimPluginFrom2Nix { 3217 3228 pname = "vim-fugitive"; 3218 - version = "2019-07-18"; 3229 + version = "2019-07-21"; 3219 3230 src = fetchFromGitHub { 3220 3231 owner = "tpope"; 3221 3232 repo = "vim-fugitive"; 3222 - rev = "adba9c6345af58b31bcba8599b5bb162575d5755"; 3223 - sha256 = "1x7rjh45npsvylcbhfyxcxpa8lhb5l8jal6x6cx4rbc6csw65nb2"; 3233 + rev = "80996c2e2c5a0185cc6ce77c2cd18665d26d4041"; 3234 + sha256 = "0wjwj06nqvx2q084l309mz9vma951xyjhi2h4psb7k1iwybiqkwf"; 3224 3235 }; 3225 3236 }; 3226 3237
+4
pkgs/misc/vim-plugins/overrides.nix
··· 186 186 dependencies = with super; [ super.self ]; 187 187 }); 188 188 189 + ghcid = super.ghcid.overrideAttrs(old: { 190 + configurePhase = "cd plugins/nvim"; 191 + }); 192 + 189 193 gist-vim = super.gist-vim.overrideAttrs(old: { 190 194 dependencies = with super; [ webapi-vim ]; 191 195 });
+1
pkgs/misc/vim-plugins/vim-plugin-names
··· 229 229 ncm2/ncm2-path 230 230 ncm2/ncm2-tmux 231 231 ncm2/ncm2-ultisnips 232 + ndmitchell/ghcid 232 233 neoclide/coc-css 233 234 neoclide/coc-denite 234 235 neoclide/coc-emmet
+4 -2
pkgs/os-specific/linux/kernel/common-config.nix
··· 699 699 PREEMPT_VOLUNTARY = yes; 700 700 701 701 } // optionalAttrs (stdenv.hostPlatform.system == "x86_64-linux" || stdenv.hostPlatform.system == "aarch64-linux") { 702 - # Enable memory hotplug support 703 - # Allows you to dynamically add & remove memory to a VM client running NixOS without requiring a reboot 702 + # Enable CPU/memory hotplug support 703 + # Allows you to dynamically add & remove CPUs/memory to a VM client running NixOS without requiring a reboot 704 + ACPI_HOTPLUG_CPU = yes; 704 705 ACPI_HOTPLUG_MEMORY = yes; 705 706 MEMORY_HOTPLUG = yes; 706 707 MEMORY_HOTREMOVE = yes; 708 + HOTPLUG_CPU = yes; 707 709 MIGRATION = yes; 708 710 SPARSEMEM = yes; 709 711
+2 -2
pkgs/servers/documize-community/default.nix
··· 2 2 3 3 buildGoPackage rec { 4 4 pname = "documize-community"; 5 - version = "3.1.0"; 5 + version = "3.1.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "documize"; 9 9 repo = "community"; 10 10 rev = "v${version}"; 11 - sha256 = "1ghdmqcwvbp48dw2w0aka38wfi2a80rmprnaxrjn2j5aplgbkbc5"; 11 + sha256 = "1w57akmc3kb8rzgrjv5d4rjfr6vvam1wjs8792265ggnx6xhpgg9"; 12 12 }; 13 13 14 14 goPackagePath = "github.com/documize/community";
+2 -2
pkgs/servers/http/nginx/mainline.nix
··· 1 1 { callPackage, ... }@args: 2 2 3 3 callPackage ./generic.nix (args // { 4 - version = "1.16.0"; 5 - sha256 = "0i8krbi1pc39myspwlvb8ck969c8207hz84lh3qyg5w7syx7dlsg"; 4 + version = "1.17.2"; 5 + sha256 = "1v39gslwbvpfhqqv74q0lkfrhrwsp59xc8pwhvxns7af8s3kccsy"; 6 6 })
+12 -10
pkgs/servers/monitoring/prometheus/nginx-exporter.nix
··· 2 2 3 3 buildGoPackage rec { 4 4 name = "nginx_exporter-${version}"; 5 - version = "0.1.0"; 5 + version = "0.4.1"; 6 6 7 - goPackagePath = "github.com/discordianfish/nginx_exporter"; 7 + goPackagePath = "github.com/nginxinc/nginx-prometheus-exporter"; 8 + 9 + buildFlagsArray = [ 10 + "-ldflags=" "-X main.version=${version}" 11 + ]; 8 12 9 13 src = fetchFromGitHub { 10 14 rev = "v${version}"; 11 - owner = "discordianfish"; 12 - repo = "nginx_exporter"; 13 - sha256 = "1xwxnvkzslaj44r44ag24a9qfzjdxwz67hhpkdq42193zqpnlim7"; 15 + owner = "nginxinc"; 16 + repo = "nginx-prometheus-exporter"; 17 + sha256 = "0c5bxl9xrd4gh2w5wyrzghmbcy9k1khydzml5cm0rsyqhwsvs8m5"; 14 18 }; 15 19 16 - goDeps = ./nginx-exporter_deps.nix; 17 - 18 20 meta = with stdenv.lib; { 19 - description = "Metrics relay from nginx stats to Prometheus"; 20 - homepage = https://github.com/discordianfish/nginx_exporter; 21 - license = licenses.mit; 21 + description = "NGINX Prometheus Exporter for NGINX and NGINX Plus"; 22 + homepage = "https://github.com/nginxinc/nginx-prometheus-exporter"; 23 + license = licenses.asl20; 22 24 maintainers = with maintainers; [ benley fpletz willibutz ]; 23 25 platforms = platforms.unix; 24 26 };
-119
pkgs/servers/monitoring/prometheus/nginx-exporter_deps.nix
··· 1 - [ 2 - { 3 - goPackagePath = "github.com/alecthomas/template"; 4 - fetch = { 5 - type = "git"; 6 - url = "https://github.com/alecthomas/template"; 7 - rev = "a0175ee3bccc567396460bf5acd36800cb10c49c"; 8 - sha256 = "0qjgvvh26vk1cyfq9fadyhfgdj36f1iapbmr5xp6zqipldz8ffxj"; 9 - }; 10 - } 11 - { 12 - goPackagePath = "github.com/alecthomas/units"; 13 - fetch = { 14 - type = "git"; 15 - url = "https://github.com/alecthomas/units"; 16 - rev = "2efee857e7cfd4f3d0138cc3cbb1b4966962b93a"; 17 - sha256 = "1j65b91qb9sbrml9cpabfrcf07wmgzzghrl7809hjjhrmbzri5bl"; 18 - }; 19 - } 20 - { 21 - goPackagePath = "github.com/beorn7/perks"; 22 - fetch = { 23 - type = "git"; 24 - url = "https://github.com/beorn7/perks"; 25 - rev = "3a771d992973f24aa725d07868b467d1ddfceafb"; 26 - sha256 = "1l2lns4f5jabp61201sh88zf3b0q793w4zdgp9nll7mmfcxxjif3"; 27 - }; 28 - } 29 - { 30 - goPackagePath = "github.com/golang/protobuf"; 31 - fetch = { 32 - type = "git"; 33 - url = "https://github.com/golang/protobuf"; 34 - rev = "b4deda0973fb4c70b50d226b1af49f3da59f5265"; 35 - sha256 = "0ya4ha7m20bw048m1159ppqzlvda4x0vdprlbk5sdgmy74h3xcdq"; 36 - }; 37 - } 38 - { 39 - goPackagePath = "github.com/matttproud/golang_protobuf_extensions"; 40 - fetch = { 41 - type = "git"; 42 - url = "https://github.com/matttproud/golang_protobuf_extensions"; 43 - rev = "c12348ce28de40eed0136aa2b644d0ee0650e56c"; 44 - sha256 = "1d0c1isd2lk9pnfq2nk0aih356j30k3h1gi2w0ixsivi5csl7jya"; 45 - }; 46 - } 47 - { 48 - goPackagePath = "github.com/prometheus/client_golang"; 49 - fetch = { 50 - type = "git"; 51 - url = "https://github.com/prometheus/client_golang"; 52 - rev = "82f5ff156b29e276022b1a958f7d385870fb9814"; 53 - sha256 = "111j329yrlgvh73dm80gawwxsh9dgjkw74254kyj5c2rfmra7znz"; 54 - }; 55 - } 56 - { 57 - goPackagePath = "github.com/prometheus/client_model"; 58 - fetch = { 59 - type = "git"; 60 - url = "https://github.com/prometheus/client_model"; 61 - rev = "99fa1f4be8e564e8a6b613da7fa6f46c9edafc6c"; 62 - sha256 = "19y4ywsivhpxj7ikf2j0gm9k3cmyw37qcbfi78n526jxcc7kw998"; 63 - }; 64 - } 65 - { 66 - goPackagePath = "github.com/prometheus/common"; 67 - fetch = { 68 - type = "git"; 69 - url = "https://github.com/prometheus/common"; 70 - rev = "d811d2e9bf898806ecfb6ef6296774b13ffc314c"; 71 - sha256 = "0r4067r4ysmljksqw3awcxx5qplqhykahc5igdzgkky7i4bvaik1"; 72 - }; 73 - } 74 - { 75 - goPackagePath = "github.com/prometheus/procfs"; 76 - fetch = { 77 - type = "git"; 78 - url = "https://github.com/prometheus/procfs"; 79 - rev = "8b1c2da0d56deffdbb9e48d4414b4e674bd8083e"; 80 - sha256 = "0x128p15h35mgwqxkigfkk1lfrcz9g697ahl8v6xp9kwvcqvjrrf"; 81 - }; 82 - } 83 - { 84 - goPackagePath = "github.com/sirupsen/logrus"; 85 - fetch = { 86 - type = "git"; 87 - url = "https://github.com/sirupsen/logrus"; 88 - rev = "778f2e774c725116edbc3d039dc0dfc1cc62aae8"; 89 - sha256 = "0drlrl192k4qkpcf1b6nw2qlixply31x2jhcckjzl3hn4mzwi6nf"; 90 - }; 91 - } 92 - { 93 - goPackagePath = "golang.org/x/crypto"; 94 - fetch = { 95 - type = "git"; 96 - url = "https://go.googlesource.com/crypto"; 97 - rev = "ae8bce0030810cf999bb2b9868ae5c7c58e6343b"; 98 - sha256 = "0aihwcf0g8mq1sb96pwhpgvwxlf862pdhsfr7mdppz7bii4i9shw"; 99 - }; 100 - } 101 - { 102 - goPackagePath = "golang.org/x/sys"; 103 - fetch = { 104 - type = "git"; 105 - url = "https://go.googlesource.com/sys"; 106 - rev = "78d5f264b493f125018180c204871ecf58a2dce1"; 107 - sha256 = "0x23n60wskys39dwybz5za77ldky9i518kp58ragpd5528kcc68s"; 108 - }; 109 - } 110 - { 111 - goPackagePath = "gopkg.in/alecthomas/kingpin.v2"; 112 - fetch = { 113 - type = "git"; 114 - url = "https://gopkg.in/alecthomas/kingpin.v2"; 115 - rev = "947dcec5ba9c011838740e680966fd7087a71d0d"; 116 - sha256 = "0mndnv3hdngr3bxp7yxfd47cas4prv98sqw534mx7vp38gd88n5r"; 117 - }; 118 - } 119 - ]
+3 -3
pkgs/servers/monitoring/uchiwa/bower-packages.nix
··· 1 1 # Generated by bower2nix v3.2.0 (https://github.com/rvl/bower2nix) 2 2 { fetchbower, buildEnv }: 3 3 buildEnv { name = "bower-env"; ignoreCollisions = true; paths = [ 4 - (fetchbower "uchiwa-web" "1.5.0" "1.5.0" "0z7g4nb7cm5w5l8w1856sbib15sx022mqpap9d49s6ppnn53vcs1") 4 + (fetchbower "uchiwa-web" "1.7.0" "1.7.0" "1qn09j3a1ngqn36rhz7a2dj00szr0r6fjb40lfbmq3drkzppgbm1") 5 5 (fetchbower "angular" "1.6.10" "~1.6.3" "0ag8xddsgxx5yka4wjq4ala4y6z3x2g1vc3x7a1n291fzz26p7ws") 6 6 (fetchbower "angular-bootstrap" "2.2.0" "~2.2.0" "11r2nlwp6xrim2y6lnrr8v064mx3bmlxchqpg1i803v9zxz3q53d") 7 7 (fetchbower "angular-cookies" "1.6.10" "~1.6.3" "0bjgmz5jnw06dfxhq9sajj62fk0b3v4j9p7nb45x8bl8rzkf25pn") ··· 19 19 (fetchbower "highlightjs" "9.1.0" "~9.1.0" "0ld1da3h416a5j8v3v50rrpm4xwvvq8k8y2vwncvaqm9cqddz4s3") 20 20 (fetchbower "moment" "2.16.0" "~2.16.0" "1mji892i60f2aw3vhl6878acrcgh0ycn3r4af0ivnjf8az2b9n71") 21 21 (fetchbower "moment-picker" "0.9.11" "~0.9.7" "0p2g6rp2kcixydrga9lfihg4bxb598rvpi8n8l59mp549diy7vsb") 22 - (fetchbower "ua-parser-js" "0.7.19" "~0.7.12" "0s1yaspccz234hm772hlybjsi0kndzwpjx5lzy3y1s4wfk248ks4") 22 + (fetchbower "ua-parser-js" "0.7.20" "~0.7.12" "18r0islba6cwkvx4s2gna7skhsn2vqjcf1xyap5pcmycjnq93j8s") 23 23 (fetchbower "jsoneditor" "5.5.11" "~5.5.10" "1gfsf8jqnd3hb3r9s9246mg40iqxk2ix8k4bjnrsbfmg6cd3xw6x") 24 - (fetchbower "jquery" "3.3.1" ">= 1.9.0" "1l891s3vgnpi1g8ksplid9jvrvnnv6lci8vraix4ssy50i264rkx") 24 + (fetchbower "jquery" "3.4.1" ">= 1.9.0" "1vk25pbc55m2c82mqf26rfhxhnliq18isi4vbm4p98a1b9vp8fq7") 25 25 ]; }
+2 -2
pkgs/servers/monitoring/uchiwa/src.nix
··· 1 1 { 2 - version = "1.5.0-1"; 3 - sha256 = "05idwiv47zav46wi1hfly6rylpw8qryr12xlz47ic04ggdlga13b"; 2 + version = "1.7.0-1"; 3 + sha256 = "0fa3zzh6d8v1lfn828s0x65pcknycwyv0d1mndi0gvdfbfg463nf"; 4 4 }
+2 -2
pkgs/servers/samba/4.x.nix
··· 20 20 21 21 stdenv.mkDerivation rec { 22 22 name = "samba-${version}"; 23 - version = "4.10.5"; 23 + version = "4.10.6"; 24 24 25 25 src = fetchurl { 26 26 url = "mirror://samba/pub/samba/stable/${name}.tar.gz"; 27 - sha256 = "0xb3mz38hcayqxchk0ws9mxn10vswsn97jbxl4gcwi4cbrnjc43c"; 27 + sha256 = "0hpgdqlyczj98pkh2ldglvvnkrb1q541r3qikdvxq0qjvd9fpywy"; 28 28 }; 29 29 30 30 outputs = [ "out" "dev" "man" ];
+1 -1
pkgs/servers/sql/postgresql/default.nix
··· 7 7 , pkgconfig, libxml2, tzdata 8 8 9 9 # This is important to obtain a version of `libpq` that does not depend on systemd. 10 - , enableSystemd ? (lib.versionAtLeast "9.6" version && !stdenv.isDarwin) 10 + , enableSystemd ? (lib.versionAtLeast version "9.6" && !stdenv.isDarwin) 11 11 12 12 # for postgreql.pkgs 13 13 , this, self, newScope, buildEnv
+2 -2
pkgs/servers/sql/postgresql/ext/pgroonga.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "pgroonga"; 5 - version = "2.2.0"; 5 + version = "2.2.1"; 6 6 7 7 src = fetchurl { 8 8 url = "https://packages.groonga.org/source/${pname}/${pname}-${version}.tar.gz"; 9 - sha256 = "1cankcprikx8nf72yg4h8542gqqlfgww6d63kg7l8l8sz962d28b"; 9 + sha256 = "0d913rkxx6qlkav6z9crsz3ypqkdffn4c667nsgzh5s9n4wbbpb8"; 10 10 }; 11 11 12 12 nativeBuildInputs = [ pkgconfig ];
+2 -2
pkgs/servers/sql/postgresql/ext/timescaledb.nix
··· 8 8 9 9 stdenv.mkDerivation rec { 10 10 name = "timescaledb-${version}"; 11 - version = "1.3.2"; 11 + version = "1.4.0"; 12 12 13 13 nativeBuildInputs = [ cmake ]; 14 14 buildInputs = [ postgresql openssl ]; ··· 17 17 owner = "timescale"; 18 18 repo = "timescaledb"; 19 19 rev = "refs/tags/${version}"; 20 - sha256 = "117az52h8isi15p47r5d6k5y80ng9vj3x8ljq39iavgr364q716c"; 20 + sha256 = "0xjl3pdm36pksbkhl44kixqkfv8qpdm4frfwxv0p4vvjmlhslz48"; 21 21 }; 22 22 23 23 cmakeFlags = [ "-DSEND_TELEMETRY_DEFAULT=OFF" ];
+3 -3
pkgs/shells/zsh/oh-my-zsh/default.nix
··· 4 4 { stdenv, fetchgit }: 5 5 6 6 stdenv.mkDerivation rec { 7 - version = "2019-07-13"; 7 + version = "2019-07-22"; 8 8 name = "oh-my-zsh-${version}"; 9 - rev = "17f4cfca99398cb5511557b8515a17bf1bf2948a"; 9 + rev = "508cba2fc2ec545504abcf38ecdd958f3a89e5e8"; 10 10 11 11 src = fetchgit { inherit rev; 12 12 url = "https://github.com/robbyrussell/oh-my-zsh"; 13 - sha256 = "19f29mrvnhvndvl48fd5kdiixfs0apmb27h4mck5v95p6yw27b6f"; 13 + sha256 = "0pql5p8dwz576s0hgqrzk4543qawlghy7rv3k3jyhrwi4xx4z84d"; 14 14 }; 15 15 16 16 pathsToLink = [ "/share/oh-my-zsh" ];
+2 -2
pkgs/tools/admin/eksctl/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "eksctl"; 5 - version = "0.1.40"; 5 + version = "0.2.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "weaveworks"; 9 9 repo = pname; 10 10 rev = version; 11 - sha256 = "08r4p2brs9gxxqnyv44zi1agv5q3ss8292201z9vh5ji9fmck2vb"; 11 + sha256 = "0f8rj7jw8ym97bjqaxzn1rnhp5nfx3jf5f51jwczljvr67ik9q75"; 12 12 }; 13 13 14 14 modSha256 = "1lmkwx0r19c2wg9nm85k92nlxjzr8q917jf3f333yf3csfyiix2f";
+1 -1
pkgs/tools/filesystems/squashfuse/default.nix
··· 25 25 owner = "vasi"; 26 26 repo = "${pname}"; 27 27 rev = "540204955134eee44201d50132a5f66a246bcfaf"; 28 - sha256 = "07jv4qjjz9ky3mw3p5prgs19g1bna9dcd7jjdz8083s1wyipdgcq"; 28 + sha256 = "062s77y32p80vc24a79z31g90b9wxzvws1xvicgx5fn1pd0xa0q6"; 29 29 }; 30 30 31 31 nativeBuildInputs = [ autoreconfHook libtool pkgconfig ];
+9 -19
pkgs/tools/inputmethods/fcitx/fcitx-qt5.nix
··· 1 - { stdenv, fetchurl, cmake, fcitx, pkgconfig, qtbase, extra-cmake-modules 2 - , fetchpatch 3 - }: 1 + { stdenv, fetchFromGitLab, cmake, fcitx, pkgconfig, qtbase, extra-cmake-modules }: 4 2 5 3 stdenv.mkDerivation rec { 6 - name = "fcitx-qt5-${version}"; 7 - version = "1.2.1"; 4 + pname = "fcitx-qt5"; 5 + version = "1.2.3"; 8 6 9 - src = fetchurl { 10 - url = "http://download.fcitx-im.org/fcitx-qt5/${name}.tar.xz"; 11 - sha256 = "0z8ax0dxk88byic41mfaiahjdv1k8ciwn97xfjkkgr4ijgscdr8c"; 7 + src = fetchFromGitLab { 8 + owner = "fcitx"; 9 + repo = pname; 10 + rev = version; 11 + sha256 = "0860v3rxsh054wkkbawvyin5mk0flp4cwfcpmcpq147lvdm5lq2i"; 12 12 }; 13 13 14 - patches = [ 15 - # Fix build with Qt 5.11 16 - # https://github.com/fcitx/fcitx-qt5/issues/34 17 - (fetchpatch { 18 - url = https://github.com/fcitx/fcitx-qt5/commit/af033e3d5305108eecc568adff7f8b2da5831ed6.diff; 19 - sha256 = "14vfz1fw2k362wnqpglw766fg3d3mc8cmfgic2p96yyipjh9xx3b"; 20 - }) 21 - ]; 22 - 23 14 nativeBuildInputs = [ cmake extra-cmake-modules pkgconfig ]; 24 15 25 16 buildInputs = [ fcitx qtbase ]; ··· 32 23 ''; 33 24 34 25 meta = with stdenv.lib; { 35 - homepage = https://github.com/fcitx/fcitx-qt5; 26 + homepage = https://gitlab.com/fcitx/fcitx-qt5; 36 27 description = "Qt5 IM Module for Fcitx"; 37 28 license = licenses.gpl2; 38 29 platforms = platforms.linux; 39 30 maintainers = with maintainers; [ ericsagnes ]; 40 31 }; 41 - 42 32 }
+3 -3
pkgs/tools/misc/broot/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "broot"; 5 - version = "0.8.0"; 5 + version = "0.9.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "Canop"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "0xgjpdy12b77hgf0vfgs2ayxaajjv8vs0v8fn4rnrgn3hz8ldhyc"; 11 + sha256 = "0i6ayp295xnppq92lc1fsfyrjkxrkvsva07yby45qa0l92nihqpy"; 12 12 }; 13 13 14 - cargoSha256 = "1hsrp9xbi6bj3461y58hmzfwakx4vakpzkjvi6174gy8xq7cdvg1"; 14 + cargoSha256 = "1qdi1l0k0v00r9mfxgf09dzkvgxn07rcsl2yyyrhvcn731ak302y"; 15 15 16 16 meta = with stdenv.lib; { 17 17 description = "An interactive tree view, a fuzzy search, a balanced BFS descent and customizable commands";
+2 -2
pkgs/tools/misc/geekbench/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "geekbench-${version}"; 5 - version = "4.3.3"; 5 + version = "4.4.0"; 6 6 7 7 src = fetchurl { 8 8 url = "https://cdn.geekbench.com/Geekbench-${version}-Linux.tar.gz"; 9 - sha256 = "0bqa0k4cf4w8gjs49lnrvns11jv21kqcgdbqp2zhwqgmkx9gr8ny"; 9 + sha256 = "1awdr54vw29ah7aah2bxpy4qkqasxj67sqk6gir8ybnxb5hxm3ri"; 10 10 }; 11 11 12 12 dontConfigure = true;
+25
pkgs/tools/misc/kak-lsp/default.nix
··· 1 + { stdenv, lib, darwin, fetchFromGitHub, rustPlatform }: 2 + 3 + rustPlatform.buildRustPackage rec { 4 + pname = "kak-lsp"; 5 + version = "6.2.1"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "ul"; 9 + repo = pname; 10 + rev = "v${version}"; 11 + sha256 = "0bazbz1g5iqxlwybn5whidvavglvgdl9yp9qswgsk1jrjmcr5klx"; 12 + }; 13 + 14 + cargoSha256 = "0w0mnh8fnl8zi9n0fxzqaqbvmfagf3ay5v2na3laxb72jm76hrwa"; 15 + 16 + buildInputs = lib.optional stdenv.isDarwin [ darwin.apple_sdk.frameworks.Security ]; 17 + 18 + meta = with lib; { 19 + description = "Kakoune Language Server Protocol Client"; 20 + homepage = https://github.com/ul/kak-lsp; 21 + license = with licenses; [ unlicense /* or */ mit ]; 22 + maintainers = [ maintainers.spacekookie ]; 23 + platforms = platforms.all; 24 + }; 25 + }
+2 -2
pkgs/tools/misc/lf/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 name = "lf-${version}"; 5 - version = "12"; 5 + version = "13"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "gokcehan"; 9 9 repo = "lf"; 10 10 rev = "r${version}"; 11 - sha256 = "1pjydnwlc6mrnwz13s13c91nvjvb1ibwl944ppg8xq8dcy9b2cs4"; 11 + sha256 = "1ld3q75v8rvp169w5p85z1vznqs9bhck6bm2f6fykxx16hmpb6ga"; 12 12 }; 13 13 14 14 modSha256 = "14fvn8yjm9cnpsmzgxw2dypr3h8h36mxrbk7zma42w8rsp46jpz7";
+1 -1
pkgs/tools/misc/lolcat/Gemfile.lock
··· 1 1 GEM 2 2 remote: https://rubygems.org/ 3 3 specs: 4 - lolcat (99.9.69) 4 + lolcat (99.9.99) 5 5 manpages (~> 0.6.1) 6 6 optimist (~> 3.0.0) 7 7 paint (~> 2.0.0)
+3 -3
pkgs/tools/misc/lolcat/gemset.nix
··· 5 5 platforms = []; 6 6 source = { 7 7 remotes = ["https://rubygems.org"]; 8 - sha256 = "0d1yh2ikyhyh7am4qznd6fzv2pyvk82xrnsrsbbyxzcqfz9x6aa9"; 8 + sha256 = "0422869sf6hif1nrfzi8fwklnrdqj6hxxwg3403xvd9d50yndrn4"; 9 9 type = "gem"; 10 10 }; 11 - version = "99.9.69"; 11 + version = "99.9.99"; 12 12 }; 13 13 manpages = { 14 14 groups = ["default"]; ··· 40 40 }; 41 41 version = "2.0.3"; 42 42 }; 43 - } 43 + }
+5 -4
pkgs/tools/networking/dnsperf/default.nix
··· 1 - { stdenv, fetchurl, fetchFromGitHub, autoreconfHook 1 + { stdenv, fetchurl, fetchFromGitHub, autoreconfHook, pkgconfig 2 2 , bind, zlib, openssl, libcap 3 3 }: 4 4 5 5 stdenv.mkDerivation rec { 6 6 name = "dnsperf-${version}"; 7 - version = "2.2.0"; 7 + version = "2.3.1"; 8 8 9 9 # The same as the initial commit of the new GitHub repo (only readme changed). 10 10 src = fetchFromGitHub { 11 11 owner = "DNS-OARC"; 12 12 repo = "dnsperf"; 13 13 rev = "v${version}"; 14 - sha256 = "1acbpgk1d7hjs48j3w6xkmyf9xlxhqskjy50a16f9dvjwvvxp84b"; 14 + sha256 = "0yxwm5xi9ry154ayzn2h27bnwwc202bsna8h6i4a65pn76nrn81w"; 15 15 }; 16 16 17 17 outputs = [ "out" "man" "doc" ]; 18 18 19 - nativeBuildInputs = [ autoreconfHook ]; 19 + nativeBuildInputs = [ autoreconfHook pkgconfig ]; 20 + 20 21 buildInputs = [ bind zlib openssl ] 21 22 ++ stdenv.lib.optionals stdenv.isLinux [ libcap.lib ]; 22 23
-60
pkgs/tools/networking/linkchecker/add-no-robots-flag.patch
··· 1 - diff --git a/linkcheck/checker/httpurl.py b/linkcheck/checker/httpurl.py 2 - index 6f207b6..161619c 100644 3 - --- a/linkcheck/checker/httpurl.py 4 - +++ b/linkcheck/checker/httpurl.py 5 - @@ -75,7 +75,7 @@ def allows_robots (self, url): 6 - @return: True if access is granted, otherwise False 7 - @rtype: bool 8 - """ 9 - - return self.aggregate.robots_txt.allows_url(self) 10 - + return not self.aggregate.config['robotstxt'] or self.aggregate.robots_txt.allows_url(self) 11 - 12 - def content_allows_robots (self): 13 - """ 14 - diff --git a/linkcheck/configuration/__init__.py b/linkcheck/configuration/__init__.py 15 - index fc2c148..234fa05 100644 16 - --- a/linkcheck/configuration/__init__.py 17 - +++ b/linkcheck/configuration/__init__.py 18 - @@ -163,6 +163,7 @@ def __init__ (self): 19 - ## checking options 20 - self["allowedschemes"] = [] 21 - self['cookiefile'] = None 22 - + self['robotstxt'] = True 23 - self["debugmemory"] = False 24 - self["localwebroot"] = None 25 - self["maxfilesizeparse"] = 1*1024*1024 26 - diff --git a/linkcheck/configuration/confparse.py b/linkcheck/configuration/confparse.py 27 - index 67751ed..845fa95 100644 28 - --- a/linkcheck/configuration/confparse.py 29 - +++ b/linkcheck/configuration/confparse.py 30 - @@ -149,6 +149,7 @@ def read_checking_config (self): 31 - self.get(section, 'allowedschemes').split(',')] 32 - self.read_boolean_option(section, "debugmemory") 33 - self.read_string_option(section, "cookiefile") 34 - + self.read_boolean_option(section, "robotstxt") 35 - self.read_string_option(section, "localwebroot") 36 - try: 37 - self.read_boolean_option(section, "sslverify") 38 - diff --git a/linkchecker b/linkchecker 39 - index 199532c..9e91fa5 100755 40 - --- a/linkchecker 41 - +++ b/linkchecker 42 - @@ -321,6 +321,9 @@ group.add_argument("--cookiefile", dest="cookiefile", metavar="FILENAME", 43 - help=_( 44 - """Read a file with initial cookie data. The cookie data format is 45 - explained below.""")) 46 - +# const because store_false doesn't detect absent flags 47 - +group.add_argument("--no-robots", action="store_const", const=False, 48 - + dest="norobotstxt", help=_("Disable robots.txt checks")) 49 - group.add_argument("--check-extern", action="store_true", 50 - dest="checkextern", help=_("""Check external URLs.""")) 51 - group.add_argument("--ignore-url", action="append", metavar="REGEX", 52 - @@ -431,6 +434,8 @@ if options.externstrict: 53 - if options.extern: 54 - pats = [linkcheck.get_link_pat(arg) for arg in options.extern] 55 - config["externlinks"].extend(pats) 56 - +if options.norobotstxt is not None: 57 - + config['robotstxt'] = options.norobotstxt 58 - if options.checkextern: 59 - config["checkextern"] = True 60 - elif not config["checkextern"]:
+31 -46
pkgs/tools/networking/linkchecker/default.nix
··· 1 - { stdenv, lib, fetchFromGitHub, fetchpatch, python2, gettext }: 2 - let 3 - # pin requests version until next release. 4 - # see: https://github.com/linkcheck/linkchecker/issues/76 5 - python2Packages = (python2.override { 6 - packageOverrides = self: super: { 7 - requests = super.requests.overridePythonAttrs(oldAttrs: rec { 8 - version = "2.14.2"; 9 - src = oldAttrs.src.override { 10 - inherit version; 11 - sha256 = "0lyi82a0ijs1m7k9w1mqwbmq1qjsac35fazx7xqyh8ws76xanx52"; 12 - }; 13 - }); 14 - }; 15 - }).pkgs; 16 - in 1 + { stdenv, lib, fetchFromGitHub, python2Packages, gettext }: 2 + 17 3 python2Packages.buildPythonApplication rec { 18 - pname = "LinkChecker"; 19 - version = "9.3.1"; 4 + pname = "linkchecker"; 5 + version = "9.4.0"; 20 6 21 - nativeBuildInputs = [ gettext ]; 22 - pythonPath = (with python2Packages; [ 23 - requests 24 - ]) ++ [ gettext ]; 25 - 26 - checkInputs = with python2Packages; [ pytest ]; 27 - 28 - # the original repository is abandoned, development is now happening here: 29 7 src = fetchFromGitHub { 30 - owner = "linkcheck"; 31 - repo = "linkchecker"; 8 + owner = pname; 9 + repo = pname; 32 10 rev = "v${version}"; 33 - sha256 = "080mv4iwvlsfnm7l9basd6i8p4q8990mdhkwick9s6javrbf1r1d"; 11 + sha256 = "1vbwl2vb8dyzki27z3sl5yf9dhdd2cpkg10vbgaz868dhpqlshgs"; 34 12 }; 35 13 36 - # 1. upstream refuses to support ignoring robots.txt 37 - # 2. fix build: https://github.com/linkcheck/linkchecker/issues/10 38 - patches = 39 - let 40 - fix-setup-py = fetchpatch { 41 - name = "fix-setup-py.patch"; 42 - url = https://github.com/linkcheck/linkchecker/commit/e62e630.patch; 43 - sha256 = "046q1whg715w2yv33xx6rkj7fspvvz60cl978ax92lnf8j101czx"; 44 - }; 45 - in [ 46 - ./add-no-robots-flag.patch 47 - fix-setup-py 48 - ]; 14 + nativeBuildInputs = [ gettext ]; 15 + 16 + propagatedBuildInputs = with python2Packages; [ 17 + ConfigArgParse 18 + argcomplete 19 + dnspython 20 + pyxdg 21 + requests 22 + ]; 49 23 50 - postInstall = '' 51 - rm $out/bin/linkchecker-gui 24 + checkInputs = with python2Packages; [ 25 + parameterized 26 + pytest 27 + ]; 28 + 29 + postPatch = '' 30 + sed -i 's/^requests.*$/requests>=2.2/' requirements.txt 31 + sed -i "s/'request.*'/'requests >= 2.2'/" setup.py 32 + sed -i 's~/usr/lib/python2.7/argparse.py~~g' po/Makefile 52 33 ''; 53 34 54 35 checkPhase = '' 36 + runHook preCheck 37 + 55 38 # the mime test fails for me... 56 39 rm tests/test_mimeutil.py 57 40 ${lib.optionalString stdenv.isDarwin '' 58 - # network tests fails on darwin 59 - rm tests/test_network.py 41 + # network tests fails on darwin 42 + rm tests/test_network.py 60 43 ''} 61 44 make test PYTESTOPTS="--tb=short" TESTS="tests/test_*.py tests/logger/test_*.py" 45 + 46 + runHook postCheck 62 47 ''; 63 48 64 49 meta = {
+6 -4
pkgs/tools/networking/slirp4netns/default.nix
··· 1 - { stdenv, fetchFromGitHub, autoreconfHook }: 1 + { stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, glib }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "slirp4netns-${version}"; 5 - version = "0.3.0-alpha.2"; 5 + version = "0.3.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "rootless-containers"; 9 9 repo = "slirp4netns"; 10 10 rev = "v${version}"; 11 - sha256 = "163nwdwi1qigma1c5svm8llgd8pn4sbkchw67ry3v0gfxa9mxibk"; 11 + sha256 = "079m44l4l0p1c2sbkpzsy6zpv94glwmrc72ip2djcscnaq4b1763"; 12 12 }; 13 13 14 - nativeBuildInputs = [ autoreconfHook ]; 14 + nativeBuildInputs = [ autoreconfHook pkgconfig ]; 15 + 16 + buildInputs = [ glib ]; 15 17 16 18 enableParallelBuilding = true; 17 19
+3 -3
pkgs/tools/security/ghidra/default.nix
··· 6 6 7 7 in stdenv.mkDerivation { 8 8 9 - name = "ghidra-9.0"; 9 + name = "ghidra-9.0.2"; 10 10 11 11 src = fetchurl { 12 - url = https://ghidra-sre.org/ghidra_9.0_PUBLIC_20190228.zip; 13 - sha256 = "3b65d29024b9decdbb1148b12fe87bcb7f3a6a56ff38475f5dc9dd1cfc7fd6b2"; 12 + url = https://ghidra-sre.org/ghidra_9.0.2_PUBLIC_20190403.zip; 13 + sha256 = "10ffd65c266e9f5b631c8ed96786c41ef30e2de939c3c42770573bb3548f8e9f"; 14 14 }; 15 15 16 16 nativeBuildInputs = [
+18 -4
pkgs/tools/security/pinentry/default.nix
··· 1 1 { fetchurl, fetchpatch, stdenv, lib, pkgconfig 2 - , libgpgerror, libassuan, libcap ? null, libsecret ? null, ncurses ? null, gtk2 ? null, gcr ? null, qt ? null 2 + , libgpgerror, libassuan 3 + , libcap ? null, libsecret ? null, ncurses ? null, gtk2 ? null, gcr ? null 4 + , qt4 ? null, qt5 ? null 3 5 , enableEmacs ? false 4 6 }: 5 7 6 - stdenv.mkDerivation rec { 8 + assert qt5 != null -> qt4 == null; 9 + assert qt4 != null -> qt5 == null; 10 + 11 + let 12 + mkDerivation = 13 + if qt5 != null 14 + then qt5.mkDerivation 15 + else stdenv.mkDerivation; 16 + in 17 + 18 + mkDerivation rec { 7 19 name = "pinentry-1.1.0"; 8 20 9 21 src = fetchurl { ··· 12 24 }; 13 25 14 26 nativeBuildInputs = [ pkgconfig ]; 15 - buildInputs = [ libgpgerror libassuan libcap libsecret gtk2 gcr ncurses qt ]; 27 + buildInputs = 28 + [ libgpgerror libassuan libcap libsecret gtk2 gcr ncurses qt4 ] 29 + ++ stdenv.lib.optional (qt5 != null) qt5.qtbase; 16 30 17 31 prePatch = '' 18 32 substituteInPlace pinentry/pinentry-curses.c --replace ncursesw ncurses ··· 34 48 (stdenv.lib.enableFeature enableEmacs "pinentry-emacs") 35 49 (stdenv.lib.enableFeature (gtk2 != null) "pinentry-gtk2") 36 50 (stdenv.lib.enableFeature (gcr != null) "pinentry-gnome3") 37 - (stdenv.lib.enableFeature (qt != null) "pinentry-qt") 51 + (stdenv.lib.enableFeature (qt4 != null || qt5 != null) "pinentry-qt") 38 52 39 53 "--with-libassuan-prefix=${libassuan.dev}" 40 54 "--with-libgpg-error-prefix=${libgpgerror.dev}"
+2 -2
pkgs/tools/system/osquery/default.nix
··· 1 1 { stdenv, lib, fetchFromGitHub, pkgconfig, cmake, python 2 2 , udev, audit, aws-sdk-cpp, cryptsetup, lvm2, libgcrypt, libarchive 3 3 , libgpgerror, libuuid, iptables, dpkg, lzma, bzip2, rpm 4 - , beecrypt, augeas, libxml2, sleuthkit, yara, lldpd, google-gflags 4 + , beecrypt, augeas, libxml2, sleuthkit, yara, lldpd, gflags 5 5 , thrift, boost, rocksdb_lite, glog, gbenchmark, snappy 6 6 , openssl, file, doxygen 7 7 , gtest, fpm, zstd, rdkafka, rapidjson, fetchgit, fetchurl, libelfin ··· 53 53 54 54 # filter out static linking configuration to avoid that the library will 55 55 # be linked both statically and dynamically. 56 - gflags = google-gflags.overrideAttrs (old: { 56 + gflags = gflags.overrideAttrs (old: { 57 57 cmakeFlags = stdenv.lib.filter (f: (builtins.match ".*STATIC.*" f) == null) old.cmakeFlags; 58 58 }); 59 59 };
+7 -5
pkgs/tools/text/highlight/default.nix
··· 1 - { stdenv, fetchFromGitHub, getopt, lua, boost, pkgconfig, gcc }: 1 + { stdenv, fetchFromGitLab, getopt, lua, boost, pkgconfig, gcc }: 2 2 3 3 with stdenv.lib; 4 4 5 5 stdenv.mkDerivation rec { 6 6 name = "highlight-${version}"; 7 - version = "3.43"; 7 + version = "3.52"; 8 8 9 - src = fetchFromGitHub { 10 - owner = "andre-simon"; 9 + src = fetchFromGitLab { 10 + owner = "saalen"; 11 11 repo = "highlight"; 12 12 rev = "v${version}"; 13 - sha256 = "126nsf4cjxflg2kiv72qf1xl5fsilk0jqcncs6qqgm72cpjfmlsy"; 13 + sha256 = "0zhn1k70ck82ks7ckzsy1yiz686ym2ps7c28wjmkgxfpyjanilrq"; 14 14 }; 15 + 16 + enableParallelBuilding = true; 15 17 16 18 nativeBuildInputs = [ pkgconfig ] ++ optional stdenv.isDarwin gcc ; 17 19
+3 -3
pkgs/tools/virtualization/distrobuilder/default.nix
··· 8 8 in 9 9 buildGoPackage rec { 10 10 name = "distrobuilder-${version}"; 11 - version = "2018_10_04"; 12 - rev = "d2329be9569d45028a38836186d2353b8ddfe1ca"; 11 + version = "2019_10_07"; 12 + rev = "d686c88c21838f5505c3ec14711b2413604d7f5c"; 13 13 14 14 goPackagePath = "github.com/lxc/distrobuilder"; 15 15 ··· 17 17 inherit rev; 18 18 owner = "lxc"; 19 19 repo = "distrobuilder"; 20 - sha256 = "1sn1wif86p089kr6zq83k81hjd1d73kamnawc2p0k0vd0w91d3v4"; 20 + sha256 = "0k59czgasy4d58bkrin6hvgmh7y3nf177lwd0y4g47af27bgnyc4"; 21 21 }; 22 22 23 23 goDeps = ./deps.nix;
+149 -14
pkgs/tools/virtualization/distrobuilder/deps.nix
··· 1 1 # This file was generated by https://github.com/kamilchm/go2nix v1.3.0 2 2 [ 3 3 { 4 + goPackagePath = "github.com/antchfx/xpath"; 5 + fetch = { 6 + type = "git"; 7 + url = "https://github.com/antchfx/xpath"; 8 + rev = "b6dbe470e10224a23b2f69db0d4449bc6627ece6"; 9 + sha256 = "1959kzmjijpll6432da84rmzgd7p3yyqdq9chyxnm8318pr5znji"; 10 + }; 11 + } 12 + { 4 13 goPackagePath = "github.com/flosch/pongo2"; 5 14 fetch = { 6 15 type = "git"; 7 16 url = "https://github.com/flosch/pongo2"; 8 - rev = "24195e6d38b06020d7a92c7b11960cf2e7cad2f2"; 9 - sha256 = "1cbg3ya8l2v34gcxnd73nvzpfpx8kzkbiv0kpgaxqpcqjhanhgj9"; 17 + rev = "bbf5a6c351f4d4e883daa40046a404d7553e0a00"; 18 + sha256 = "0yqh58phznnxakm64w82gawrpndb0r85vsd1s7h244qqrq7w4avq"; 19 + }; 20 + } 21 + { 22 + goPackagePath = "github.com/gobuffalo/envy"; 23 + fetch = { 24 + type = "git"; 25 + url = "https://github.com/gobuffalo/envy"; 26 + rev = "043cb4b8af871b49563291e32c66bb84378a60ac"; 27 + sha256 = "03jarnkaf42xgfamb0jlya4c1cyk8gnxhcd21m3fx145vz4px398"; 28 + }; 29 + } 30 + { 31 + goPackagePath = "github.com/gobuffalo/logger"; 32 + fetch = { 33 + type = "git"; 34 + url = "https://github.com/gobuffalo/logger"; 35 + rev = "7c291b53e05b81d77bd43109b4a3c6f84e45c8e1"; 36 + sha256 = "1w6rkz0xwq3xj3giwzjkfnai69a0cgg09zx01z7s8r5z450cish3"; 37 + }; 38 + } 39 + { 40 + goPackagePath = "github.com/gobuffalo/packd"; 41 + fetch = { 42 + type = "git"; 43 + url = "https://github.com/gobuffalo/packd"; 44 + rev = "54ea459691466cfb630ccc276723fe3963f3e9d5"; 45 + sha256 = "02sg33jkp219g0z3yf2fn9xm2zds1qxzdznx5mh8vffh4njjg1x8"; 46 + }; 47 + } 48 + { 49 + goPackagePath = "github.com/gobuffalo/packr"; 50 + fetch = { 51 + type = "git"; 52 + url = "https://github.com/gobuffalo/packr"; 53 + rev = "dc520c910ea91354b3ae131bbb029270e4fc1af4"; 54 + sha256 = "1ph05pkbq0ggdab152f7hjlc758nkrw22fqgslnf1nvggadjkvqs"; 10 55 }; 11 56 } 12 57 { ··· 14 59 fetch = { 15 60 type = "git"; 16 61 url = "https://github.com/gorilla/websocket"; 17 - rev = "95ba29eb981bbb27d92e1f70bf8a1949452d926b"; 18 - sha256 = "08lvc9l0qagyhyrjj6jkhpq3zapa5gqr966bm33nb4bc0pd38f48"; 62 + rev = "ae1634f6a98965ded3b8789c626cb4e0bd78c3de"; 63 + sha256 = "0nw0mdcs75ghr9a5asrk9a7yc00703yvv4xf6wyd3z44ihs4hrjv"; 64 + }; 65 + } 66 + { 67 + goPackagePath = "github.com/joho/godotenv"; 68 + fetch = { 69 + type = "git"; 70 + url = "https://github.com/joho/godotenv"; 71 + rev = "5c0e6c6ab1a0a9ef0a8822cba3a05d62f7dad941"; 72 + sha256 = "0zfs69q7f5xlkqhd4wzjc8gfdisahapz5g94sa8lzr5b4jg9ycbw"; 19 73 }; 20 74 } 21 75 { ··· 23 77 fetch = { 24 78 type = "git"; 25 79 url = "https://github.com/juju/errors"; 26 - rev = "089d3ea4e4d597bd98acac068193d341983326a3"; 27 - sha256 = "056za75j1zgksky7pbf0pkjqz5ha15g3wj3p4ma10m9sywdyq79r"; 80 + rev = "e65537c515d77e35697c471d6c2755375cb3adc4"; 81 + sha256 = "119806fhl4isbxc3g52335jgiv6cddfbapr1absd4v4kkq55i5qh"; 82 + }; 83 + } 84 + { 85 + goPackagePath = "github.com/karrick/godirwalk"; 86 + fetch = { 87 + type = "git"; 88 + url = "https://github.com/karrick/godirwalk"; 89 + rev = "73c17a9b9528eb3ce857b782a2816c0cda581e62"; 90 + sha256 = "0l0m5zi2mf649knxgmch1cblz3a3xiny1c9ki2241phkpwzspjq1"; 28 91 }; 29 92 } 30 93 { ··· 32 95 fetch = { 33 96 type = "git"; 34 97 url = "https://github.com/lxc/lxd"; 35 - rev = "5507ca02c639b378290402c7d33911a90caa4f9e"; 36 - sha256 = "08h6ycnq43zhkzlrfvk656d1xqjbxhz6dpqmzcmrkb3pw0h0f8hg"; 98 + rev = "fd924cb85d99475f9a0349208a8d7d0f30bdb6f0"; 99 + sha256 = "1v246x0bi6ljkfjfjkfjbfh0imfbps2zd0m55cxdsl8y96pfx1hs"; 100 + }; 101 + } 102 + { 103 + goPackagePath = "github.com/mudler/docker-companion"; 104 + fetch = { 105 + type = "git"; 106 + url = "https://github.com/mudler/docker-companion"; 107 + rev = "6a693e9b9eaf2cd08ba628350613f2e08e9af57d"; 108 + sha256 = "06ch1xhfd62dwkmh1z0ihifpmvgnki97k8s7gzivincy80xj0xpc"; 37 109 }; 38 110 } 39 111 { ··· 41 113 fetch = { 42 114 type = "git"; 43 115 url = "https://github.com/pkg/errors"; 44 - rev = "059132a15dd08d6704c67711dae0cf35ab991756"; 45 - sha256 = "0bxkbh2rq40kdk8i05am5np77cnskx3571v2k300j5mmj1rl1ijg"; 116 + rev = "27936f6d90f9c8e1145f11ed52ffffbfdb9e0af7"; 117 + sha256 = "0yzmgi6g4ak4q8y7w6x0n5cbinlcn8yc3gwgzy4yck00qdn25d6y"; 118 + }; 119 + } 120 + { 121 + goPackagePath = "github.com/rogpeppe/go-internal"; 122 + fetch = { 123 + type = "git"; 124 + url = "https://github.com/rogpeppe/go-internal"; 125 + rev = "3670dca80da881cddd5377fb9496daaabb8dec9f"; 126 + sha256 = "0h01adrajbl3h0yx3bkig79ap9n6ikz90cpszhqwvgr63a0xbn13"; 127 + }; 128 + } 129 + { 130 + goPackagePath = "github.com/sirupsen/logrus"; 131 + fetch = { 132 + type = "git"; 133 + url = "https://github.com/sirupsen/logrus"; 134 + rev = "07a84ee7412e7a28663d92930a1d46f81b124ee1"; 135 + sha256 = "00hms8fnbhxb5lir3ykhl5lf1n2yqxddmd47cxp6d5ziv6k5swc8"; 46 136 }; 47 137 } 48 138 { ··· 50 140 fetch = { 51 141 type = "git"; 52 142 url = "https://github.com/spf13/cobra"; 53 - rev = "d2d81d9a96e23f0255397222bb0b4e3165e492dc"; 54 - sha256 = "14nhpiyhz2lm468y5sm1vyxks5aky12kmbhmqq319s92lkm494cy"; 143 + rev = "2d7544ebdeb5f926805c57af8dccc6c359de28d4"; 144 + sha256 = "04b2bq8g948mn020l4cwhdnqffag29r21x2nyyg6cjqj306gs4vs"; 55 145 }; 56 146 } 57 147 { ··· 59 149 fetch = { 60 150 type = "git"; 61 151 url = "https://github.com/spf13/pflag"; 62 - rev = "aea12ed6721610dc6ed40141676d7ab0a1dac9e9"; 63 - sha256 = "17p5k37bnzj6wfh000y7xpvxyv2wsfa3db9sm8da2frjvn7jgbp2"; 152 + rev = "24fa6976df40757dce6aea913e7b81ade90530e1"; 153 + sha256 = "0rf6prz6gl0l1b3wijzdgq887cdwigvzxvz6gqbm5l8pkq3fx1m9"; 154 + }; 155 + } 156 + { 157 + goPackagePath = "golang.org/x/crypto"; 158 + fetch = { 159 + type = "git"; 160 + url = "https://go.googlesource.com/crypto"; 161 + rev = "4def268fd1a49955bfb3dda92fe3db4f924f2285"; 162 + sha256 = "1bfsnari529gw34cz0zqk3d9mrkcj1ay35kangri8kbgll0ss5a6"; 163 + }; 164 + } 165 + { 166 + goPackagePath = "golang.org/x/net"; 167 + fetch = { 168 + type = "git"; 169 + url = "https://go.googlesource.com/net"; 170 + rev = "da137c7871d730100384dbcf36e6f8fa493aef5b"; 171 + sha256 = "1qsiyr3irmb6ii06hivm9p2c7wqyxczms1a9v1ss5698yjr3fg47"; 172 + }; 173 + } 174 + { 175 + goPackagePath = "golang.org/x/sys"; 176 + fetch = { 177 + type = "git"; 178 + url = "https://go.googlesource.com/sys"; 179 + rev = "fae7ac547cb717d141c433a2a173315e216b64c4"; 180 + sha256 = "11pl0dycm5d8ar7g1l1w5q2cx0lms8i15n8mxhilhkdd2xpmh8f0"; 181 + }; 182 + } 183 + { 184 + goPackagePath = "golang.org/x/text"; 185 + fetch = { 186 + type = "git"; 187 + url = "https://go.googlesource.com/text"; 188 + rev = "342b2e1fbaa52c93f31447ad2c6abc048c63e475"; 189 + sha256 = "0flv9idw0jm5nm8lx25xqanbkqgfiym6619w575p7nrdh0riqwqh"; 190 + }; 191 + } 192 + { 193 + goPackagePath = "gopkg.in/antchfx/htmlquery.v1"; 194 + fetch = { 195 + type = "git"; 196 + url = "https://gopkg.in/antchfx/htmlquery.v1"; 197 + rev = "b8d36292614567671decfe6f96c7b8c432d3249b"; 198 + sha256 = "1rsvngqlqyg86g1ff59zmrkn7s8b3c2vpl533amwcv5s2h8npmxy"; 64 199 }; 65 200 } 66 201 {
+1
pkgs/top-level/aliases.nix
··· 124 124 go-pup = pup; # added 2017-12-19 125 125 gobjectIntrospection = gobject-introspection; # added 2018-12-02 126 126 goimports = gotools; # added 2018-09-16 127 + google-gflags = gflags; # added 2019-07-25 127 128 googleAuthenticator = google-authenticator; # added 2016-10-16 128 129 grantlee5 = libsForQt5.grantlee; # added 2015-12-19 129 130 gsettings_desktop_schemas = gsettings-desktop-schemas; # added 2018-02-25
+64 -16
pkgs/top-level/all-packages.nix
··· 553 553 554 554 ansifilter = callPackage ../tools/text/ansifilter {}; 555 555 556 - antora = nodePackages_10_x."@antora/cli"; 556 + antora = callPackage ../development/tools/documentation/antora {}; 557 557 558 558 apktool = callPackage ../development/tools/apktool { 559 559 inherit (androidenv.androidPkgs_9_0) build-tools; ··· 662 662 awless = callPackage ../tools/virtualization/awless { }; 663 663 664 664 brakeman = callPackage ../development/tools/analysis/brakeman { }; 665 + 666 + brewtarget = libsForQt5.callPackage ../applications/misc/brewtarget { } ; 665 667 666 668 ec2_api_tools = callPackage ../tools/virtualization/ec2-api-tools { }; 667 669 ··· 855 857 khd = callPackage ../os-specific/darwin/khd { 856 858 inherit (darwin.apple_sdk.frameworks) Carbon Cocoa; 857 859 }; 860 + 861 + kjv = callPackage ../applications/misc/kjv { }; 858 862 859 863 luigi = callPackage ../applications/networking/cluster/luigi { }; 860 864 ··· 1259 1263 cdemu-client = callPackage ../misc/emulators/cdemu/client.nix { }; 1260 1264 1261 1265 ceres-solver = callPackage ../development/libraries/ceres-solver { 1262 - google-gflags = null; # only required for examples/tests 1266 + gflags = null; # only required for examples/tests 1263 1267 }; 1264 1268 1265 1269 gcdemu = callPackage ../misc/emulators/cdemu/gui.nix { }; ··· 2147 2151 }; 2148 2152 2149 2153 citrix_workspace_unwrapped = callPackage ../applications/networking/remote/citrix-workspace { }; 2154 + citrix_workspace_unwrapped_19_6_0 = citrix_workspace_unwrapped.override { version = "19.6.0"; }; 2150 2155 citrix_workspace_unwrapped_19_3_0 = citrix_workspace_unwrapped.override { version = "19.3.0"; }; 2151 2156 2152 2157 citrix_workspace = callPackage ../applications/networking/remote/citrix-workspace/wrapper.nix { 2153 2158 citrix_workspace = citrix_workspace_unwrapped; 2154 2159 }; 2160 + citrix_workspace_19_6_0 = callPackage ../applications/networking/remote/citrix-workspace/wrapper.nix { 2161 + citrix_workspace = citrix_workspace_unwrapped_19_6_0; 2162 + }; 2155 2163 citrix_workspace_19_3_0 = callPackage ../applications/networking/remote/citrix-workspace/wrapper.nix { 2156 2164 citrix_workspace = citrix_workspace_unwrapped_19_3_0; 2157 2165 }; ··· 2688 2696 s-tar = callPackage ../tools/archivers/s-tar {}; 2689 2697 2690 2698 sonota = callPackage ../tools/misc/sonota { }; 2699 + 2700 + sonobuoy = callPackage ../applications/networking/cluster/sonobuoy { }; 2691 2701 2692 2702 tealdeer = callPackage ../tools/misc/tealdeer { }; 2693 2703 ··· 3672 3682 3673 3683 heimdall-gui = heimdall.override { enableGUI = true; }; 3674 3684 3685 + helio-workstation = callPackage ../applications/audio/helio-workstation { }; 3686 + 3675 3687 hevea = callPackage ../tools/typesetting/hevea { }; 3676 3688 3677 3689 hexd = callPackage ../tools/misc/hexd { }; ··· 4003 4015 kakoune-unwrapped = callPackage ../applications/editors/kakoune { }; 4004 4016 kakoune = wrapKakoune kakoune-unwrapped { }; 4005 4017 4018 + kak-lsp = callPackage ../tools/misc/kak-lsp { }; 4019 + 4006 4020 kbdd = callPackage ../applications/window-managers/kbdd { }; 4007 4021 4008 4022 kdbplus = pkgsi686Linux.callPackage ../applications/misc/kdbplus { }; ··· 4047 4061 kismet = callPackage ../applications/networking/sniffers/kismet { }; 4048 4062 4049 4063 klick = callPackage ../applications/audio/klick { }; 4064 + 4065 + klystrack = callPackage ../applications/audio/klystrack { }; 4050 4066 4051 4067 knockknock = callPackage ../tools/security/knockknock { }; 4052 4068 ··· 5308 5324 pinentry = callPackage ../tools/security/pinentry { 5309 5325 libcap = if stdenv.isDarwin then null else libcap; 5310 5326 gcr = null; 5327 + qt4 = null; 5328 + qt5 = null; 5311 5329 }; 5312 5330 5313 5331 pinentry_ncurses = res.pinentry.override { ··· 5323 5341 }; 5324 5342 5325 5343 pinentry_qt4 = res.pinentry.override { 5326 - qt = qt4; 5344 + gtk2 = null; 5345 + inherit qt4; 5327 5346 }; 5328 5347 5329 5348 pinentry_qt5 = res.pinentry.override { 5330 - qt = qt5.qtbase; 5349 + gtk2 = null; 5350 + inherit qt5; 5331 5351 }; 5332 5352 5333 5353 pinentry_mac = callPackage ../tools/security/pinentry/mac.nix { ··· 6257 6277 thc-hydra = callPackage ../tools/security/thc-hydra { }; 6258 6278 6259 6279 theharvester = callPackage ../tools/security/theharvester { }; 6280 + 6281 + inherit (nodePackages) thelounge; 6260 6282 6261 6283 thefuck = python3Packages.callPackage ../tools/misc/thefuck { }; 6262 6284 ··· 8119 8141 }; 8120 8142 cargo-sweep = callPackage ../development/tools/rust/cargo-sweep { }; 8121 8143 cargo-xbuild = callPackage ../development/tools/rust/cargo-xbuild { }; 8144 + cargo-generate = callPackage ../development/tools/rust/cargo-generate { 8145 + inherit (darwin.apple_sdk.frameworks) Security; 8146 + }; 8122 8147 8123 8148 pyo3-pack = callPackage ../development/tools/rust/pyo3-pack { }; 8124 8149 rainicorn = callPackage ../development/tools/rust/rainicorn { }; 8125 - rls = callPackage ../development/tools/rust/rls { }; 8150 + rls = callPackage ../development/tools/rust/rls { 8151 + inherit (darwin.apple_sdk.frameworks) CoreFoundation Security; 8152 + }; 8126 8153 rustfmt = callPackage ../development/tools/rust/rustfmt { }; 8127 8154 rustracer = callPackage ../development/tools/rust/racer { }; 8128 8155 rustracerd = callPackage ../development/tools/rust/racerd { }; ··· 9677 9704 9678 9705 redo = callPackage ../development/tools/build-managers/redo { }; 9679 9706 9707 + redo-apenwarr = callPackage ../development/tools/build-managers/redo-apenwarr { }; 9708 + 9680 9709 redo-sh = callPackage ../development/tools/build-managers/redo-sh { }; 9681 9710 9682 9711 reno = callPackage ../development/tools/reno { }; ··· 9803 9832 9804 9833 teensy-loader-cli = callPackage ../development/tools/misc/teensy-loader-cli { }; 9805 9834 9835 + terraform-lsp = callPackage ../development/tools/misc/terraform-lsp { }; 9836 + 9806 9837 texinfo413 = callPackage ../development/tools/misc/texinfo/4.13a.nix { }; 9807 9838 texinfo4 = texinfo413; 9808 9839 texinfo5 = callPackage ../development/tools/misc/texinfo/5.2.nix { }; ··· 10747 10778 goocanvas2 = callPackage ../development/libraries/goocanvas/2.x.nix { }; 10748 10779 goocanvasmm2 = callPackage ../development/libraries/goocanvasmm { }; 10749 10780 10750 - google-gflags = callPackage ../development/libraries/google-gflags { }; 10751 - gflags = google-gflags; # TODO: move to aliases.nix 10781 + gflags = callPackage ../development/libraries/gflags { }; 10752 10782 10753 10783 gperftools = callPackage ../development/libraries/gperftools { }; 10754 10784 ··· 17019 17049 17020 17050 bitcoin = altcoins.bitcoin; 17021 17051 clightning = altcoins.clightning; 17052 + lnd = altcoins.lnd; 17022 17053 17023 17054 bitcoin-xt = altcoins.bitcoin-xt; 17024 17055 cryptop = altcoins.cryptop; ··· 17086 17117 17087 17118 baresip = callPackage ../applications/networking/instant-messengers/baresip { }; 17088 17119 17089 - barrier = callPackage ../applications/misc/barrier {}; 17120 + barrier = libsForQt5.callPackage ../applications/misc/barrier {}; 17090 17121 17091 17122 bashSnippets = callPackage ../applications/misc/bashSnippets { }; 17092 17123 ··· 17144 17175 bitwig-studio2 = callPackage ../applications/audio/bitwig-studio/bitwig-studio2.nix { 17145 17176 inherit (pkgs) bitwig-studio1; 17146 17177 }; 17147 - bitwig-studio = bitwig-studio2; 17178 + bitwig-studio3 = callPackage ../applications/audio/bitwig-studio/bitwig-studio3.nix { 17179 + inherit (pkgs) bitwig-studio1; 17180 + }; 17181 + bitwig-studio = bitwig-studio3; 17148 17182 17149 17183 bgpdump = callPackage ../tools/networking/bgpdump { }; 17150 17184 ··· 17792 17826 }; 17793 17827 17794 17828 external = { 17795 - inherit (haskellPackages) ghc-mod structured-haskell-mode Agda hindent; 17829 + inherit (haskellPackages) 17830 + ghc-mod structured-haskell-mode Agda hindent; 17796 17831 inherit (pythonPackages) elpy; 17797 17832 inherit 17798 - autoconf automake git libffi libpng pkgconfig poppler rtags w3m zlib 17799 - substituteAll rustPlatform cmake llvmPackages libtool zeromq; 17833 + autoconf automake editorconfig-core-c git libffi libpng pkgconfig 17834 + poppler rtags w3m zlib substituteAll rustPlatform cmake llvmPackages 17835 + libtool zeromq; 17800 17836 }; 17801 17837 }; 17802 17838 ··· 18520 18556 18521 18557 spectral = qt5.callPackage ../applications/networking/instant-messengers/spectral { }; 18522 18558 18559 + spotifyd = callPackage ../applications/audio/spotifyd { 18560 + withALSA = stdenv.isLinux; 18561 + withPulseAudio = config.pulseaudio or true; 18562 + withPortAudio = stdenv.isDarwin; 18563 + }; 18564 + 18523 18565 super-productivity = callPackage ../applications/networking/super-productivity { }; 18524 18566 18525 18567 wlc = callPackage ../development/libraries/wlc { }; ··· 19416 19458 githubSupport = true; 19417 19459 mpdSupport = true; 19418 19460 pulseSupport = true; 19419 - iwSupport = true; 19461 + iwSupport = false; 19420 19462 nlSupport = true; 19421 19463 i3Support = true; 19422 - i3GapsSupport = true; 19464 + i3GapsSupport = false; 19423 19465 }; 19424 19466 19425 19467 ptex = callPackage ../development/libraries/ptex {}; ··· 19851 19893 19852 19894 properties-cpp = callPackage ../development/libraries/properties-cpp { }; 19853 19895 19854 - protonmail-bridge = libsForQt511.callPackage ../applications/networking/protonmail-bridge { }; 19896 + protonmail-bridge = libsForQt512.callPackage ../applications/networking/protonmail-bridge { }; 19855 19897 19856 19898 protonvpn-cli = callPackage ../applications/networking/protonvpn-cli { }; 19857 19899 ··· 20670 20712 20671 20713 trayer = callPackage ../applications/window-managers/trayer { }; 20672 20714 20715 + tree-from-tags = callPackage ../applications/audio/tree-from-tags { }; 20716 + 20673 20717 tdrop = callPackage ../applications/misc/tdrop { }; 20674 20718 20675 20719 tree = callPackage ../tools/system/tree {}; ··· 21341 21385 inherit (gnome2) scrollkeeper libglade; 21342 21386 }; 21343 21387 21388 + xygrib = libsForQt5.callPackage ../applications/misc/xygrib/default.nix {}; 21389 + 21344 21390 xzgv = callPackage ../applications/graphics/xzgv { }; 21345 21391 21346 21392 yabar = callPackage ../applications/window-managers/yabar { }; ··· 22496 22542 22497 22543 emboss = callPackage ../applications/science/biology/emboss { }; 22498 22544 22545 + est-sfs = callPackage ../applications/science/biology/est-sfs { }; 22546 + 22499 22547 ezminc = callPackage ../applications/science/biology/EZminc { }; 22500 22548 22501 22549 exonerate = callPackage ../applications/science/biology/exonerate { }; ··· 22688 22736 mathematica = callPackage ../applications/science/math/mathematica { }; 22689 22737 mathematica9 = callPackage ../applications/science/math/mathematica/9.nix { }; 22690 22738 mathematica10 = callPackage ../applications/science/math/mathematica/10.nix { }; 22739 + mathematica11 = callPackage ../applications/science/math/mathematica/11.nix { }; 22691 22740 22692 22741 metis = callPackage ../development/libraries/science/math/metis {}; 22693 22742 ··· 24446 24495 dapper = callPackage ../development/tools/dapper { }; 24447 24496 24448 24497 kube3d = callPackage ../applications/networking/cluster/kube3d {}; 24449 - 24450 24498 }
+4
pkgs/top-level/python-packages.nix
··· 1123 1123 1124 1124 spglib = callPackage ../development/python-modules/spglib { }; 1125 1125 1126 + sshpubkeys = callPackage ../development/python-modules/sshpubkeys { }; 1127 + 1126 1128 sslib = callPackage ../development/python-modules/sslib { }; 1127 1129 1128 1130 statistics = callPackage ../development/python-modules/statistics { }; ··· 4660 4662 serpy = callPackage ../development/python-modules/serpy { }; 4661 4663 4662 4664 setuptools_scm = callPackage ../development/python-modules/setuptools_scm { }; 4665 + 4666 + setuptools-scm-git-archive = callPackage ../development/python-modules/setuptools-scm-git-archive { }; 4663 4667 4664 4668 serverlessrepo = callPackage ../development/python-modules/serverlessrepo { }; 4665 4669