Commit Graph

142984 Commits

Author SHA1 Message Date
Averell Dalton
561959bab8 x2goclient: 4.1.2.1 -> unstable-2018-11-30, fix build 2018-12-05 20:38:08 -05:00
Maximilian Bosch
0afa5cd443
Merge pull request #51577 from mayflower/nextcloud-update
nextcloud: 14.0.3 -> 14.0.4
2018-12-06 02:24:56 +01:00
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
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
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
Alexey Shmalko
16fb6c7d91
Merge pull request #51550 from fuwa0529/update-aeon
altcoins.aeon: 0.12.6.0 -> 0.12.8.0
2018-12-05 13:27:59 +02:00
Jörg Thalheim
4e45eab9f7
Merge pull request #51513 from gnidorah/python-fontconfig
pythonPackages.python-fontconfig: regenerate sources using cython
2018-12-05 11:23:26 +00:00
Joe Hermaszewski
33e7330440
libgpiod: init at 2018-10-07
Co-Authored-By: expipiplus1 <github@sub.monoid.al>
2018-12-05 11:18:31 +00:00
Linus Heckemann
9504292b1e Merge remote-tracking branch 'origin/master' into weechat-unwrapped 2018-12-05 12:12:42 +01:00
Trolli Schmittlauch
99231a36bb dino: 2018-11-27 -> 2018-11-29 (#51557) 2018-12-05 11:12:12 +00:00
Florian Klink
99c37b0d86
Merge pull request #51547 from marsam/fix-curtsies-build
pythonPackages.curtsies: fix build
2018-12-05 11:52:45 +01:00
Jörg Thalheim
df2e442853
radare2: 3.1.2 -> 3.1.3 2018-12-05 10:44:41 +00:00
Jörg Thalheim
caaaaa7fbb
Merge pull request #51495 from dingxiangfei2009/use-interactive-bash-for-gce
Use Interactive bash for GCE
2018-12-05 09:58:43 +00:00
Robert Schütz
8f2d5e6d07
Merge pull request #50308 from Synthetica9/arrelle-update
pythonPackages.arelle: 2017-08-24 -> 18.3
2018-12-05 10:50:37 +01:00
Sarah Brofeldt
906bad8fe1
Merge pull request #51556 from sveitser/hivemind-init
hivemind: init at 1.0.4
2018-12-05 10:10:42 +01:00
Vincent Laporte
f698c0c418 ocamlPackages.frontc: 3.4 -> 3.4.1 2018-12-05 08:49:40 +00:00
Vincent Laporte
b3411342a4 ocamlPackages.zmq: fix build with non-default OCaml 2018-12-05 08:48:59 +00:00
sveitser
09a59a9fa3
hivemind: init at 1.0.4 2018-12-05 16:31:08 +08:00
Michael Raskin
0d78065299
Merge pull request #51554 from pcrama/add-cl-jpeg-pdf-typesetting
Add cl-jpeg, cl-pdf & cl-typesetting, no extra external deps
2018-12-05 07:55:05 +00:00
Michael Raskin
be1d5e83c7
Merge pull request #51552 from lopsided98/reptyr-update
reptyr: 0.6.2 -> 0.7.0
2018-12-05 07:53:37 +00:00
Philippe
f03c9c25ac Add cl-jpeg, cl-pdf & cl-typesetting, no extra external deps 2018-12-05 07:01:40 +01:00
Lionello Lunesu
4b843a8106 go-ethereum: 1.8.17 -> 1.8.19 2018-12-05 13:40:07 +08:00
Ben Wolsieffer
3c22d57743 reptyr: 0.6.2 -> 0.7.0 2018-12-04 23:46:29 -05:00
Austin Seipp
3ebdd65ad7 foundationdb: x86_64-linux only
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2018-12-04 22:32:54 -06:00
Austin Seipp
c9fd7dc0ee foundationdb60: 6.0.15 -> 6.0.17
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2018-12-04 22:32:54 -06:00
fuwa
4121e93149 altcoins.aeon: 0.12.6.0 -> 0.12.8.0 2018-12-05 12:21:29 +08:00
Matthew Bauer
ceee97c038
Merge pull request #48803 from matthewbauer/crossOverlays
Adding pkgsStatic: a fully static overlay
2018-12-04 22:16:31 -06:00
Eric Bailey
aad111f567
skhd: 0.2.2 -> 0.3.0 2018-12-04 22:15:51 -06:00
Mario Rodas
d9f90bae6d
pythonPackages.curtsies: fix build 2018-12-04 23:01:45 -05:00
Matthew Bauer
6d90a8b894 top-level/stage.nix: add static overlay
Adds the static overlay that can be used to build Nixpkgs statically.
Can be used like:

  nix build pkgsStatic.hello

Not all packages build, as some rely on dynamic linking.
2018-12-04 21:56:03 -06:00
Mario Rodas
e728f2dab5
pythonPackages.qasm2image: fix build 2018-12-04 22:23:34 -05:00
Mario Rodas
c564ca83ee
pythonPackages.CairoSVG: 2.1.3 -> 2.2.1 2018-12-04 22:21:43 -05:00
Matthew Bauer
53a67891ab ncurses: make shared linking optinoal
when enableShared = false, we set --without-shared flag.
2018-12-04 21:16:43 -06:00
Mario Rodas
d1e477509c
termtosvg: 0.3.0 -> 0.6.0 2018-12-04 22:16:36 -05:00
Wael M. Nasreddine
e212b99751 amass: 2.8.3 -> 2.8.5 2018-12-04 19:15:28 -08:00
Matthew Bauer
e999def159 zlib: clean up static/shared distincion
This is kind of a mess, but basically:

- static=true, shared=true means to build statically but move it to
  the static output
- static=true, shared=false means to build statically and leave it in
  the main output
- static=false, shared=true means to not build static at all

Confusingly, the old default was static=true, shared=true even though
static=false? Still can’t figure out what was meant by that.
2018-12-04 21:14:41 -06:00
Matthew Bauer
5e06294276 darwin/libiconv: fix static/shared logic
The conditional was incorrect - postInstall script should only hsppen
when enableShared = true.
2018-12-04 21:13:24 -06:00
Matthew Bauer
8726f6a558 stdenv/adapters.nix: fixup makeStaticBinaries
- makeStaticBinaries don’t work on Darwin (no stable ABI!)
- Need to make sure NIX_CFLAGS_LINK appends
- isStatic is not used anymore
2018-12-04 21:12:17 -06:00
Matthew Bauer
b966d3c583 treewide: remove static packages
Nixpkgs is meant to link everything dynamically. We don’t want to
expose static packages at the top level. If some package needs
statically built binaries, it should use a custom override.
2018-12-04 21:10:45 -06:00
Matthew Bauer
a3a6ad7a01 stdenv: implement crossOverlays
crossOverlays only apply to the packages being built, not the build
packages. It is useful when you don’t care what is used to build your
packages, just what is being built. The idea relies heavily on the
cross compiling infrastructure. Using this implies that we need to
create a cross stdenv.
2018-12-04 21:06:46 -06:00
Matthew Bauer
9d8de9ffaa c-ares: don’t set configure flags
These aren’t needed with dontDisableStatic
2018-12-04 20:58:19 -06:00
Mario Rodas
e8bfc317fd
pythonPackages.svgwrite: 1.1.6 -> 1.2.1 2018-12-04 21:41:08 -05:00
worldofpeace
572b514582
Merge pull request #51229 from marsam/feature/fedpkg-cleanup
fedpkg: remove unneeded patch
2018-12-04 21:15:32 -05:00
Austin Seipp
3aa9091162 buildRustCreate: export RUSTDOC during cargo config
See https://github.com/NixOS/nixpkgs/pull/50452#issuecomment-443455411

Signed-off-by: Austin Seipp <aseipp@pobox.com>
2018-12-04 19:51:51 -06:00
Ding Xiang Fei
f4414da64a use interactive bash for gce 2018-12-05 09:47:01 +08:00
Tom Bereknyei
232f76ad2d
rig: init at 1.11 2018-12-04 19:22:45 -05:00
Tim Steinbach
16f42b3694 kafka: Add 2.1 2018-12-05 00:06:07 +00:00
Tim Steinbach
17a7e0d89e kafka: 2.0.0 -> 2.0.1 2018-12-05 00:06:07 +00:00
Philipp
169e279711 kodi-cli: init at 1.1.1
* kodi-cli: init at 1.1.1 (#50892)

* kodi-cli: nitpicks

nitpicks applied are:

  - The pname thing
    staging-next has been merged.

  - Moved to tools/misc
    applications/video is more appropriate for video applications.
    This is a script used to interact with one.

  - Changed platforms to unix
    This script can only be used where kodi is present.
2018-12-05 00:27:26 +01:00
Travis Athougies
b682e03e12 libgpg-error: enable Aarch32 support for musl
* Add ARM32 musl support for libgpg-error (#51013)
* libgpg-error: link headers instead of copying
2018-12-05 00:25:54 +01:00
koral
01a7fa8813 loop: unstable-2018-10-02 -> unstable-2018-12-04 2018-12-05 00:19:33 +01:00
Michishige Kaito
688c765f7c bitlbee-discord: 0.4.1 -> 0.4.2 2018-12-04 22:45:43 +00:00
Florian Klink
478654da76
Merge pull request #51526 from mayflower/gitlab-11-5-1
gitlab: 11.5.0 -> 11.5.1
2018-12-04 23:15:17 +01:00
Dmitry Kalinkin
aa85911be5
Merge pull request #49716 from eadwu/vscode/insiders
vscode,vscode-insiders: fix insiders build
2018-12-04 16:55:25 -05:00
Edmund Wu
d41e868e02
vscode,vscode-extensions: fix insiders build 2018-12-04 16:51:47 -05:00
Renaud
b38dd07eaa
nsjail: fix path to new{u|g}idmap (#51523) 2018-12-04 22:47:48 +01:00
Peter Simons
059c61d001 haskell-esqueleto: mark the build as broken 2018-12-04 22:08:46 +01:00
Peter Simons
82bb8cb934 haskell-hspec-core: use latest version when compiling with ghc-8.6.x 2018-12-04 22:08:46 +01:00
Peter Simons
63f5ed9f96 xmobar: disable the failing test suite to fix the build
The test suite tries to access the ALSA system and fails.
2018-12-04 22:08:46 +01:00
Peter Simons
d5726e6ad9 haskell-brick: update ghc-8.6.x override for the new version 2018-12-04 22:08:46 +01:00
Peter Simons
697a421fdc haskell-shelly: enable the test suite again 2018-12-04 22:08:46 +01:00
Peter Simons
72b7f7f65b hledger: update overrides for version 1.12 2018-12-04 22:08:46 +01:00
Peter Simons
752b1484e4 hackage-packages.nix: automatic Haskell package set update
This update was generated by hackage2nix v2.12-4-g121c563 from Hackage revision
b55c0469b4.
2018-12-04 22:08:46 +01:00
Peter Simons
187e892a61 LTS Haskell 12.21 2018-12-04 22:08:45 +01:00
Robin Gloster
c2b54dcee5
gitlab-shell: fix hard-coded path 2018-12-04 21:27:23 +01:00
Robin Gloster
88b63b2505
gitlab: 11.5.0 -> 11.5.1 2018-12-04 21:27:23 +01:00
Dmitry Kalinkin
c64e5ccc2f
Merge pull request #51419 from eadwu/vscode-extensions.ms-python.python/2018.11.0
vscode-extensions.ms-python.python: 2018.10.1 -> 2018.11.0
2018-12-04 15:23:01 -05:00
Dmitry Kalinkin
9dec684c89
Merge pull request #51420 from eadwu/vscode-extensions.WakaTime.vscode-wakatime/1.2.4
vscode-extensions.WakaTime.vscode-wakatime: 1.2.3 -> 1.2.4
2018-12-04 15:21:28 -05:00
Jörg Thalheim
8c74bea7b8
Merge pull request #51353 from krebs/nix-writers
build-support writers: content can be string or file
2018-12-04 20:13:36 +00:00
Robert Schütz
315b4c4543 pythonPackages.sphinx_1_2: remove 2018-12-04 21:12:10 +01:00
Patrick Hilhorst
eaef9bc7d6 pythonPackages.arelle: 2017-08-24 -> 18.3 2018-12-04 21:11:05 +01:00
José Romildo Malaquias
e728ff5ade zafiro-icons: 0.7.2 -> 0.7.3 2018-12-04 17:45:41 -02:00
worldofpeace
e7ff7b9318
Merge pull request #51253 from worldofpeace/pywbem-update
pythonPackages.pywbem: 0.10.0 -> 0.12.6
2018-12-04 12:58:19 -05:00
gnidorah
445f79af1c pythonPackages.python-fontconfig: regenerate sources using cython 2018-12-04 20:22:26 +03:00
Jörg Thalheim
a995836356
dino: enable parallel building 2018-12-04 17:19:27 +00:00
Johan Thomsen
7f06f36ffb kubernetes: 1.12.2 -> 1.12.3 (#51482) 2018-12-04 18:02:34 +01:00
Eelco Dolstra
fca4fbeba9
Revert "libgit2: 0.26.6 -> 0.26.8"
This reverts commit 28b4b4b1e4.

Fixes #51416.
2018-12-04 17:50:45 +01:00
lassulus
995defbb9b build-support writers: content can be string or file 2018-12-04 16:40:32 +01:00
Alexey Shmalko
33b9aa4f35
Merge pull request #51272 from binarin/anki-python3.7-fix
anki: 2.1.6-beta1 -> 2.1.6-beta2, fix python 3.7
2018-12-04 16:26:25 +02:00
Jörg Thalheim
fc02ed8b30
Merge pull request #51385 from symphorien/pyflame
pyflame: init at 1.6.7
2018-12-04 14:11:09 +00:00
Renaud
b6cc4ae367
Merge pull request #51494 from romildo/upd.nordic-polar
nordic-polar: init at 1.3.0
2018-12-04 15:07:56 +01:00
Renaud
911aa08afc
Merge pull request #51492 from romildo/upd.materia-theme
materia-theme: 20181115 -> 20181125
2018-12-04 15:06:12 +01:00
Jörg Thalheim
2758a38701
Merge pull request #51504 from alyssais/patch-2
doc: reminder to upgrade linux-libre with linux
2018-12-04 13:53:13 +00:00
Alexey Shmalko
dd818c8d8f
Merge pull request #51499 from kylewlacy/plex-media-player_2-23-0
plex-media-player: 2.14.1 -> 2.23.0
2018-12-04 15:13:53 +02:00
Alexey Shmalko
48daad824e
Merge pull request #51507 from timokau/spotify-1.0.94
spotify: 1.0.93.242.gc2341a27-15 -> 1.0.94.262.g3d5c231c-9
2018-12-04 15:01:34 +02:00
José Romildo Malaquias
c46915c9c1 materia-theme: move to pkgs/data/themes 2018-12-04 10:56:57 -02:00
José Romildo Malaquias
eff0cf020f materia-theme: 20181115 -> 20181125 2018-12-04 10:50:48 -02:00
José Romildo Malaquias
5fc63b32f7 nordic-polar: init at 1.3.0 2018-12-04 10:45:13 -02:00
Timo Kaufmann
2f98b1c112 spotify: 1.0.93.242.gc2341a27-15 -> 1.0.94.262.g3d5c231c-9 2018-12-04 13:33:34 +01:00
Alyssa Ross
fa749ac858
linux_latest-libre: document finding latest rev
https://github.com/NixOS/nixpkgs/pull/51403#issuecomment-444064006
2018-12-04 12:08:30 +00:00
Cole Mickens
d13f9de5ef
noto-fonts: update 2017-10-24 -> 2018-11-30
Signed-off-by: Cole Mickens <cole.mickens@gmail.com>
2018-12-04 04:05:53 -08:00
Alyssa Ross
d9eb8c760e
doc: reminder to upgrade linux-libre with linux
https://github.com/NixOS/nixpkgs/pull/51403#issuecomment-444061264
2018-12-04 12:04:03 +00:00
Jörg Thalheim
bf90c317ec
Merge pull request #51417 from jvassev/vault
vault: 0.11.2 -> 0.11.5
2018-12-04 10:58:34 +00:00
Jörg Thalheim
49a9bd626d
Merge pull request #51501 from timokau/pygraphviz-path
python.pkgs.pygraphviz: add graphviz path
2018-12-04 10:52:08 +00:00
Timo Kaufmann
21de751e74 python.pkgs.pygraphviz: add graphviz path 2018-12-04 11:44:40 +01:00
Jörg Thalheim
708164fe94
Merge pull request #51457 from binarin/nvidia-legacy-340-no-longer-patch-414
nvidia_legacy_340: Remove unneeded/failing patch
2018-12-04 10:42:38 +00:00
Maximilian Bosch
37f0a4f199
Merge pull request #51497 from hedning/nix-completions-bump
nix-{zsh,bash}-completions version bump
2018-12-04 11:18:25 +01:00
Kyle Lacy
50069a0eea plex-media-player: 2.14.1 -> 2.23.0 2018-12-04 00:11:48 -08:00
Tor Hedin Brønner
af4e0db357
Merge pull request #51254 from hedning/fix-balsa-enchant
balsa: switch from enchant to gtkspell3
2018-12-04 09:08:02 +01:00
Tor Hedin Brønner
ad8f5ca2bb nix-bash-completions: 0.6.6 -> 0.6.7 2018-12-04 08:34:23 +01:00
Tor Hedin Brønner
5bc0270211 nix-zsh-completions: 0.4.1 -> 0.4.2 2018-12-04 08:32:29 +01:00
Renaud
ec95e55eed
Merge pull request #51490 from flokli/zoom-us-2.5.146186.1130
zoom-us: 2.4.129780.0915 -> 2.5.146186.1130
2018-12-04 08:23:53 +01:00
Herwig Hochleitner
da511852c1 leiningen: move leiningen-x.x-standalone.jar out of share/java
fixes #51448
2018-12-04 02:58:58 +01:00
Florian Klink
c4177f4e5b zoom-us: 2.4.129780.0915 -> 2.5.146186.1130
fixes [CVE-2018-15715](https://nvd.nist.gov/vuln/detail/CVE-2018-15715)
2018-12-04 02:12:56 +01:00
Silvan Mosberger
e9ecd7f872 nix-index: Wrap with nix-env in PATH (#51165)
This fixes an impurity in nix-index: Previously it would take the nix-env
binary from the users PATH. I discovered this while trying to run nix-index in a
systemd service, which by default doesn't have nix-env in its path. The
errors it threw were not informative at all and it took me hours to
finally figure out the reason.
2018-12-04 08:54:37 +08:00
Vladyslav M
19532f2ba2
Merge pull request #51439 from jfrankenau/update-iwd
iwd: 0.11 -> 0.12
2018-12-04 02:24:35 +02:00