Commit graph

48214 commits

Author SHA1 Message Date
R. RyanTM cf74b2f737 obsidian: 0.9.1 -> 0.9.4 2020-10-25 23:49:23 +00:00
Vladimír Čunát c778945806
Revert "Merge #101508: libraw: 0.20.0 -> 0.20.2"
I'm sorry; I didn't notice it contained staging commits.

This reverts commit 17f5305b6c, reversing
changes made to a8a018ddc0.
2020-10-25 09:41:51 +01:00
R. RyanTM 4614342aae xmrig-proxy: 5.11.0 -> 6.3.0 2020-10-25 09:41:09 +01:00
R. RyanTM 6a42a70023 open-vm-tools: 11.1.0 -> 11.1.5 2020-10-25 09:39:40 +01:00
Vladimír Čunát 17f5305b6c
Merge #101508: libraw: 0.20.0 -> 0.20.2 2020-10-25 09:28:53 +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
Andreas Rammhold 250fb4611f
Merge pull request #100456 from maralorn/boolToString
treewide: De-inline uses of lib.boolToString
2020-10-25 00:45:11 +02:00
Lassulus a020c1b591
Merge pull request #101536 from kmein/feature/opustags
opustags: init at 1.3.0
2020-10-24 23:39:16 +02:00
Ryan Mulligan 43ddf205c5
Merge pull request #101573 from r-ryantm/auto-update/dstask
dstask: 0.21 -> 0.22
2020-10-24 14:08:20 -07: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
Kierán Meinhardt af0eab7a79 opustags: init at 1.3.0 2020-10-24 21:11:25 +02:00
Daniël de Kok 793a236e4c
Merge pull request #101483 from Flakebi/birdtray
birdtray: 1.8.1 -> 1.9.0
2020-10-24 20:42:28 +02:00
Michael Weiss 253c9cb0b8
tdesktop: 2.4.3 -> 2.4.4 2020-10-24 20:22:56 +02:00
Maximilian Bosch 12b7217fba
Merge pull request #101564 from jojosch/dbeaver-7.2.3
dbeaver: 7.2.2 -> 7.2.3
2020-10-24 18:19:08 +02:00
R. RyanTM 76a15c71b6 dstask: 0.21 -> 0.22 2020-10-24 16:13:30 +00:00
Michael Weiss 26dbf31f49
Merge pull request #101555 from meutraa/update/android-studio-canary
androidStudioPackages.{canary,dev}: 4.2.0.13 -> 4.2.0.14
2020-10-24 18:06:17 +02:00
Johannes Schleifenbaum 3d3e792965
dbeaver: 7.2.2 -> 7.2.3 2020-10-24 17:32:41 +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
meutraa eb7e78ee99
androidStudioPackages.{canary,dev}: 4.2.0.13 -> 4.2.0.14 2020-10-24 15:02:26 +01:00
Anderson Torres db2c904c3c
Merge pull request #100294 from pniedzwiedzinski/amfora-desktop
amfora: Add desktop file
2020-10-24 08:50:44 -03:00
Anderson Torres 2dfad07d44
Merge pull request #99494 from jb55/barrier_2_3_3
barrier: 2.3.2 -> 2.3.3
2020-10-24 08:49:29 -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
Ryan Burns c58233a34a blugon: fix build on darwin 2020-10-23 18:06:36 -07:00
Andreas Rammhold 582f622f6c
Merge pull request #101481 from makefu/pkgs/cozy/0.7.2
cozy-audiobooks: 0.6.7 -> 0.7.2
2020-10-23 23:59:44 +02:00
Andreas Rammhold b0f9c2b4e1
Merge pull request #101498 from TredwellGit/mumble
mumble: 1.3.2 -> 1.3.3 (security)
2020-10-23 23:26:41 +02:00
WilliButz 993437d0d6
Merge pull request #96511 from Zopieux/rtl_433_prom
Add rtl_433 Prometheus exporter
2020-10-23 23:24:38 +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
Kevin Cox 7eddff6821
Merge pull request #99931 from sikmir/cudatext
cudatext: 1.111.0 -> 1.115.0
2020-10-23 15:23:25 -04:00
Michael Weiss de32261d9f
git: 2.29.0 -> 2.29.1 (#101488) 2020-10-23 20:55:30 +02:00
Flakebi 8995b667c3
birdtray: 1.8.1 -> 1.9.0 2020-10-23 20:09:46 +02:00
makefu fabf544001
cozy-audiobooks: 0.6.7 -> 0.7.2 2020-10-23 20:02:44 +02:00
Michael Weiss 7c76eafdb7
chromiumDev: Mark as broken for now 2020-10-23 19:47:43 +02:00
Graham Christensen 4770d412c9
Merge pull request #101470 from endocrimes/dani/bump-p4
p4: 2020.1.1991450 -> 2020.1.2007551
2020-10-23 12:17:10 -04: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
Danielle Lancashire b197c7fb48 p4: 2020.1.1991450 -> 2020.1.2007551
The download URL hasn't changed, but the sha256 and user facing download
version has. See [perforce downloads][p4-download].

[p4-download]: https://www.perforce.com/downloads/helix-command-line-client-p4
2020-10-23 16:24:13 +02:00
Sandro Jäckel e44cc1404b docker: use upstream repo for containerd
http://github.com/docker/containerd is archived and redirects to
https://github.com/docker-archive/containerd.

To make updates easier track the upstream repo which Docker uses.
2020-10-24 00:12:06 +10: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
Vincent Laporte 2cb651ad14 cryptoverif: 2.01pl1 → 2.03pl1 2020-10-23 10:20:09 +02:00