Commit Graph

198119 Commits

Author SHA1 Message Date
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
Tor Hedin Brønner
aa910d164d nixos/seahorse: use seahorse's askpass by default 2019-10-21 18:01:15 +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
a2255300db diffoscope: 125 -> 126
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/diffoscope/versions
2019-10-21 07:52:17 -07: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
davidak
49945b95d0 xzoom: fix version 2019-10-21 14:57:35 +02: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
R. RyanTM
e5e983bf66 bup: 0.29.3 -> 0.30
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/bup/versions
2019-10-21 04:32:45 -07: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
Frederik Rietdijk
2b9713c281 doc: move fhs and mkShell under builders/special
In my opinion Functions should only contain pure functions. These are
both meant to provide derivations so I put them under Builders. Don't
know exactly *where* to put them so "special" it is...
2019-10-21 11:39:46 +02: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
Frederik Rietdijk
24b1ef5133 doc: move overrides into separate chapter 2019-10-21 11:19:46 +02:00
Felix Breidenstein
57266005ca Remove fleaz as maintainer and from all pkgs 2019-10-21 11:16:16 +02:00
Frederik Rietdijk
9d54ea9b2d doc: move image builders into new images chapter 2019-10-21 10:57:56 +02:00
Frederik Rietdijk
b6ba25ce95 Merge master into staging-next 2019-10-21 09:55:24 +02: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