Commit Graph
139415 Commits
Author SHA1 Message Date
Peter Simons fe95c5c64f hackage-packages.nix: automatic Haskell package set update
This update was generated by hackage2nix v2.9.2-9-g07ca643 from Hackage revision
https://github.com/commercialhaskell/all-cabal-hashes/commit/d2c0010babe227d411d0f5c207ae391c5b56b5e6.
2018-05-06 19:31:04 +02:00
Peter Simons 11096b2cfe hackage2nix: disable failing Hydra builds
@gebner: hledger-diff no longer compiles
2018-05-06 19:31:03 +02:00
Joachim FandGitHub e97d8fc0cb Merge pull request #39455 from Ekleog/matterbridge-configfile
matterbridge module: add configPath option as a workaround, waiting for nix encryption
2018-05-06 17:29:43 +00:00
zimbatm 716d877d0f gitea: 1.4.0 -> 1.4.1 2018-05-06 17:11:41 +01:00
Jörg Thalheim 17950abc78 wllvm: 1.1.5 -> 1.2.0 2018-05-06 15:05:41 +01:00
Jan TojnarandGitHub d8e3ce750f Merge pull request #40009 from jD91mZM2/termplay
termplay: init at 2.0.4
2018-05-06 15:34:36 +02:00
Daiderd JordanandGitHub e6d555817d Merge pull request #40014 from periklis/darwin-skhd
skhd: 0.0.12 -> 0.0.14
2018-05-06 15:02:30 +02:00
jD91mZM2 2d08df417f termplay: init at 2.0.4 2018-05-06 14:49:18 +02:00
Sander van der BurgandGitHub 67ef59fd26 Merge pull request #39405 from timokau/node-three-mathjax
[WIP] Node: Init mathjax, threejs
2018-05-06 13:18:39 +02:00
Jörg ThalheimandGitHub 6013c9598c Merge pull request #40021 from marsam/feature/enable-scrapy-darwin
pythonPackages.scrapy: enable darwin build
2018-05-06 11:27:56 +01:00
Maximilian BoschandJörg Thalheim f57986597f mkcast: drop and replace with xscast (#40026)
The package has been declared as unmaintained, `xscast` is the way to
go: https://github.com/KeyboardFire/mkcast#obsolete

Replacement for `mkcast` (https://github.com/KeyboardFire/mkcast#obsolete)
2018-05-06 11:27:31 +01:00
Tristan HelmichandJoachim F 560e91f1a7 nixos/matrix-synapse service: url_preview_url_blacklist fix (#40027)
Moved list of ip ranges to url_preview_ip_range_blacklist defaults.
Fixes #40017
2018-05-06 09:49:04 +00:00
Joachim FandGitHub 7a39cb90a1 Merge pull request #39685 from ikervagyok/wine37
wine-{Unstable,Staging}: 3.5 -> 3.7
2018-05-06 09:47:46 +00:00
Joachim FandGitHub b0c9aa5d9f Merge pull request #40024 from dywedir/emby
emby: 3.3.1.0 -> 3.4.0.0
2018-05-06 09:25:25 +00:00
Joachim FandGitHub e43946d287 Merge pull request #40022 from jD91mZM2/powerline-rs
powerline-rs: 0.1.6 -> 0.1.7
2018-05-06 09:25:11 +00:00
Joachim FandGitHub 1ff22c7e7b Merge pull request #39944 from erikarvstedt/refind
refind: fix runtime errors
2018-05-06 09:24:47 +00:00
Joachim FandGitHub cf437beab3 Merge pull request #39996 from jraygauthier/jrg/vscode_cpptools_update_r1
vscode-extension-ms-vscode-cpptools: 0.12.3 -> 0.16.1
2018-05-06 09:20:56 +00:00
Vincent LaporteandGitHub d79e9d3e16 Merge pull request #39656 from vbgl/ocsigen_server-2.9
ocsigen: 2.8 → 2.9; eliom: 6.2.0 → 6.3.0
2018-05-06 11:16:40 +02:00
Joachim FandGitHub 7da1dcaf5a Merge pull request #40018 from danbst/zoom-us-update
zoom-us: update 2.0.106600.0904 -> 2.0.123200.0405, cleanup
2018-05-06 09:10:17 +00:00
Vladyslav Mykhailichenko f76301c6cb emby: 3.3.1.0 -> 3.4.0.0 2018-05-06 09:43:01 +03:00
jD91mZM2 4e906935cc powerline-rs: 0.1.6 -> 0.1.7 2018-05-06 07:29:22 +02:00
Mario Rodas f8351ba5f0 pythonPackages.scrapy: enable darwin build 2018-05-05 23:35:30 -05:00
aszlig 8ce802e8c8 gopass: Add xclip to wrapperPath
This is another dependency needed when invoked with "gopass -c".

I opted for xclip instead of xsel, because xclip is tried first in
order.

Signed-off-by: aszlig <aszlig@nix.build>
Cc: @andir, @suvash, @mkaito
2018-05-06 05:07:39 +02:00
aszlig 42a0b11450 dockerTools.pullImage: Fix build with sandboxing
Regression introduced in 736848723e.

This commit most certainly hasn't been tested with sandboxing enabled
and breaks not only pullImage but also the docker-tools NixOS VM test
because it doesn't find it's certificate path and also relies on
/var/tmp being there.

Fixing the certificate path is the easiest one because it can be done
via environment variable.

I've used overrideAttrs for changing the hardcoded path to /tmp (which
is available in sandboxed builds and even hardcoded in Nix), so that
whenever someone uses Skopeo from all-packages.nix the path is still
/var/tmp.

The reason why this is hardcoded to /var/tmp can be seen in a comment in
vendor/github.com/containers/image/storage/storage_image.go:

  Do not use the system default of os.TempDir(), usually /tmp, because
  with systemd it could be a tmpfs.

With sandboxed builds this isn't the case, however for using Nix without
NixOS this could turn into a problem if this indeed is the case.

So in the long term this needs to have a proper solution.

In addition to that, I cleaned up the expression a bit.

Tested by building dockerTools.examples.nixFromDockerHub and the
docker-tools NixOS VM test.

Signed-off-by: aszlig <aszlig@nix.build>
Cc: @nlewo, @Mic92, @Profpatsch, @globin, @LnL7
2018-05-06 04:57:24 +02:00
Timo Kaufmann 4e9892f845 nodePackages_8_x.mathjax: Init at 2.7.4 2018-05-06 00:56:33 +02:00
Timo Kaufmann b21da37044 nodePackages_8_x.three: Init at 0.92.0 2018-05-06 00:55:10 +02:00
danbst 8143383aab zoom-us: update 2.0.106600.0904 -> 2.0.123200.0405, cleanup
Apart from version update:
- remove some packages from `LD_LIBRARY_PATH`. I haven't found any
references for them. Most of them were copypasted from AUR expression
- found an implicit reference to `pidof`, in my case this caused warnings
about mismatched Glibc version. I've found implicit reference to `sh` too,
with Glibc warning too, but I don't know how to fix this, and looks like it's
only a warning
2018-05-06 01:42:32 +03:00
xejiandGitHub cd960b965f Merge pull request #38622 from obadz/minidlna-module
nixos/minidlna: add loglevel config
2018-05-06 00:13:39 +02:00
xejiandGitHub 71b4afe39a Merge pull request #40012 from bfortz/eid-mw-4.4.1
eid-mw: 4.1.19 -> 4.4.1
2018-05-06 00:05:39 +02:00
Jan TojnarandGitHub 3be8954579 Merge pull request #39985 from jtojnar/drop-legacy-gst
various: {upgrade,drop} GStreamer 0.10 dependency
2018-05-05 23:53:04 +02:00
aszlig 8cf420e62f Merge pull request #39647 (Add KMyMoney)
This adds KMyMoney, a finance manager for KDE plus a few required
dependencies.

I ran the upstream test suite as well as the following manual tests:

  * Basic startup
  * Completing the wizard
  * Add some test transactions
  * GPG encryption
  * Generation of charts and reports
  * Rough check whether OFX integration lists supported financial
    institutions.
  * Small check of AqBanking implementation, whether accounts and users
    can be configured, but didn't test actual connectivity with a
    financial institution.
  * Check of Weboob integration with a test PayPal backend, however also
    just with a dummy account and without actually connecting to PayPal.

On top of that, the application already is being used by the person
requesting me to package this, so I'd guess it works well enough.

I'm merging this without the review from @ttuegel because it only adds
packages and doesn't change anything fundamental about the KDE
ecosystem.

The only change here is to add C++ support to "mpir", where the
maintainer (@7c6f434c) has approved the change.
2018-05-05 23:46:29 +02:00
Matthew Justin BauerandGitHub 21be546c51 Merge pull request #39720 from r-ryantm/auto-update/x42-plugins
x42-plugins: 20170428 -> 20180320
2018-05-05 16:30:04 -05:00
Matthew Justin BauerandGitHub 005d803762 Merge pull request #39919 from plapadoo/ledger-use-python
ledger: enable python command
2018-05-05 16:26:52 -05:00
Matthew Justin BauerandGitHub f14e4caccf Merge pull request #39895 from r-ryantm/auto-update/groonga
groonga: 8.0.1 -> 8.0.2
2018-05-05 16:11:31 -05:00
Matthew Justin BauerandGitHub 08c9a5dfe3 Merge pull request #39755 from r-ryantm/auto-update/Mopidy-Iris
mopidy-iris: 3.17.1 -> 3.17.5
2018-05-05 16:10:56 -05:00
Matthew Justin BauerandGitHub a93ffd1a01 Merge pull request #39763 from r-ryantm/auto-update/jackett
jackett: 0.8.886 -> 0.8.929
2018-05-05 16:10:37 -05:00
Matthew Justin BauerandGitHub 639dd1910d Merge pull request #39765 from r-ryantm/auto-update/kotlin
kotlin: 1.2.40 -> 1.2.41
2018-05-05 16:10:25 -05:00
xejiandGitHub 0efd49c707 Merge pull request #39899 from r-ryantm/auto-update/bitcoin-abc
altcoins.bitcoin-abc: 0.17.0 -> 0.17.1
2018-05-05 22:54:17 +02:00
Matthew Justin BauerandGitHub 3fe9421f50 Merge pull request #39771 from r-ryantm/auto-update/graphicsmagick
graphicsmagick: 1.3.28 -> 1.3.29
2018-05-05 15:50:45 -05:00
Matthew Justin BauerandGitHub fd75da0459 Merge pull request #39739 from r-ryantm/auto-update/pqiv
pqiv: 2.10.3 -> 2.10.4
2018-05-05 15:50:16 -05:00
Matthew Justin BauerandGitHub ea1d75e442 Merge pull request #39925 from Assassinkin/master
Zabbix-agent 3.4
2018-05-05 15:48:14 -05:00
Periklis Tsirakidis bf65cf4d28 skhd: 0.0.12 -> 0.0.14 2018-05-05 22:33:34 +02:00
xejiandGitHub a67cca803f Merge pull request #39941 from romildo/upd.iconpack-obsidian
iconpack-obsidian: init at 4.0.1
2018-05-05 22:28:54 +02:00
xejiandGitHub 76c8e5ea3b Merge pull request #39055 from abbradar/reload-stop
firewall service: run stop commands in reload
2018-05-05 22:13:15 +02:00
Joachim FandGitHub 1be056ca30 Merge pull request #40000 from JohnAZoidberg/docmodule-optional-fix
nixos/documentation: Correct use of lib.optional
2018-05-05 20:09:44 +00:00
Joachim FandGitHub cc2880a7b6 Merge pull request #39902 from romildo/fix.enlightenment
enlightenment: add dependency on mesa_noglu
2018-05-05 20:08:45 +00:00
Joachim FandGitHub d66100fa73 Merge pull request #39898 from romildo/upd.terminology
terminology: 1.1.1 -> 1.2.0
2018-05-05 20:08:28 +00:00
Joachim FandGitHub a587d54517 Merge pull request #39858 from akru/cjdns-v20.2
cjdns: 20.1 -> 20.2
2018-05-05 20:07:45 +00:00
Jan TojnarandGitHub d0110ecfdb Merge pull request #40008 from jonafato/liferea-1.12.3
liferea: 1.12.2 -> 1.12.3
2018-05-05 21:48:03 +02:00
xejiandGitHub dc4aa99080 Merge pull request #39770 from r-ryantm/auto-update/git-remote-gcrypt
gitAndTools.gitRemoteGcrypt: 1.0.3 -> 1.1
2018-05-05 21:24:42 +02:00