Commit graph

13072 commits

Author SHA1 Message Date
Ben Siraphob db74029e3e treewide: remove package names from prefix of descriptions 2020-10-27 09:15:07 -07:00
Mario Rodas 090f2cdf76
Merge pull request #101659 from r-ryantm/auto-update/helmfile
helmfile: 0.131.0 -> 0.132.1
2020-10-27 06:44:29 -05:00
Mario Rodas c9494fc911
Merge pull request #101656 from r-ryantm/auto-update/gomuks
gomuks: 0.2.0 -> 0.2.1
2020-10-27 06:43:52 -05:00
Samuel Dionne-Riel 9119d715dc
Merge pull request #101204 from samueldr/fix/rsync-cross-compilation-regression
rsync: Work around upstream cross-compilation issue
2020-10-26 15:05:10 -04:00
Vincent Laporte a2b7bad6c8 ocamlPackages.google-drive-ocamlfuse: 0.7.21 → 0.7.22 2020-10-26 06:09:43 +01:00
Jan Tojnar 3825e74193 treewide: drop gnome2.pango alias 2020-10-25 23:48:29 +01:00
Ryan Mulligan b6dde82536
Merge pull request #101693 from r-ryantm/auto-update/minikube
minikube: 1.14.0 -> 1.14.1
2020-10-25 15:21:06 -07:00
Christian Kampka b42b8c1396
kops_1_18: 1.18.1 -> 1.18.2 (#101692) 2020-10-25 22:13:15 +00:00
R. RyanTM dab7064970 minikube: 1.14.0 -> 1.14.1 2020-10-25 21:18:39 +00:00
Maximilian Bosch 2543fb203b
Merge pull request #101640 from erictapen/tor-browser-bundle-bin-10.0.2
tor-browser-bundle-bin: 10.0.1 -> 10.0.2
2020-10-25 19:27:57 +01:00
R. RyanTM 74ae6e1209 helmfile: 0.131.0 -> 0.132.1 2020-10-25 15:38:58 +00:00
Lucas Ransan ce383a1985 ssh-chat: 1.9 -> 1.10 2020-10-25 11:12:39 -04:00
R. RyanTM 11eb8167b1 gomuks: 0.2.0 -> 0.2.1 2020-10-25 15:03:21 +00:00
Justin Humm 03d85e8aac
tor-browser-bundle-bin: 10.0.1 -> 10.0.2 2020-10-25 12:00:15 +01:00
Frederik Rietdijk cb6357d2b1
Merge pull request #100965 from r-ryantm/auto-update/helmsman
helmsman: 3.4.4 -> 3.4.6
2020-10-25 09:50:32 +01:00
bqv be17edc6f6 pkgs.nyxt: init at 2020-10-23 2020-10-25 08:56:12 +01:00
lewo 68f03380b2
Merge pull request #101393 from 06kellyjac/tekton-cli_0.13.1
tektoncd-cli: 0.13.0 -> 0.13.1
2020-10-25 08:07:46 +01:00
Jörg Thalheim 2f31499703
Merge pull request #101611 from stigtsp/package/firefox-bin-82.0
firefox-bin: 81.0.2 -> 82.0
2020-10-25 07:32:30 +01:00
Jörg Thalheim c8bccb080b
Merge pull request #101624 from taku0/fix_update_nix_for_82
firefox-bin: fix update.nix freezing
2020-10-25 07:31:49 +01:00
taku0 4eacc3784f firefox-bin: fix update.nix freezing
https://github.com/NixOS/nixpkgs/pull/98338#issuecomment-716070078
2020-10-25 13:48:42 +09:00
Benjamin Hipple 64a620f8d3
Merge pull request #101418 from arcnmx/terraform-providers-github
terraform-providers.github: 2.8.0 -> 3.1.0
2020-10-24 23:10:13 -04:00
Stig Palmquist 728b984d57
firefox-bin: 81.0.2 -> 82.0 2020-10-25 01:22:03 +02:00
Mario Rodas da8c8a2d34
Merge pull request #100537 from wilsonehusin/sonobuoy-0.19
sonobuoy: 0.16.1 -> 0.19.1
2020-10-24 14:29:14 -05:00
Mario Rodas 002c634339
Merge pull request #101448 from 06kellyjac/terragrunt_0.25.5
terragrunt: 0.25.4 -> 0.25.5
2020-10-24 14:14:06 -05:00
Michael Weiss 253c9cb0b8
tdesktop: 2.4.3 -> 2.4.4 2020-10-24 20:22:56 +02:00
StigP 7ecdf141d2
Merge pull request #98338 from Atemu/firefox-bin-update-fix
firefox-bin/update: fix
2020-10-24 14:42:01 +00:00
Anderson Torres db2c904c3c
Merge pull request #100294 from pniedzwiedzinski/amfora-desktop
amfora: Add desktop file
2020-10-24 08:50:44 -03:00
TredwellGit 2bb011032c
chromium: use official build settings (#101467)
LLD: https://lld.llvm.org/
When you link a large program on a multicore machine, you can expect that LLD runs more than twice as fast as the GNU gold linker. Your mileage may vary, though.
Link-time optimization (LTO) is supported by default.
Some default settings have been tuned for the 21st century. For example, the stack is marked as non-executable by default to tighten security.

LTO & ThinLTO: https://clang.llvm.org/docs/ThinLTO.html
LTO (Link Time Optimization) achieves better runtime performance through whole-program analysis and cross-module optimization. However, monolithic LTO implements this by merging all input into a single module, which is not scalable in time or memory, and also prevents fast incremental compiles. ThinLTO is a new approach that is designed to scale like a non-LTO build, while retaining most of the performance achievement of full LTO.

PGO: https://llvm.org/docs/HowToBuildWithPGO.html https://blog.chromium.org/2020/08/chrome-just-got-faster-with-profile.html
Allows your compiler to better optimize code for how it actually runs. Users report that applying this to Clang and LLVM can decrease overall compile time by 20%.
Because PGO uses real usage scenarios that match the workflows of Chrome users around the world, the most common tasks get prioritized and made faster. Delivers up to 10% faster page loads.

CFI: https://clang.llvm.org/docs/ControlFlowIntegrity.html https://www.chromium.org/developers/testing/control-flow-integrity
Aborts the program upon detecting certain forms of undefined behavior that can potentially allow attackers to subvert the program’s control flow. These schemes have been optimized for performance, allowing developers to enable them in release builds.
By default, a program compiled with CFI will crash with SIGILL if it detects a CFI violation.

Additionally:
Use minizip instead of zlib. Chromium says zlib but actually uses minizip.
Remove old unused workarounds.
Make shell scripts POSIX compliant.
Update documentation URLs.
Prepare for using system libraries.
2020-10-24 12:27:40 +02:00
Vladimír Čunát c0a646edd0
Merge #101380: thunderbird*: 78.3.2 -> 78.4.0 2020-10-24 09:16:36 +02:00
TredwellGit 1bc72b3494 mumble: 1.3.2 -> 1.3.3
https://github.com/mumble-voip/mumble/releases/tag/1.3.3
2020-10-23 20:35:27 +00:00
Michael Weiss 7c76eafdb7
chromiumDev: Mark as broken for now 2020-10-23 19:47:43 +02:00
Michael Weiss 50a2f50acb
chromiumDev: 88.0.4292.2 -> 88.0.4298.4
This should also fix VA-API for chromiumBeta (though that part needs
some cleanup). However, chromiumDev likely still fails due to the
absence of dirmd (not included in the tarball so far, we might have to
package and add it as a dependency).
2020-10-23 17:49:46 +02:00
Kevin Cox 6cbef452b0
Merge pull request #100685 from buckley310/brave
brave: 1.12.112 -> 1.15.76
2020-10-23 11:31:55 -04:00
Michael Weiss b36db49ae7
chromium: Add some brief documentation
Wanted to do this for a long time to collect important knowledge and
make it easier to pass maintainership.
Only time will tell if this'll be useful or become outdated instead.
2020-10-23 11:39:05 +02:00
06kellyjac 10c152cb58 terragrunt: 0.25.4 -> 0.25.5 2020-10-23 09:50:15 +01:00
06kellyjac 268f5110f6 terragrunt: add jk as a maintainer
Add jk (myself) as a maintainer for terragrunt
2020-10-23 09:49:41 +01:00
06kellyjac 200bf0a3af terragrunt: clean and sort arguments
lib was already imported so no need for stdenv.lib
sorted arguments into order of use
2020-10-23 09:48:39 +01:00
Andreas Rammhold e7a4b3df43
Merge pull request #101434 from andir/firefox-disable-lto
firefox: disable LTO by default due to segfaults with wayland
2020-10-23 03:58:12 +02:00
Sean Buckley 61e2d90486 brave: 1.12.112 -> 1.15.76 2020-10-22 21:05:20 -04:00
Ryan Mulligan ff23aaed3a
Merge pull request #101299 from r-ryantm/auto-update/argo
argo: 2.11.5 -> 2.11.6
2020-10-22 18:04:48 -07:00
Andreas Rammhold bca15c82d8 firefox: disable LTO by default due to segfaults with wayland
As discussed in #101429 firefox 82 started crashing when used with
wayland. A brief investigation showed that this appears to be rooted
within the LTO support that was recently added to the package. For the
time being, until someone figures out where the crashes are coming from,
we can just disable LTO.
2020-10-23 02:51:46 +02:00
arcnmx c603dae70d terraform-providers.github: 2.8.0 -> 3.1.0 2020-10-22 14:47:16 -07:00
06kellyjac a7c1563b03 tektoncd-cli: 0.13.0 -> 0.13.1 2020-10-22 16:55:29 +01:00
Anderson Torres 02e4a0e65f
Merge pull request #95320 from mstrangfeld/tektoncd-cli
tektoncd-cli: init at 0.13.0
2020-10-22 12:15:38 -03:00
Marek Mahut 67496d2bb5
Merge pull request #101375 from 1000101/terraform-providers_vultr
terraform-providers: vultr 1.3.0 -> 1.4.1
2020-10-22 16:55:40 +02:00
Mario Rodas 77fd054bc2
Merge pull request #101313 from marsam/update-terraform_0_13
terraform_0_13: 0.13.4 -> 0.13.5
2020-10-22 09:37:44 -05:00
taku0 a1ad05b45c thunderbird-bin: 78.3.2 -> 78.4.0 2020-10-22 22:41:21 +09:00
1000101 f5a852941e terraform-providers: vultr 1.3.0 -> 1.4.1 2020-10-22 15:37:33 +02:00
Michael Raskin bb7e76bebb
alpine: 2.23 -> 2.24 (#101318) 2020-10-22 12:56:04 +00:00
Michael Weiss d8cbc9d331
signal-desktop: 1.37.1 -> 1.37.2 2020-10-22 13:36:12 +02:00