235056 Commits

Author SHA1 Message Date
Daniël de Kok
318a8b44cb
Merge pull request #92951 from marsam/update-jetbrains-mono
jetbrains-mono: 1.0.6 -> 2.000
2020-07-11 20:34:08 +02:00
Franz Pletz
e0cc08b81e
Merge pull request #92922 from ciil/jira-update
atlassian-jira: 8.9.0 -> 8.10.0
2020-07-11 20:31:53 +02:00
Mario Rodas
b6b8f3993c
Merge pull request #92905 from marsam/fix-pillow-darwin
python27Packages.pillow: fix build on darwin
2020-07-11 13:22:58 -05:00
Daniël de Kok
e8d7851e00
Merge pull request #92943 from minijackson/cargo-inspect-0.10.3
cargo-inspect: 0.10.1 -> 0.10.3
2020-07-11 20:09:27 +02:00
Milan Pässler
a9438c28b3 jetbrains: update 2020-07-11 19:57:48 +02:00
Franz Pletz
a8fd3c7edd
Merge pull request #85074 from Emantor/fix/boot_kernel_module
boot.initrd.luks: remove x86_64/i586 AES modules
2020-07-11 19:20:32 +02:00
Milan Pässler
67504da51e netifd: unstable-2020-01-18 -> unstable-2020-07-11 2020-07-11 19:08:52 +02:00
Milan Pässler
915d2fa8cb uci: unstable-2020-01-27 -> unstable-2020-04-27 2020-07-11 19:05:46 +02:00
Milan Pässler
f23acc03cf tipp10: 3.1.0 -> 3.2.0 2020-07-11 19:01:19 +02:00
Milan Pässler
553859d142 mumble: 1.3.1 -> 1.3.2 2020-07-11 18:54:34 +02:00
Milan Pässler
38c590a7de coreboot-utils: 4.11 -> 4.12 2020-07-11 18:50:21 +02:00
Olli Helenius
0877879d0c
jetbrains.jdk: 11.0.6-b774 -> 11.0.7-b64 (#92837) 2020-07-11 18:46:49 +02:00
Maximilian Bosch
db2a5bf3b9
Merge pull request #92928 from etu/php72-update
php72: 7.2.31 -> 7.2.32
2020-07-11 18:27:37 +02:00
Maximilian Bosch
f510162d69
Merge pull request #92927 from etu/php73-update
php73: 7.3.19 -> 7.3.20
2020-07-11 18:27:22 +02:00
Maximilian Bosch
07259412f3
Merge pull request #92706 from Ma27/bump-matrix-synapse
matrix-synapse: 1.15.2 -> 1.16.1
2020-07-11 18:27:00 +02:00
Minijackson
ca343e5398
cargo-inspect: 0.10.1 -> 0.10.3 2020-07-11 18:26:40 +02:00
Maximilian Bosch
2423213b95
Merge pull request #92925 from etu/php74-update
php74: 7.4.7 -> 7.4.8
2020-07-11 18:25:41 +02:00
Raghav Sood
881c92f68f
mage: 1.9.0 -> 1.10.0 2020-07-11 16:06:12 +00:00
Maximilian Bosch
3d9c143b77
Merge pull request #91895 from kristoff3r/jupyter-service
Improve jupyter service
2020-07-11 18:03:31 +02:00
Raghav Sood
05c65878ba
ipfs-migrator: 1.5.1 -> 1.6.3 2020-07-11 15:56:48 +00:00
Daniël de Kok
a091844715
Merge pull request #92817 from uosis/update-loop
loop: 2018-12-04 -> 2020-07-08
2020-07-11 17:20:49 +02:00
Justin Humm
ce111fcc26
Merge pull request #92225 from bachp/unifi-5.13.32
unifiStable: 5.13.29 -> 5.13.32
2020-07-11 17:14:19 +02:00
uosis
4a2327e7f1 loop: unstable-2018-12-04 -> unstable-2020-07-08 2020-07-11 09:11:06 -06:00
Franz Pletz
5562bd8f45
Merge pull request #92932 from freezeboy/update-minetest
minetest: 5.2.0 -> 5.3.0
2020-07-11 17:05:27 +02:00
Jan Tojnar
6f8345035b
fontconfig: remove its rules from configs
ITS rules are used for extracting translatable strings and they have
been moved to external files in 2.13.92 so they are not needed in
the config files themselves.

Removing them also cuts down on errors/warnings produced when using
older versions of fontconfig (< 2.12.92). Now it will only complain
about the description element but that is fortunately just a warning,
not errors like the ones caused by the its attributes.

Thanks to this, we can change the config version in NixOS module
back to 2.11 allowing us to re-use the 2.13/2.14 configs for apps
built against 2.12 fontconfig.
2020-07-11 17:05:15 +02:00
Jan Tojnar
993deed7ab
fontconfig: Load fonts also from FHS paths
With previous patch, we no longer load non-versioned fonts.conf file to avoid incompatibilities
but this also means fontconfig will not load system-wide installed fonts on non-NixOS systems.

As a compromise, let's hardcode the FHS font paths to the built-in config so that the system
fonts work there. Unlike with the system config we do not need to worry about compatibility as
incompatible font files will be simply ignored.

Of course there will still be disparity if the system install fonts to some other location than
these two but I am afraid this is the best we can do.

See https://github.com/NixOS/nixpkgs/pull/73795#issuecomment-635771967 for discussion.
2020-07-11 17:05:13 +02:00
Jan Tojnar
edf2541f02
fontconfig: Only read versioned config dirs
Falling back to unversioned `/etc/fonts/conf.d` when versioned one does not exist
is problematic since it only occurs on non-NixOS systems and those are likely
to have a different version of fontconfig. When those versions use incompatible
elements in the config, apps using fontconfig will crash.

Instead, we are now falling back to the in-package `fonts.conf` file that loads
both the versioned global `conf.d` directory and the in-package `conf.d` since using
upstream settings on non-NixOS is preferable to not being able to use apps there.

In fact, we would not even need to link `fonts.conf`, as the in-package `fonts.conf`
will be always used unless someone creates the global one manually (the option is still
retained if one wants to write a custom NixOS module and to avoid unnecessary stat call on NixOS).

Additionally, since the `fonts.conf` will always load `conf.d` from the package, we no longer
need to install them to sytem `/etc` in the module. This needed some mucking with `50-user.conf`
which disables configs in user directories (a good thing IMO, NixOS module will turn it back on)
but otherwise, it is cleaner. The files are still prioritized by their name, regardless of their location.

See https://github.com/NixOS/nixpkgs/pull/73795#issuecomment-634370125 for more information.
2020-07-11 17:05:13 +02:00
worldofpeace
87786bc47f
fontconfig: bump configVersion to 2.13 2020-07-11 17:05:13 +02:00
worldofpeace
27b14ee82a
fontconfig: 2.12.6 -> 2.13.92 2020-07-11 17:05:12 +02:00
Daniël de Kok
25bf5520bd
Merge pull request #92546 from danieldk/transformers-0.8.1
python3Packages.transformers: 3.0.1 -> 3.0.2
2020-07-11 16:50:55 +02:00
R. RyanTM
512637e1d0 gnome3.tali: 3.36.1 -> 3.36.4 2020-07-11 16:50:34 +02:00
freezeboy
535c20b316 fixup picmi path and meta record 2020-07-11 16:48:09 +02:00
Vladimír Čunát
ec74a02bde
Merge branch 'master' into staging-next
Thousands of rebuilds from master (not sure why).
2020-07-11 16:45:47 +02:00
freezeboy
bda43779f6 minetest: 5.2.0 -> 5.3.0 2020-07-11 15:33:23 +02:00
Vincent Laporte
1bff502065
ocamlPackages.lambdasoup: 0.6.3 → 0.7.1 2020-07-11 15:23:47 +02:00
Florian Klink
34663b0fc1 gerrit: 3.1.5 -> 3.2.2 2020-07-11 15:07:54 +02:00
Elis Hirwing
49316cca66
php74: 7.4.7 -> 7.4.8
Changelog: https://www.php.net/ChangeLog-7.php#7.4.8
2020-07-11 15:07:44 +02:00
Elis Hirwing
86ed3bf578
php72: 7.2.31 -> 7.2.32
Changelog: https://www.php.net/ChangeLog-7.php#7.2.32
2020-07-11 14:49:37 +02:00
Elis Hirwing
ef4f6dba94
php73: 7.3.19 -> 7.3.20
Changelog: https://www.php.net/ChangeLog-7.php#7.3.20
2020-07-11 14:46:29 +02:00
David McKay
2968735bbc gnomeExtensions.dash-to-panel: 31 -> 38 2020-07-11 13:45:02 +01:00
Johan Thomsen
4f39f93d8e nixos/ceph: (test) ceph now has device monitoring and pg_autoscaler enabled by default
- the pg_autoscaler will force new empty pools down to 32 pgs
- device monitoring metrics consumes 1 pool with 1 pg
2020-07-11 14:12:42 +02:00
Johan Thomsen
0dea5dff36 ceph: 14.2.10 -> 15.2.4 2020-07-11 14:12:42 +02:00
Florian Klink
0057be6ebc
Merge pull request #92000 from f4814/platformio-udev
platformio: Add udev rules to package output
2020-07-11 14:10:33 +02:00
Simon Lackerbauer
8618e44f46 atlassian-jira: 8.9.0 -> 8.10.0 2020-07-11 14:06:07 +02:00
Florian Klink
785b558e66
Merge pull request #92781 from r-ryantm/auto-update/gtkwave
gtkwave: 3.3.104 -> 3.3.105
2020-07-11 13:57:57 +02:00
Florian Klink
1b78e0eeec
Merge pull request #73365 from colemickens/nixpkgs-firefox-libglvnd
firefox-wrapper: rename gdkWayland->forceWayland; always use libglvnd
2020-07-11 13:49:39 +02:00
Florian Klink
2bb6bc6648
Merge pull request #92823 from colemickens/firefox-drm
firefox{,-bin}: add 'mesa', for wayland/drm
2020-07-11 13:48:22 +02:00
Florian Klink
98b2a62eda
Merge pull request #92915 from Patagonicus/issue-91706
Revert "bashCompletion: speed-up test execution by using xdist"
2020-07-11 13:32:29 +02:00
Florian Klink
ee472d5811
Merge pull request #92903 from eadwu/networkd/fix-field-usedns
nixos/networkd: correct DHCPv6 UseDNS field
2020-07-11 13:32:05 +02:00
Vladimír Čunát
63d0579ec4
Merge #92338: lyx: 2.3.5.1 -> 2.3.5.2
It's a tiny bugfix update:
https://www.mail-archive.com/lyx-announce@lists.lyx.org/msg00185.html
2020-07-11 12:29:40 +02:00