Commit graph

197808 commits

Author SHA1 Message Date
Dima db174675f1 pulling PangoFontsetSimple patch and propagating harfbuzz 2019-10-22 00:49:21 +02:00
Dima 23edc9cf14 pango: 1.43.0 -> 1.44.6, fixes CVE-2019-1010238
Bumping version to incorporate a security fix.

Addresses: https://github.com/NixOS/nixpkgs/issues/70120

Upstream fix:
490f8979a2

Additional change required to build docs:
71461689b0

The dropped patch is already incorporated into the version.
2019-10-21 20:47:20 +02:00
R. RyanTM 5955b96940 ffmpegthumbnailer: 2.2.1 -> 2.2.2
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/ffmpegthumbnailer/versions
2019-10-21 20:38:58 +02:00
David Pätzel 3db3c787d5 pythonPackages.pyside: inherit mesa from pkgs 2019-10-21 10:29:58 -07:00
David Pätzel 6a2a395241 pythonPackages.mesa: init at 0.8.6 2019-10-21 10:29:58 -07:00
Ryan Mulligan dd8b06c0d8
Merge pull request #71540 from r-ryantm/auto-update/drawio
drawio: 11.3.0 -> 12.1.0
2019-10-21 09:36:42 -07:00
Renaud 8e5de3a0cd
libcutl: fix regex
Attempt to fix #71544
2019-10-21 18:25:40 +02:00
Tim Steinbach 2dc7d6197e
Merge pull request #71386 from d-goldin/docker_runc_cve
docker-runc: switch to OCI runc 1.0.0-rc8+dev (security)
2019-10-21 12:14:41 -04:00
Johannes Schleifenbaum 45ffe82c43 dbeaver: 6.2.2 -> 6.2.3 2019-10-21 18:11:57 +02:00
Sascha Grunert 64dbf3a22d podman: 1.6.1 -> 1.6.2
Signed-off-by: Sascha Grunert <sgrunert@suse.com>
2019-10-21 18:11:30 +02:00
R. RyanTM 6c4114c99a calcurse: 4.5.0 -> 4.5.1
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/calcurse/versions
2019-10-21 18:10:57 +02:00
Tim Steinbach db32ff0333
linux: 5.4-rc3 -> 5.4-rc4 2019-10-21 11:46:36 -04:00
Renaud 58ddd8f16a
libechonest: 2.3.0 -> 2.3.1 (#71525)
Just a package revamp
+ one less sha1 hash in nixpkgs
2019-10-21 17:45:53 +02:00
Andreas Rammhold 8d77a83e96
Merge pull request #70259 from andir/rust-checkflags
rust introduce `checkFlags` to parametrize test execution
2019-10-21 17:33:10 +02:00
Renaud 0ee02a9d42
mbedtls: disable auto updates
Repology indicates dev releases as newer version
so disable @r-ryantm automatic updates.

cc @fpletz
2019-10-21 16:52:41 +02:00
R. RyanTM 6f8c6d29c8 drawio: 11.3.0 -> 12.1.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/drawio/versions
2019-10-21 07:38:31 -07:00
Franz Pletz 22b0be5609
Merge pull request #70509 from doronbehar/package-snzip
snzip: init at 1.0.4
2019-10-21 14:12:35 +00:00
Doron Behar a7077637f9
snzip: init at 1.0.4 2019-10-21 16:10:47 +02:00
Franz Pletz a2638b611f
Merge pull request #69124 from asbachb/update-to-netbeans-11.1
Update to NetBeans 11.1
2019-10-21 14:07:12 +00:00
Mario Rodas fa4524d178
Merge pull request #71522 from marsam/update-nodejs
nodejs-12_x: 12.12.0 -> 12.13.0
2019-10-21 08:27:59 -05:00
Tim Steinbach b0e4d7b9ea
ammonite: 1.7.1 -> 1.7.4 2019-10-21 09:14:56 -04:00
R. RyanTM 9d281cc9fe cutelyst: 2.8.0 -> 2.9.0 (#71519) 2019-10-21 12:52:35 +00:00
Tim Steinbach cfe3c89300
sbt-extras: 2019-09-30 -> 2019-10-21 2019-10-21 08:01:13 -04:00
Domen Kožar 3fd1d4799c
Merge pull request #71521 from BrianHicks/update-elm-language-server
elmPackages.*: update to latest versions
2019-10-21 14:00:07 +02:00
Renaud 9f4d260adf
Merge pull request #71494 from chessai/clFFT-add
clfft: init at 2.12.2
2019-10-21 13:51:06 +02:00
Tim Steinbach ad5994f182
oh-my-zsh: 2019-10-19 -> 2019-10-20 2019-10-21 07:34:51 -04:00
Tim Steinbach b1c21ad6f0
zoom-us: 3.0.303290.1010 -> 3.0.306796.1020 2019-10-21 07:32:23 -04:00
Profpatsch 8252861507 lib/trivial: add pipe function
`pipe` is a useful operator for creating pipelines of functions.

It works around the usual problem of e.g. string operations becoming
deeply nested functions.

In principle, there are four different ways this function could be
written:

pipe val [ f1 .. fn ]
pipe val [ fn .. f1 ]
compose [ f1 .. fn ] val
compose [ fn .. f1 ] val

The third and fourth form mirror composition of functions, they would
be the same as e.g. `(f1 << f2 << f3 .. << fn) val`.
However, it is not clear which direction the list should have (as one
can see in the second form, which is the most absurd.

In order not to confuse users, we decide for the most “intuitive”
form, which mirrors the way unix pipes work (thus the name `pipe`).
The flow of data goes from left to right.

Co-Authored-By: Silvan Mosberger <infinisil@icloud.com>
2019-10-21 13:19:16 +02:00
Brian Hicks 1d4f48d730 elmPackages.*: update to latest versions
elm-language-server: 1.4.1 -> 1.4.2

downstream updates in others
2019-10-21 06:04:05 -05:00
Franz Pletz 360e57a567
mbedtls: 2.16.0 -> 2.16.3
Fixes CVE-2019-16910. Fixes #71452.
2019-10-21 12:48:22 +02:00
Franz Pletz bf2f1c8e00
Revert "mbedtls: 2.16.0 -> 2.17.0"
This reverts commit ba3b9c0eb8.

cc #60625 #71452
2019-10-21 12:47:44 +02:00
Franz Pletz cc9b18f223
Merge pull request #71406 from astro/collectd
collectd: plugins configuration, buildMinimalPackage
2019-10-21 10:34:34 +00:00
Franz Pletz cf52cd402c
Merge pull request #71254 from MicrosoftTakeover/patch-1
minetest 5.0.1 -> 5.1.0
2019-10-21 10:32:26 +00:00
worldofpeace 1a25b14048
Merge pull request #71335 from edef1c/plover-deps
Add missing Plover deps
2019-10-21 10:19:24 +00:00
edef 0599c89d58
Merge pull request #71338 from edef1c/nix-daemon-opt-aliases
nixos/nix-daemon: don't refer to deprecated option aliases
2019-10-21 09:59:13 +00:00
chessai 5feacc9710 clfft: init at 2.21.2 2019-10-21 05:32:34 -04:00
Mario Rodas 7673965e30
nodejs-12_x: 12.12.0 -> 12.13.0
Changelog: https://github.com/nodejs/node/releases/tag/v12.13.0
2019-10-21 04:20:00 -05:00
Robin Gloster 7474d9c3bf
Merge pull request #71491 from r-ryantm/auto-update/bind
bind: 9.14.6 -> 9.14.7
2019-10-21 09:17:43 +02:00
R. RyanTM e592c3d36c avro-tools: 1.9.0 -> 1.9.1
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/avro-tools/versions
2019-10-21 09:15:46 +02:00
R. RyanTM 2c7366e3e8 birdfont: 2.27.0 -> 2.28.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/birdfont/versions
2019-10-21 09:15:30 +02:00
R. RyanTM fd28a0abb0 bird2: 2.0.6 -> 2.0.7
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/bird/versions
2019-10-21 09:15:12 +02:00
R. RyanTM 5f994b9330 airsonic: 10.4.0 -> 10.4.1
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/airsonic/versions
2019-10-21 09:14:54 +02:00
R. RyanTM fef4ba0e5a buck: 2019.09.12.01 -> 2019.10.17.01
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/buck/versions
2019-10-21 09:14:38 +02:00
R. RyanTM 43e64eb545 mod_wsgi: 4.6.7 -> 4.6.8
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/mod_wsgi/versions
2019-10-21 09:14:11 +02:00
R. RyanTM db5433a56b bitwarden_rs-vault: 2.11.0 -> 2.12.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/bitwarden_rs-vault/versions
2019-10-21 09:13:58 +02:00
R. RyanTM 51efea72cd bitwarden: 1.16.4 -> 1.16.6
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/bitwarden/versions
2019-10-21 09:13:42 +02:00
R. RyanTM ca1cce367e checkstyle: 8.24 -> 8.25
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/checkstyle/versions
2019-10-21 09:13:28 +02:00
Renaud 290b5ee611
Merge pull request #71158 from romildo/upd.qps
lxqt.qps: 1.10.20 -> 2.0.0
2019-10-21 08:05:48 +02:00
Vincent Laporte bbce011c13 ocamlPackages.duff: init at 0.2 2019-10-21 05:31:00 +00:00
R. RyanTM 0060782d8e bind: 9.14.6 -> 9.14.7
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/bind/versions
2019-10-20 21:13:12 -07:00