Commit graph

15001 commits

Author SHA1 Message Date
Sandro Jäckel 68fd9864ea
fractal: mark broken 2021-03-17 22:55:09 +01:00
R. RyanTM d1d081daee
brave: 1.21.76 -> 1.21.77 (#116597) 2021-03-17 20:28:17 +01:00
Maximilian Bosch 1df1bb812e
Merge pull request #116449 from TredwellGit/element
element: 1.7.22 -> 1.7.23
2021-03-17 19:20:54 +01:00
Markus S. Wamser 41f345cbfc teams: reorder arguments produced by wrapper
this fixes launching meetings from links
2021-03-17 15:32:02 +01:00
Michael Weiss 5e42fea124
chromiumBeta,chromiumDev: Mark as broken
The builds currently fail with (should work with LLVM 12 [0]):
../../base/check.h:88:3: error: 'nomerge' attribute cannot be applied to a declaration
  NOMERGE ~CheckError();
  ^       ~
../../base/compiler_specific.h:344:19: note: expanded from macro 'NOMERGE'
#define NOMERGE [[clang::nomerge]]
                  ^
1 error generated.

[0]: fb0f728805
2021-03-17 15:04:53 +01:00
Jan Tojnar 1b70a02481
Merge pull request #114879 from Pacman99/calls-update
calls: 0.2.0 -> 0.3.1, callaudiod: 0.0.4 -> 0.1.0
2021-03-17 10:55:30 +01:00
Fabian Affolter 52e53ff09b
Merge pull request #116313 from r-ryantm/auto-update/msmtp
msmtp: 1.8.14 -> 1.8.15
2021-03-17 09:50:55 +01:00
Sandro 8bd2cea10b
Merge pull request #116564 from samuelgrf/fix-allowAliases-false 2021-03-17 09:40:53 +01:00
Vladimír Čunát e3597057e7
Merge #116040: firefox-bin: 86.0 -> 86.0.1 2021-03-17 06:33:33 +01:00
Samuel Gräfenstein a4efd8c3e1
gnome3.gtk -> gtk3
Fix building with `config.allowAliases = false;`.
2021-03-17 00:00:21 +01:00
Samuel Gräfenstein e5deebdf53
treewide: Remove references to perlPackages.TestMore
It's not needed anymore since it's built into Perl now.
Fix building with `config.allowAliases = false;`.
2021-03-17 00:00:19 +01:00
Samuel Gräfenstein 819ab46fe7
treewide: pkgconfig -> pkg-config
Fix building with `config.allowAliases = false;`.
2021-03-17 00:00:19 +01:00
Samuel Gräfenstein 5ff80aea18
gnunet-gtk: gnome3.glade -> glade
Fix building with `config.allowAliases = false;`.
2021-03-17 00:00:17 +01:00
Samuel Gräfenstein b72ee5775c
treewide: gnome2.gtk -> gtk2
Fix building with `config.allowAliases = false;`.
2021-03-17 00:00:16 +01:00
Sandro bded56b981
Merge pull request #116494 from marsam/update-flexget 2021-03-16 12:37:42 +01:00
zimbatm af2abd1deb
kubectl-doctor: init at 0.3.0 2021-03-16 09:56:20 +01:00
Stefan Frijters cb60007f06 maestral-gui: 1.4.2 -> 1.4.3 2021-03-16 14:30:53 +08:00
Mario Rodas 269236f5f8
Merge pull request #116317 from mohe2015/mumble
grpc: fix build input propagation
2021-03-15 20:58:10 -05:00
Hedtke, Moritz cf6f9748b7
grpc: fix build input propagation 2021-03-15 23:56:19 +01:00
Michael Weiss 2926759b15
Merge pull request #116309 from primeos/ungoogled-chromium
ungoogled-chromium: 89.0.4389.82 -> 89.0.4389.90
2021-03-15 22:06:10 +01:00
Jörg Thalheim dc4f0a1721
Merge pull request #116355 from Yarny0/zoom-qt 2021-03-15 18:44:20 +00:00
Jörg Thalheim 776f482e02
zoom-us: remove qttools
this is a left-over when we used nixpkgs's qt instead of the bundled version
2021-03-15 19:41:57 +01:00
TredwellGit 56da9300a3 element: 1.7.22 -> 1.7.23
https://github.com/vector-im/element-web/releases/tag/v1.7.23
2021-03-15 18:04:00 +00:00
06kellyjac 6489ee9262 terragrunt: 0.28.11 -> 0.28.12 2021-03-15 15:48:04 +00:00
Sandro ba5d0fcf89
Merge pull request #116130 from r-ryantm/auto-update/brave
brave: 1.21.74 -> 1.21.76
2021-03-15 15:34:36 +01:00
Michael Weiss fe3c3a2641
Merge pull request #116218 from primeos/chromium-drop-enableVaapi
chromium: Remove the enableVaapi flag/option
2021-03-15 12:14:23 +01:00
Olli Helenius baae14e981 teams: 1.3.00.30857 -> 1.4.00.4855 2021-03-15 02:18:37 -04:00
WORLDofPEACE 0080cc56d0
Merge pull request #116324 from jtojnar/modernize-fractal
Port meson projects away from buildRustPackage
2021-03-15 01:42:34 -04:00
Yarny0 b747aa0f9f zoom-us: unset Qt env variables to fix dialog boxes
Zoom wouldn't show the "Participants"
dialog box when used in a plasma environment;
precisely, the dialog box failed to show its content.
The problem doesn't exist in other
environments like Gnome or Xfce.
Experiments have shown that clearing the environment variable
`QML2_IMPORT_PATH` before calling Zoom fixes the issue.

I suspect the reason to be as follows:
While the zoom build recipe is called with
`libsForQt5xx.callPackage`, putting `qttools.dev` in zoom's
`PATH` is the only connection to nixpkgs' Qt ecosystem.
Zoom brings its own Qt libraries.
Hence it seems to be a good idea to shield
zoom from access to nixpkgs' Qt files to avoid
problems from version mismatch or similar troubles.
So the commit at hand expands zoom's wrapper script
to clear the Qt-related enviornemt variables
`QML2_IMPORT_PATH` and `QT_PLUGIN_PATH`.

Original issue report, with some discussion:
https://github.com/NixOS/nixpkgs/issues/107495#issuecomment-764538071
2021-03-14 23:05:47 +01:00
R. RyanTM bed8668136
kubecfg: 0.17.0 -> 0.18.0 (#116150) 2021-03-14 15:03:34 -04:00
Sandro b6cd9ea18e
Merge pull request #116320 from MetaDark/newsflash
newsflash: 1.3.0 -> 1.4.0
2021-03-14 17:52:10 +01:00
Jan Tojnar 6f0dd4247b
fractal: port away from buildRustPackage
The new setup hooks compose better with Meson setup hooks.

Also correct license.
2021-03-14 17:46:32 +01:00
Martin Weinelt a390e92928 firefox: 86.0 -> 86.0.1 2021-03-14 16:24:12 +01:00
Martin Weinelt a613684873 firefox: 85.0.2 -> 86.0 2021-03-14 16:21:49 +01:00
Ryan Mulligan 33278e2b20
Merge pull request #116193 from r-ryantm/auto-update/seaweedfs
seaweedfs: 2.29 -> 2.31
2021-03-14 08:09:18 -07:00
Ryan Mulligan 7c2e71f82a
Merge pull request #115797 from r-ryantm/auto-update/argo
argo: 2.12.9 -> 2.12.10
2021-03-14 07:46:06 -07:00
Kira Bruneau 2cbd01d244 newsflash: 1.3.0 -> 1.4.0 2021-03-14 10:32:23 -04:00
R. RyanTM c90a78506e msmtp: 1.8.14 -> 1.8.15 2021-03-14 13:36:03 +00:00
Michael Weiss bb52ac0cb0
ungoogled-chromium: 89.0.4389.82 -> 89.0.4389.90 2021-03-14 13:35:12 +01:00
Bernardo Meurer dd58f3ad13
firefox-bin: add pciutils to libPath 2021-03-13 22:09:09 -08:00
Pacman99 d3d57b16d4 calls: build docs 2021-03-13 20:44:22 -08:00
Pacman99 4613800e5b calls: 0.2.0 -> 0.3.1 2021-03-13 20:44:22 -08:00
Mario Rodas 1eb0d1e38e flexget: 3.1.103 -> 3.1.106 2021-03-14 04:20:00 +00:00
Sandro 20fd56001a
Merge pull request #116248 from dotlambda/zulip-term-0.6.0
zulip-term: 0.5.2 -> 0.6.0
2021-03-13 23:09:20 +01:00
Robert Schütz 3f109f6f27 zulip-term: 0.5.2 -> 0.6.0 2021-03-13 22:39:07 +01:00
Michael Weiss 116d152c9e
Merge pull request #116176 from primeos/chromium
chromium: 89.0.4389.82 -> 89.0.4389.90
2021-03-13 21:11:00 +01:00
Mario Rodas 6dd70b5707
Merge pull request #116212 from r-ryantm/auto-update/terragrunt
terragrunt: 0.28.9 -> 0.28.11
2021-03-13 11:00:52 -05:00
Sandro 34405e2ca5
Merge pull request #116178 from logan12358/use-fetchFromSourcehut
aerc, asuka, scdoc, wev, wlsunset, wshowkeys: use fetchFromSourceHut
2021-03-13 16:54:35 +01:00
Michael Weiss 14e11862ea
chromium: Remove the enableVaapi flag/option
Chromium is still compiled with use_vaapi=true but since M89 the
--enable-accelerated-video-decode was replaced with
--enable-features=VaapiVideoDecoder.

Instead of updating our wrapper it seems like a better idea to drop
enableVaapi entirely and let users use commandLineArgs or
chrome://flags/ to enable hardware accelerated video decoding.
2021-03-13 16:38:42 +01:00
R. RyanTM e38bea2335 terragrunt: 0.28.9 -> 0.28.11 2021-03-13 15:19:17 +00:00