221477 Commits

Author SHA1 Message Date
Michael Weiss
9f3914824d
chromium: Ignore unknown warning options
This can e.g. save around 150k lines of unnecessary log messages which
take up around 66% of the total lines (based on a log of 80.0.3987.100):
29527 warning: unknown warning option '-Wno-bitwise-conditional-parentheses'; did you mean '-Wno-bitwise-op-parentheses'? [-Wunknown-warning-option]
29527 warning: unknown warning option '-Wno-builtin-assume-aligned-alignment' [-Wunknown-warning-option]
29527 warning: unknown warning option '-Wno-deprecated-copy'; did you mean '-Wno-deprecated'? [-Wunknown-warning-option]
29527 warning: unknown warning option '-Wno-final-dtor-non-final-class'; did you mean '-Wno-abstract-final-class'? [-Wunknown-warning-option]
29527 warning: unknown warning option '-Wno-implicit-int-float-conversion'; did you mean '-Wno-implicit-float-conversion'? [-Wunknown-warning-option]
2020-04-03 12:40:46 +02:00
Bastian Köcher
644d643d68 nixos/wg-quick: Fix after wireguard got upstreamed 2020-04-03 12:39:35 +02:00
zowoq
4bbd415ddf slirp4netns: update maintainers 2020-04-03 20:37:59 +10:00
zowoq
ab00d36d27 fuse-overlayfs: update maintainers 2020-04-03 20:37:59 +10:00
zowoq
878589a122 skopeo: update maintainers 2020-04-03 20:37:59 +10:00
zowoq
2af7c9cfae buildah: update maintainers 2020-04-03 20:37:59 +10:00
zowoq
163d905305 runc: update maintainers 2020-04-03 20:37:59 +10:00
zowoq
edd336f4bb podman: update maintainers 2020-04-03 20:37:59 +10:00
zowoq
f85106b3d2 crun: update maintainers 2020-04-03 20:37:59 +10:00
zowoq
6f052a9a12 conmon: update maintainers 2020-04-03 20:37:59 +10:00
zowoq
d2556f0a95 maintainers/teams: add podman team 2020-04-03 20:37:53 +10:00
Maximilian Bosch
33157673f4
Merge pull request #84170 from zowoq/fzf
fzf: 0.21.0-1 -> 0.21.1
2020-04-03 11:46:00 +02:00
Michael Weiss
0ad8b26018
Merge pull request #84174 from primeos/chromium
chromium: 80.0.3987.162 -> 80.0.3987.163
2020-04-03 11:37:44 +02:00
msm
5160beb886
ursadb: init at v1.2.0 2020-04-03 11:29:05 +02:00
Oleksii Filonenko
6ee3f91071 emplace: 0.2.14 -> 0.2.15 2020-04-03 12:21:52 +03:00
Mario Rodas
09022cb32f
ocamlformat: 0.13.0 -> 0.14.0
Changelog: https://github.com/ocaml-ppx/ocamlformat/releases/tag/0.14.0
2020-04-03 04:20:00 -05:00
Mario Rodas
5452d07ab7
pueue: 0.2.1 -> 0.3.0
Changelog: https://github.com/Nukesor/pueue/releases/tag/v0.3.0
2020-04-03 04:20:00 -05:00
Mario Rodas
2c5c285cc0
buildah: 1.14.5 -> 1.14.6
Changelog: https://github.com/containers/buildah/releases/tag/v1.14.6
2020-04-03 04:20:00 -05:00
Michael Weiss
cbd13f3c55
chromium: 80.0.3987.162 -> 80.0.3987.163
https://chromereleases.googleblog.com/2020/04/stable-channel-update-for-desktop.html

Note: This update contains only two fixes [0]. The fix that reverts a
feature which caused a crash spike on 80.0.3987.162 [1] seems important
for us (though the commit doesn't provide any data on the crash spike).

[0]: https://chromium.googlesource.com/chromium/src/+log/80.0.3987.162..80.0.3987.163?pretty=fuller
[1]: fc11c43603
2020-04-03 11:17:54 +02:00
markuskowa
23b5b1fb84
Merge pull request #84100 from matthiasbeyer/update-fava
fava: 1.13 -> 1.14
2020-04-03 11:09:47 +02:00
Peter Hoeg
81bc738fc0
Merge pull request #83799 from cole-h/cantata
cantata: make qtmultimedia and vlc optional
2020-04-03 17:07:14 +08:00
Oleksii Filonenko
72fb30d5cc kondo: init at 0.3 2020-04-03 11:55:56 +03:00
Emery Hemingway
e1d2441468 gomuks: 2020-02-19 -> 2020-03-20
Add a .desktop file to the output.
2020-04-03 14:25:09 +05:30
zowoq
cc21aa99a4 fzf: 0.21.0-1 -> 0.21.1
https://github.com/junegunn/fzf/blob/master/CHANGELOG.md#0211
2020-04-03 18:50:25 +10:00
tomberek
939976a929
parallel-full: init SQL and CSV support (#77619)
Co-authored-by: Jörg Thalheim <Mic92@users.noreply.github.com>
2020-04-03 09:49:28 +01:00
talyz
8924a7de3d
php: Make buildEnv recursive + take extension deps into account
A slight rewrite of buildEnv which:

1. Makes buildEnv recursively add itself to its output, so that it can
   be accessed from any php derivation.

2. Orders the extension text strings according to their internalDeps
   attribute - dependencies have to be put before dependants in the
   php.ini or they will fail to load due to missing symbols.
2020-04-03 10:11:15 +02:00
talyz
6c810c235d
phpPackages.exts: Run tests by default
The tests for many of the extensions run just fine, for some a small
portion fail. This runs the tests by default and disables the tests
extensions with any failing tests.
2020-04-03 10:11:14 +02:00
talyz
282337799b
php: Build an even slimmer base
This moves yet more extensions from the base build to
phpPackages.ext. Some of the extensions are a bit quirky and need
patching for this to work, most notably mysqlnd and opcache.

Two new parameters are introduced for mkExtension - internalDeps and
postPhpize. internalDeps is used to specify which other internal
extensions the current extension depends on, in order to provide them
at build time. postPhpize is for when patches and quirks need to be
applied after running phpize.

Patch notes:

- For opcache, older versions of PHP have a bug where header files are
  included in the wrong order.

- For mysqlnd, the config.h is never included, so we include it in the
  main header file, mysqlnd.h. Also, the configure script doesn't add
  the necessary library link flags, so we add them to the variable
  configure should have added them to.
2020-04-03 10:11:13 +02:00
Elis Hirwing
da8ca2be2f
phpPackages.exts.gmp: Enable on darwin 2020-04-03 10:11:12 +02:00
Elis Hirwing
a5f77d6ea2
php-unit: Drop the declaration of the php-unit attributes since they aren't used 2020-04-03 10:11:11 +02:00
Elis Hirwing
be7bf5a18d
php-embed: Drop the declaration of the php-embed attributes 2020-04-03 10:11:07 +02:00
Oleksii Filonenko
41bcc6ff99 caddy2: 2.0.0-beta10 -> 2.0.0-rc.1 2020-04-03 10:43:25 +03:00
Domen Kožar
e727398a2d
Merge pull request #84157 from kylesferrazza/remove-howoldis-link
change howoldis link to status page link
2020-04-03 09:33:18 +02:00
Sascha Grunert
109362d803
conmon: 2.0.14 -> 2.0.15
Signed-off-by: Sascha Grunert <sgrunert@suse.com>
2020-04-03 09:27:56 +02:00
Daniël de Kok
cb5580e4c0 softmaker-office: 974 -> 976
This is a bugfix release:

https://www.softmaker.com/en/servicepacks-office-changelog
2020-04-03 09:15:58 +02:00
Michele Guerini Rocco
0bb17a4b19
Merge pull request #81223 from aaronjanse/init-papermc
papermc: init at 1.15.2r121
2020-04-03 09:15:36 +02:00
Daniël de Kok
5e839502c6 softmaker-office: fix desktop items
Fix desktop items to pass validation:

- Remove icon file extension.
- Remove categories that are not defined by the specification.
- Remove a duplicate MIME type in the PlanMaker desktop file
2020-04-03 09:14:16 +02:00
Markus Schneider
5dfb3c81a1 flat-remix-icon-theme: 20191122 -> 20200116 2020-04-03 08:59:10 +02:00
Josh Peters
1f5a97bcef maintainers-list: add petersjt014 2020-04-03 01:04:52 -05:00
Aaron Janse
631fe89c59 papermc: init at 1.15.2r121 2020-04-02 21:33:04 -07:00
Kyle Sferrazza
131cb42efe
nixpkgs manual preface: change howoldis link to status page link 2020-04-02 21:52:44 -04:00
Echo Nolan
596dc1f2be minecraft: 2.1.11314 -> 2.1.13509 2020-04-02 17:15:05 -07:00
Jan Tojnar
1c8118caac
joypixels: 5.0.2 → 5.5.0 2020-04-03 01:41:10 +02:00
Mario Rodas
1fffcbc798
Merge pull request #83967 from r-ryantm/auto-update/fusee-interfacee-tk
fusee-interfacee-tk: 1.0.0 -> 1.0.1
2020-04-02 18:20:05 -05:00
Mario Rodas
7ae098e1dd
Merge pull request #83978 from r-ryantm/auto-update/imgproxy
imgproxy: 2.8.1 -> 2.11.0
2020-04-02 18:13:19 -05:00
Mario Rodas
c70d948c93
Merge pull request #83859 from zowoq/slirp4netns
slirp4netns: 0.4.4 -> 1.0.0
2020-04-02 18:09:48 -05:00
Silvan Mosberger
c06bcddaad
Merge pull request #83258 from mmilata/sympa-6.2.54
nixos/sympa: fix outgoing emails, update package version
2020-04-03 00:24:57 +02:00
Florian Klink
44c20fb83e
Merge pull request #84087 from Izorkin/mariadb-tokudb
mariadb: update build configuration.
2020-04-02 23:44:03 +02:00
José Romildo Malaquias
09ba8e5b5e theme-obsidian2: 2.10 -> 2.11 2020-04-02 18:33:59 -03:00
Robert Helgesson
bf486f784d
emacs: fix setup-hook
This change fixes byte compilation of, e.g., Helm without breaking
builds using, e.g., `trivialBuild`.

See https://github.com/NixOS/nixpkgs/pull/82604#issuecomment-607201755
2020-04-02 23:04:08 +02:00