Commit graph

28198 commits

Author SHA1 Message Date
Orivej Desh b97ebadd02 altcoins.litecoin: enable parallel building 2018-09-25 13:10:18 +00:00
Orivej Desh 3aa413e08c altcoins.bitcoin-abc: enable parallel building 2018-09-25 12:08:35 +00:00
Orivej Desh c200b49c71 altcoins.bitcoin-xt: enable parallel building 2018-09-25 12:00:11 +00:00
Orivej Desh 3083cf6326 qradiolink: enable parallel building 2018-09-25 11:41:56 +00:00
Orivej Desh b0d2aa4477 bitcoin-classic: enable parallel building 2018-09-25 11:38:17 +00:00
Orivej Desh a729229d19 mumble: build with -std=c++11
It fails to build with its default -std=c++98 with protobuf 3.6.
2018-09-25 10:47:01 +00:00
Uli Baum 6b4abb9fa7 monodevelop: mark broken
build has failed since 2018-03-08
cc maintainer @obadz
2018-09-25 11:59:26 +02:00
Will Dietz c82ac80d99
Merge pull request #47258 from dtzWill/fix/bitcoin-long-compile
bitcoin: don't build things not used, enable parallel building
2018-09-25 02:47:11 -05:00
Sarah Brofeldt a27863cd20
Merge pull request #47286 from jb55/clightning-bump
clightning: 0.6.0 -> 0.6.1
2018-09-25 08:49:10 +02:00
Will Dietz 8d83441a4c bitcoin: disable tests based on doCheck, per reviewer feedback
Thanks!
2018-09-25 01:31:45 -05:00
Matthew Bauer 2240445067 emacsMacport: 7.1 → 7.2
Fixes a critical issue with macOS

[NEWS](https://bitbucket.org/mituharu/emacs-mac/raw/master/NEWS-mac)

* emacs-26.1-mac-7.2 (2018-09-09)

** Fixed bugs

*** Buffer contents are not displayed on macOS 10.14.
This is mainly because now NSViews are backed by Core Animation Layer
(layer-backed) by default and non-deferred drawing into views no
longer works.  Instead of switching to deferred drawing (i.e., draw
only inside -[NSView drawRect:]), we draw into our own backing bitmap
in a non-deferred way as before, and update the view contents with the
resulting image via -[NSView updateLayer].  This "application-side
double buffering" is also available on OS X 10.8 - macOS 10.13 if you
set the frame parameter `inhibit-double-buffering' to nil when
creating a frame.  Just like on macOS 10.14, such a frame does not do
LCD smoothing.

*** Screenshot grabbed via Services is displayed in wrong size when we
have display mirroring between Retina and non-Retina displays.

*** Cursor movement just after frame resize sometimes leaves garbage.

*** Crash by the Fall_threads call from the GUI thread at the select
emulation when there are multiple Lisp threads.

*** Info title has ASCII underline unlike other window systems.

*** Vertical scroll bar is created as horizontal if frame font height
is short.

** Improvements

*** macOS 10.14 adds property :appearance to (mac-application-state).
The value may be "NSAppearanceNameAqua" or "NSAppearanceNameDarkAqua".

*** Add new color format "mac:COLOR-LIST-NAME:COLOR-NAME" and
"mac:COLOR-NAME" (shorthand for "mac:System:COLOR-NAME").  The actual
color may be different depending on the global appearance setting on
macOS 10.14.  For example, "mac:textColor" is black on the Light Mode
but is white on the Dark Mode.

*** Default frame colors respect appearance setting on macOS 10.14.
Now the default frame foreground/background color is
"mac:textColor"/"mac:textBackgroundColor", respectively.  Changes of
the system setting of the global appearance are dynamically reflected.

*** New function `mac-color-list-alist' to get the available
combinations of COLOR-LIST-NAMEs and COLOR-NAMEs.  Note that this
value is dependent on user environment and OS version.  Also, some
combinations may represent image patterns rather than colors.  For the
former cases, `(color-values "mac:COLOR-LIST-NAME:COLOR-NAME")'
returns nil.
2018-09-24 21:39:11 -05:00
Robin Gloster ed85eb5433 gitlab: 11.2.3 -> 11.3.0 2018-09-25 03:53:32 +02:00
Robin Gloster cbc21b8b90 gitaly: 0.117.2 -> 0.120.0 2018-09-25 03:53:32 +02:00
Robin Gloster 545c07108f gitlab-shell: 8.1.1 -> 8.3.3 2018-09-25 03:53:32 +02:00
Robin Gloster 96c1765bac gitlab-workhorse: 6.0.0 -> 6.1.0 2018-09-25 03:53:32 +02:00
Kristoffer Thømt Ravneberg 6946d97ce4 gitlab-ee: init at 11.2.3 2018-09-25 03:53:32 +02:00
Kristoffer Thømt Ravneberg 51c1830147 gitlab: 10.8.0 -> 11.2.3 2018-09-25 03:53:32 +02:00
Kristoffer Thømt Ravneberg bfc8d80c6e gitlab-shell: 7.1.2 -> 8.1.1 2018-09-25 03:53:32 +02:00
Kristoffer Thømt Ravneberg 949172f289 gitaly: 0.100.0 -> 0.117.2 2018-09-25 03:53:32 +02:00
Kristoffer Thømt Ravneberg 45aa373fa9 gitlab-workhorse: 4.2.0 -> 6.0.0 2018-09-25 03:53:32 +02:00
Felipe Espinoza 60909fddf8 compactor: 0.11.0 -> 0.11.1 (#47271) 2018-09-24 23:24:22 +02:00
William Casarin 2aa0b85653 clightning: 0.6.0 -> 0.6.1
Update to the latest release.

Highlights for c-lightning users
--------------------------------

  - Less stuck payments: Liveness ping test before locking up funds with peers.
  - Better routing: now considers size of channels.
  - Fewer spurious closes: fee estimate improvements, and new feerates command
  - Several annoying bugs fixed.

Highlights for the network
--------------------------

  - Gossipd now less spammy with channel_update.
  - option_data_loss_protect to protect peers against being out-of-date.
  - Payment errors now refer to the correct channel.

Internal Improvements
---------------------

  - Simplified client flow; after init message exchange by connectd, each is
    isolated in its own daemon.
  - JSON parameter handling vastly simplfied.
  - Python testing framework now uses proper fixtures, and split into separate
    files.
  - Many other cleanups and clarifications.
  - We keepachangelog.com!

Signed-off-by: William Casarin <jb55@jb55.com>
2018-09-24 11:03:00 -07:00
Jörg Thalheim d123b30ed1
Merge pull request #47279 from asymmetric/asymmetric/remove-dapptools
Remove DappHub projects
2018-09-24 18:49:18 +01:00
Lorenzo Manacorda 6017c6fa5b *: remove DappHub projects
DappHub maintains a separate overlay at
https://github.com/dapphub/dapptools/blob/master/overlay.nix
2018-09-24 19:24:06 +02:00
Andreas Rammhold 24c58bd1cc
Merge pull request #47257 from taku0/firefox-bin-62.0.2
firefox, firefox-bin:: 61.0.2 -> 62.0.2,  firefox-esr: 60.2.0esr -> 60.2.1esr [Moderate security fixes]
2018-09-24 17:54:26 +02:00
Elis Hirwing 4406745ab4 testssl: 2.9.5-6 -> 2.9.5-7 (#47274)
Changelog: https://github.com/drwetter/testssl.sh/releases/tag/v2.9.5-7
2018-09-24 17:40:24 +02:00
R. RyanTM fe287e755f mixxx: 2.1.3 -> 2.1.4 (#47012)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/mixxx/versions
2018-09-24 17:23:58 +02:00
Edward Tjörnhammar f9c4a74b73
jetbrains.pycharm-professional: 2018.2.3 -> 2018.2.4 2018-09-24 16:39:40 +02:00
Edward Tjörnhammar feb57bc9b9
jetbrains.pycharm-community: 2018.2.3 -> 2018.2.4 2018-09-24 16:39:11 +02:00
Edward Tjörnhammar 546dfb51a6
jetbrains.goland: 2018.2.2 -> 2018.2.3 2018-09-24 16:38:35 +02:00
Edmund Wu 4b1e3376d1 jetbrains.webstorm: 2018.2.2 -> 2018.2.3 2018-09-24 16:35:17 +02:00
Edmund Wu 9b69a2520a jetbrains.ruby-mine: 2018.2.1 -> 2018.2.2 2018-09-24 16:35:17 +02:00
Edmund Wu 88692dd376 jetbrains.rider: 2018.2 -> 2018.2.3 2018-09-24 16:35:17 +02:00
Edmund Wu 3bc77e5977 jetbrains.pycharm-professional: 2018.2.2 -> 2018.2.3 2018-09-24 16:35:17 +02:00
Edmund Wu b30e64bb8a jetbrains.pycharm-community: 2018.2.2 -> 2018.2.3 2018-09-24 16:35:17 +02:00
Edmund Wu 6f78c882da jetbrains.phpstorm: 2018.2.2 -> 2018.2.3 2018-09-24 16:35:17 +02:00
Edmund Wu 7ce6836e95 jetbrains.idea-ultimate: 2018.2.2 -> 2018.2.4 2018-09-24 16:35:17 +02:00
Edmund Wu e2ff1bceb3 jetbrains.idea-community: 2018.2.2 -> 2018.2.4 2018-09-24 16:35:17 +02:00
Edmund Wu 397215b8b6 jetbrains.goland: 2018.2.1 -> 2018.2.2 2018-09-24 16:35:17 +02:00
Edmund Wu 0174f259ac jetbrains.datagrip: 2018.2.2 -> 2018.2.4 2018-09-24 16:35:17 +02:00
Edmund Wu 98fe28e5ab jetbrains.clion: 2018.2.2 -> 2018.2.4 2018-09-24 16:35:17 +02:00
Jörg Thalheim 841613d3fd
Merge pull request #47148 from LnL7/darwin-broken-e
eiskaltdcpp: mark linux only
2018-09-24 13:58:53 +01:00
Franz Pletz e9faf00a90
obs-studio: 21.1.2 -> 22.0.2 2018-09-24 09:34:05 +02:00
Michael Raskin 610203c126
Merge pull request #47259 from AveryLychee/fix/treesheets
treesheets: 2017-03-27 -> 2018-08-18
2018-09-24 05:27:46 +00:00
Mateusz Kowalczyk 2162bebb85
Merge pull request #46981 from r-ryantm/auto-update/opusfile
opusfile: 0.10 -> 0.11
2018-09-24 12:43:48 +09:00
Avery Lychee 14058e3cbc treesheets: 2017-03-27 -> 2018-08-18 2018-09-24 13:06:43 +10:00
Will Dietz b322a8bd3b bitcoin: parallel build, please! :)
(cherry picked from commit dba5534b06c7dffe97ce644b0a5790aca8527a2e)
2018-09-23 22:05:37 -05:00
Will Dietz 8b184ec2e1 bitcoin: don't build tests that aren't used, don't build benchmarks
(cherry picked from commit d51c0a87b2ebf756015784839ec9c13950c45323)
2018-09-23 22:05:35 -05:00
taku0 e5778a9991 firefox-esr: 60.2.0esr -> 60.2.1esr 2018-09-24 09:13:03 +09:00
xeji ccd2862130
Merge pull request #47141 from vbgl/jackline-20180511
jackline: 2017-12-24 -> 2018-05-11
2018-09-23 23:29:10 +02:00
R. RyanTM 965836aada mwic: 0.7.5 -> 0.7.6 (#46995)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/mwic/versions
2018-09-23 22:36:37 +02:00
Jan Tojnar 7adbbae0cc
Merge pull request #47240 from joakim1999/master
quodlibet: add glib-networking dep
2018-09-23 21:05:22 +02:00
Joakim Pettersvold 6371a6e10b quodlibet: add glib-networking dep
Added glib-networking as dependency so that quodlibet can securely connect to audio streams
2018-09-23 20:33:02 +02:00
Sarah Brofeldt 7fb0194d41
Merge pull request #45161 from Gerschtli/update/ts3
teamspeak_server: 3.0.13.6 -> 3.3.0
2018-09-23 20:24:48 +02:00
Samuel Dionne-Riel fd2b54be2d
Merge pull request #43390 from nyanloutre/pythonApplication.electron-cash.3.3
electron-cash: 3.1.6 -> 3.3.1
2018-09-23 14:18:11 -04:00
Jörg Thalheim e1ef438026
Merge pull request #47234 from Ma27/fix-tig-zsh-completion
tig: fix zsh completion
2018-09-23 19:17:40 +01:00
Maximilian Bosch 4bf1a7d975
tig: fix zsh completion
The ZSH completion script of `tig` basically imports the bash completion
script and uses it as completion approach. Unfortunately the script
takes several assumptions about the directory structure using
`$funcsourcetrace`[1] that don't apply on NixOS.

The easiest workaround is t opatch the completion script and import the
bash completion script from `$out`.

[1] http://zsh.sourceforge.net/Doc/Release/Zsh-Modules.html#index-funcsourcetrace
2018-09-23 19:36:22 +02:00
nyanloutre 1004dae356
electron-cash: Reminder to remove the QT wrapper 2018-09-23 18:50:38 +02:00
nyanloutre f5a5752630
electron-cash: fix #24256 2018-09-23 18:44:28 +02:00
nyanloutre e33a7dfd54
electron-cash: 3.3 -> 3.3.1 2018-09-23 18:44:25 +02:00
nyanloutre c5af608dd2
electron-cash: 3.1.6 -> 3.3 2018-09-23 18:44:21 +02:00
Boris f799dff21b gitAndTools.pre-commit: 1.11.0 -> 1.11.1 (#47211) 2018-09-23 14:01:56 +02:00
markuskowa 3f883b443c gnuradio-limesdr: init at 1.0.0-RC (#47176) 2018-09-23 10:08:50 +02:00
lewo 1dc8728589
Merge pull request #46951 from r-ryantm/auto-update/smplayer
smplayer: 18.6.0 -> 18.9.0
2018-09-23 09:40:04 +02:00
Frederik Rietdijk 56853dc6d8
Merge pull request #45941 from NixOS/staging-next
Staging next
2018-09-23 09:31:28 +02:00
Charles Duffy bd13ef5944 Introduce desync, an alternate implementation of casync (#47195)
desync isn't as feature-rich as casync, but has a focus on production usability
and implementation quality which may make it a more appropriate tool.
2018-09-23 01:22:07 +02:00
xeji 434c2610f6
Merge pull request #47194 from markuskowa/gr-updates
gnuradio-[rds,nacl]: 2016-08-27 -> 1.0.0, 2015-11-05 -> 2017-04-10
2018-09-23 01:19:15 +02:00
Will Dietz c20caa6a6f gnomecast: 1.4.0 -> 1.4.1 (#47191) 2018-09-23 00:31:07 +02:00
Joachim Fasting f2ba1a4284
tor-browser-bundle-bin: 8.0 -> 8.0.1 2018-09-22 20:13:55 +02:00
Markus Kowalewski 3063794c88
gnuradio-nacl: 2015-11-05 -> 2017-04-10 2018-09-22 19:56:48 +02:00
R. RyanTM ef04436f7b latte-dock: 0.8.0 -> 0.8.1 (#47027)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/latte-dock/versions
2018-09-22 13:44:33 -04:00
Kévin Rauscher 7a5483e8b4 mopidy-iris: 3.26.1 -> 3.26.2 (#47161) 2018-09-22 19:21:26 +02:00
Orivej Desh 1491d4f268 yed: 3.18.1 -> 3.18.1.1 2018-09-22 16:59:38 +00:00
Markus Kowalewski 3b0d303604
gnuradio-rds: 2016-08-27 -> 1.0.0 2018-09-22 18:35:51 +02:00
rbasso 1a5788010e exercism: 3.0.6 -> 3.0.9 (#47170) 2018-09-22 18:09:41 +02:00
adisbladis 8f5a37829d
subsurface: 4.8.1 -> 4.8.2 2018-09-22 21:41:03 +08:00
Michael Weiss 1357f6492c androidStudioPackages.{dev,canary}: 3.3.0.9 -> 3.3.0.10 2018-09-22 15:27:42 +02:00
xeji 9e87b56dd1
zathura: 0.4.0 -> 0.4.1 (#47140)
This fixes the synctex-related build failure with texlive 2018
(currently on 18.09).
2018-09-22 14:17:34 +02:00
adisbladis 230fd49738
weechat: Add version and meta to buildEnv package
Currently the output from `nix search` and similar tools are lacking
important meta data
2018-09-22 19:46:21 +08:00
adisbladis 54cbcdf6a9
Merge pull request #46921 from rawtaz/open-vm-tools
open-vm-tools: 10.1.10 -> 10.3.0
2018-09-22 19:17:52 +08:00
Orivej Desh 7545b7dcf3 platypus: 2017-03-07 -> 2018-07-22 2018-09-21 22:42:28 +00:00
Orivej Desh cefd38b721 samtools: 1.8 -> 1.9 2018-09-21 22:42:28 +00:00
Michael Weiss a526719184 signal-desktop: 1.16.1 -> 1.16.2 2018-09-21 21:46:41 +02:00
Daiderd Jordan 52ad963b50
eiskaltdcpp: mark linux only
The darwin build fails and other platforms will probably run into
similar issues.

    Determining if the Q_WS_QWS exist failed with the following output:
    Change Dir: /tmp/nix-build-eiskaltdcpp-2.2.10.drv-0/source/build/CMakeFiles/CMakeTmp

    Run Build Command:"/nix/store/qfag24z6xsr6jkyi8gb4cv62rp945rbk-gnumake-4.2.1/bin/make" "cmTC_14e67/fast"
    /nix/store/qfag24z6xsr6jkyi8gb4cv62rp945rbk-gnumake-4.2.1/bin/make -f CMakeFiles/cmTC_14e67.dir/build.make CMakeFiles/cmTC_14e67.dir/build
    make[1]: Entering directory '/private/tmp/nix-build-eiskaltdcpp-2.2.10.drv-0/source/build/CMakeFiles/CMakeTmp'
    Building CXX object CMakeFiles/cmTC_14e67.dir/CheckSymbolExists.cxx.o
    /nix/store/2gdwhdzhy4iwkp7fh8v6gy6nxj1zi9pv-clang-wrapper-5.0.2/bin/clang++   -I/nix/store/8dzqilmdr0p3qmmrxh51xk7wli6grm0i-qt-4.8.7/include -F/nix/store/8dzqilmdr0p3qmmrxh51xk7wli6grm0i-qt-4.8.7/lib  -std=c++0x -pipe -Wformat -Werror=format-security  -arch x86_64   -o CMakeFiles/cmTC_14e67.dir/CheckSymbolExists.cxx.o -c /tmp/nix-build-eiskaltdcpp-2.2.10.drv-0/source/build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx
    /tmp/nix-build-eiskaltdcpp-2.2.10.drv-0/source/build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx:8:19: error: use of undeclared identifier 'Q_WS_QWS'
      return ((int*)(&Q_WS_QWS))[argc];
                  ^

/cc ZHF #45961
2018-09-21 20:49:37 +02:00
Daiderd Jordan 1a1a5af252
Merge pull request #47051 from LnL7/darwin-broken-d
broken darwin packages (d)
2018-09-21 20:15:00 +02:00
taku0 da9823672f firefox: 61.0.2 -> 62.0.2 2018-09-22 03:13:50 +09:00
taku0 5b79f81a39 firefox-bin: 61.0.2 -> 62.0.2 2018-09-22 03:12:20 +09:00
Vincent Laporte dbd5783791
jackline: 2017-12-24 -> 2018-05-11 2018-09-21 17:04:24 +00:00
Vincent Laporte 26aa4c36ba
ocamlPackages.erm_xmpp: 0.3 -> 0.3+20180112 2018-09-21 17:04:23 +00:00
R. RyanTM 45de1594d7 clipgrab: 3.6.9 -> 3.7.0 (#47082)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/clipgrab/versions
2018-09-21 18:33:16 +02:00
R. RyanTM 2ed26f5838 shotcut: 18.08.14 -> 18.09.16 (#46963)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/shotcut/versions
2018-09-21 17:56:47 +02:00
Jörg Thalheim f9f17baba6
Merge pull request #47085 from r-ryantm/auto-update/elisa
elisa: 0.2.1 -> 0.2.80
2018-09-21 12:30:17 +01:00
Jörg Thalheim 9822498311
Merge pull request #47110 from Tomahna/mopidy-iris
mopidy-iris: 3.26.0 -> 3.26.1
2018-09-21 12:19:41 +01:00
Jörg Thalheim d519ef1829
Merge pull request #47050 from r-ryantm/auto-update/gpodder
gpodder: 3.10.3 -> 3.10.5
2018-09-21 12:17:38 +01:00
Kevin Rauscher f0e0c6d72e mopidy-iris: 3.26.0 -> 3.26.1 2018-09-21 11:58:21 +02:00
Jörg Thalheim a709d11dd1 gogs: 0.11.53 -> 0.11.66 (#47073) 2018-09-21 10:41:17 +02:00
Michael Raskin 7f2344406c
Merge pull request #47000 from r-ryantm/auto-update/links2
links2: 2.16 -> 2.17
2018-09-21 05:07:29 +00:00
R. RyanTM ce6debe900 elisa: 0.2.1 -> 0.2.80
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/elisa/versions
2018-09-20 17:11:15 -07:00
R. RyanTM 4d35759735 feh: 2.27.1 -> 2.28 (#47055)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/feh/versions
2018-09-21 00:49:51 +02:00
roconnor fab901ddd3 bitcoin: 0.16.2 -> 0.16.3 (#46891) 2018-09-21 00:35:39 +02:00