worldofpeace
0ab30b1d7d
Merge pull request #51599 from marsam/fix-flake8-future-import-build
...
pythonPackages.flake8-future-import: fix build on Python 3.7
2018-12-05 20:03:45 -05:00
Maximilian Bosch
42356feed0
Merge pull request #51571 from alyssais/weechat-merge
...
weechat: fix bad merge
2018-12-06 01:40:24 +01:00
Mario Rodas
8af15af15c
pythonPackages.flake8-future-import: fix build on Python 3.7
2018-12-05 19:37:06 -05:00
Herwig Hochleitner
8942a3e00c
chromium: 70.0.3538.110 -> 71.0.3578.80
...
CVE-2018-17480 CVE-2018-17481 CVE-2018-18335 CVE-2018-18336
CVE-2018-18337 CVE-2018-18338 CVE-2018-18339 CVE-2018-18340
CVE-2018-18341 CVE-2018-18342 CVE-2018-18343 CVE-2018-18344
CVE-2018-18345 CVE-2018-18346 CVE-2018-18347 CVE-2018-18348
CVE-2018-18349 CVE-2018-18350 CVE-2018-18351 CVE-2018-18352
CVE-2018-18353 CVE-2018-18354 CVE-2018-18355 CVE-2018-18356
CVE-2018-18357 CVE-2018-18358 CVE-2018-18359
2018-12-06 00:36:33 +01:00
Renaud
75fe53799d
Merge pull request #51529 from worldofpeace/open-sans/different-source
...
opensans-ttf: change source to salsa, rename to open-sans
2018-12-05 23:53:56 +01:00
Tim Steinbach
808d52ee05
linux: 4.19.6 -> 4.19.7
2018-12-05 17:34:29 -05:00
Tim Steinbach
e945771e4c
linux: 4.14.85 -> 4.14.86
2018-12-05 17:34:13 -05:00
Tim Steinbach
1f7266cbbb
linux: 4.9.142 -> 4.9.143
2018-12-05 17:33:36 -05:00
adisbladis
2e44e002a2
firefox-beta-bin: 64.0b10 -> 64.0b14
2018-12-05 22:12:52 +00:00
adisbladis
db8002cdf1
firefox-devedition-bin: 64.0b10 -> 65.0b1
2018-12-05 22:12:51 +00:00
Yegor Timoshenko
851a52983b
yed: 3.18.1.1 -> 3.18.2
2018-12-06 01:02:52 +03:00
Alexey Shmalko
9a75598d98
Merge pull request #51562 from averelld/leela-zero
...
leela-zero: init at 0.16
2018-12-05 23:23:05 +02:00
worldofpeace
f5e664f805
opensans-ttf: change source to salsa, rename to open-sans
2018-12-05 16:12:48 -05:00
tilpner
70bd091f16
tigervnc: 1.8.0pre2017041 -> 1.9.0
2018-12-05 22:00:40 +01:00
Peter Simons
8fbbee18d3
all-cabal-hashes: update to Hackage at 2018-12-05T19:25:40Z
2018-12-05 21:39:47 +01:00
Peter Simons
db6aeeae56
haskell-json-autotype: disable the test suite to fix the build
2018-12-05 21:38:14 +01:00
Peter Simons
8e11a25d5f
haskell-brick: update override for the new version
2018-12-05 21:38:14 +01:00
Peter Simons
0325f01d31
hackage-packages.nix: automatic Haskell package set update
...
This update was generated by hackage2nix v2.12-5-g7b287a8 from Hackage revision
47cd70c536
.
2018-12-05 21:38:06 +01:00
zimbatm
7faa6723d6
Merge pull request #51524 from zimbatm/vault-1.0.0
...
vault: 0.11.5 -> 1.0.0
2018-12-05 21:13:07 +01:00
Joachim Fasting
21d83e5b11
rstudioWrapper: use runCommand, local build only
...
This seems more appropriate for a wrapper generator.
2018-12-05 20:59:41 +01:00
Joachim Fasting
d2b467a2de
rWrapper: use runCommand, local build only
...
This seems more appropriate for a wrapper generator.
2018-12-05 20:59:35 +01:00
WilliButz
60eff0eecb
nixos/grafana: use new default for connMaxLifetime
2018-12-05 20:49:45 +01:00
WilliButz
d014e767be
grafana: 5.3.4 -> 5.4.0
2018-12-05 20:49:45 +01:00
Matthew Bauer
ab22183941
Merge pull request #51469 from matthewbauer/gimp-fix
...
gimp: fix on darwin
2018-12-05 13:43:40 -06:00
Graham Christensen
c88337c9ac
dockerTools.buildImage: support using a layered image in fromImage
...
Docker images used to be, essentially, a linked list of layers. Each
layer would have a tarball and a json document pointing to its parent,
and the image pointed to the top layer:
imageA ----> layerA
|
v
layerB
|
v
layerC
The current image spec changed this format to where the Image defined
the order and set of layers:
imageA ---> layerA
|--> layerB
`--> layerC
For backwards compatibility, docker produces images which follow both
specs: layers point to parents, and images also point to the entire
list:
imageA ---> layerA
| |
| v
|--> layerB
| |
| v
`--> layerC
This is nice for tooling which supported the older version and never
updated to support the newer format.
Our `buildImage` code only supported the old version, so in order for
`buildImage` to properly generate an image based on another image
with `fromImage`, the parent image's layers must fully support the old
mechanism.
This is not a problem in general, but is a problem with
`buildLayeredImage`.
`buildLayeredImage` creates images with newer image spec, because
individual store paths don't have a guaranteed parent layer. Including
a specific parent ID in the layer's json makes the output less likely
to cache hit when published or pulled.
This means until now, `buildLayeredImage` could not be the input to
`buildImage`.
The changes in this PR change `buildImage` to only use the layer's
manifest when locating parent IDs. This does break buildImage on
extremely old Docker images, though I do wonder how many of these
exist.
This work has been sponsored by Target.
2018-12-05 14:25:54 -05:00
Matthew Bauer
73a87b57a6
gimp: fix on darwin
...
Fixes #41071
2018-12-05 13:20:14 -06:00
worldofpeace
e9a44ba627
Merge pull request #51575 from costrouc/costrouc/update-parsimonious
...
pythonPackages.parsimonious: 0.7.0 -> 0.8.1
2018-12-05 14:01:27 -05:00
Matthew Bauer
0b8574540b
stdenv/darwin: fix portable libsystem hook
...
Some packages don’t have /bin directories. We should only run
install_name_tool if that directory exists.
2018-12-05 12:56:12 -06:00
Dmitry Kalinkin
93ba7aa8c5
tradcpp: improved aarch64 support
2018-12-05 13:48:18 -05:00
Ragnar Dahlén
963b113a35
soapyrtlsdr: init at 0.2.5
2018-12-05 19:01:15 +01:00
Simon Lackerbauer
ee1613aea6
nextcloud: 14.0.3 -> 14.0.4
2018-12-05 18:13:08 +01:00
Chris Ostrouchov
47f54a48bd
pythonPackages.parsimonious: 0.7.0 -> 0.8.1
2018-12-05 12:05:17 -05:00
Alyssa Ross
703827f36c
nginx: 1.14.1 -> 1.14.2
2018-12-05 10:56:06 -06:00
George Whewell
5205aaa655
qmltermwidget: add missing utmp lib on darwin
2018-12-05 15:43:25 +00:00
Alyssa Ross
6dc9347712
weechat: fix bad merge
...
Identified in 8887e1f697 (r239097413)
.
9504292b1e
accidentally reverted all the
changes that had been made to the weechat wrapper since
8887e1f697
.
I removed the wrapper, then wrote it again, but this time taking the
code from the latest version of weechat before the bad merge.
2018-12-05 15:21:19 +00:00
Tim Steinbach
e814fba316
scala: 2.12.7 -> 2.12.8
2018-12-05 09:27:34 -05:00
Averell Dalton
b47d83f793
leela-zero: init at 0.16
2018-12-05 15:16:43 +01:00
zimbatm
c8091a8995
vault: 0.11.5 -> 1.0.0
2018-12-05 14:52:04 +01:00
zimbatm
3064dd1906
gox: 0.4.0 -> 20181025
...
We need the latest gox to support the latest go releases better.
Unfortunately the author doesn't seem interesting in making new releases
(1y already since the last release).
2018-12-05 14:52:04 +01:00
zimbatm
b5360ce722
govers: 20150109 -> 20160623
2018-12-05 14:52:04 +01:00
Robert Hensing
296b333709
all-packages.nix: Fix reference to self warning
...
This reference was added to master while the deprecation PR #51401 was open.
2018-12-05 13:47:45 +00:00
Alyssa Ross
33e6c84753
jenkins: 2.138.3 -> 2.150.1
...
Fixes several security issues.
See https://jenkins.io/blog/2018/12/05/security-updates/ .
2018-12-05 12:49:37 +00:00
adisbladis
d362815113
Merge pull request #51553 from enumatech/go-ethereum-1.8.19
...
go-ethereum: 1.8.17 -> 1.8.19
2018-12-05 12:49:36 +00:00
Linus Heckemann
3e1401f06b
Merge pull request #44102 from alyssais/weechat-unwrapped
...
weechat: seperate weechat-unwrapped from wrapper
2018-12-05 13:36:00 +01:00
Jörg Thalheim
b2c86f46d9
Merge pull request #51549 from yurrriq/update/os-specific/darwin/skhd
...
skhd: 0.2.2 -> 0.3.0
2018-12-05 12:02:46 +00:00
Alexey Shmalko
2ce6bceb26
Merge pull request #51533 from k0ral/master
...
loop: unstable-2018-10-02 -> unstable-2018-12-04
2018-12-05 13:45:55 +02:00
Alexey Shmalko
d5090fe57c
Merge pull request #51542 from marsam/feature/update-python-svgwrite
...
pythonPackages.svgwrite: 1.1.6 -> 1.2.1
2018-12-05 13:44:44 +02:00
Alexey Shmalko
184aacbd99
Merge pull request #51428 from tomberek/rig_init
...
rig: init at 1.11
2018-12-05 13:41:45 +02:00
markuskowa
0236b34561
Merge pull request #51386 from cryptix/update/gitea
...
gitea: 1.5.3 -> 1.6.0
2018-12-05 12:39:28 +01:00
Alexey Shmalko
ca08e67544
Merge pull request #51544 from marsam/update-term2svg
...
termtosvg: 0.3.0 -> 0.6.0
2018-12-05 13:35:26 +02:00