Commit graph

145731 commits

Author SHA1 Message Date
Timo Kaufmann 22c16ed300 Merge remote-tracking branch 'upstream/master' into sage-8.5 2018-12-29 12:16:02 +01:00
Fritz Otlinghaus cf97a0372f gif-for-cli: init at unstable-2018-08-14 2018-12-29 18:57:18 +08:00
Domen Kožar 45f5453359
haskell packages: RSA test suite doesn't compile on GHC 8.6 2018-12-29 10:54:04 +00:00
wkpatrick 99552ca12a synapse-bt 2018-06-04 -> 2018-10-17 2018-12-29 04:33:45 -05:00
worldofpeace 94164f0d04
Merge pull request #53017 from dtzWill/update/strace-4.26
strace: 4.25 -> 4.26
2018-12-28 22:45:47 -05:00
worldofpeace dfc35f1203 strace: change licenses
"The test suite is now provided under the terms of
the GNU General Public License version 2 or later."

"All the rest of strace is now provided under the terms of
the GNU Lesser General Public License version 2.1 or later."

> 27739ebccc/NEWS (L4)
2018-12-28 22:27:32 -05:00
worldofpeace bd98a3d770 pythonPackages.update-copyright: disable tests, add homepage 2018-12-28 19:31:33 -05:00
Will Dietz 4c1fd5b595
Merge pull request #52921 from LnL7/editline-redisplay
editline: add redisplay patch
2018-12-28 17:31:11 -06:00
Timo Kaufmann 95909d4fb6 Revert "sage: preload openblasCompat"
This reverts commit 4900bbee17.

The issue that was supposed to fix is now fixed by lazy-loading rpy2 and
makign sure scipy is loaded before that.
That is not quite as nice, but preloading is now causing its own issues
with openblas 0.3.4:
https://github.com/xianyi/OpenBLAS/issues/1936
2018-12-28 23:06:05 +01:00
Timo Kaufmann 360eddd3a3 sage: remove outdated patch files 2018-12-28 23:06:05 +01:00
Timo Kaufmann 6f0f06ec89 sage: 8.5.rc1 -> 8.5 2018-12-28 23:06:05 +01:00
adisbladis 0ff4d0a516
fish: 2.7.1 -> 3.0.0 2018-12-28 21:23:24 +00:00
Will Dietz 2aaabb02bf zstd: 1.3.7 -> 1.3.8
https://github.com/facebook/zstd/releases/tag/v1.3.8
2018-12-28 13:13:31 -06:00
Will Dietz e529cdb3fb strace: 4.25 -> 4.26
https://github.com/strace/strace/releases/tag/v4.26
2018-12-28 13:10:07 -06:00
Will Dietz 19894adb77
Merge pull request #52443 from dtzWill/fix/aom-version-and-shared
libaom: create shared libraries, fix version reported in aom.pc
2018-12-28 13:04:44 -06:00
Profpatsch aebec73071 pythonPackages.update-copyright: init at 0.6.2 2018-12-28 19:45:53 +01:00
José Romildo Malaquias 958a669e83 qogir-theme: init at 2018-11-12 (#52918)
* qogir-theme: init at 2018-11-12

* qogir-theme: fix pname

Co-Authored-By: romildo <malaquias@gmail.com>
2018-12-28 13:07:06 -05:00
Jan Tojnar a90974ab45
gnome3.gvfs: Add TLS support
GLib Gio’s GFile uses gvfs daemon for opening files over HTTP protocol.
To support HTTPS, we need to include glib-networking.

Closes: https://github.com/NixOS/nixpkgs/issues/52963
2018-12-28 17:40:28 +01:00
Anton-Latukha 0ad3f6e23d libogg: add description & longDescription 2018-12-28 18:00:23 +02:00
Anton-Latukha 9ea4552bab libmkv: add description & longDescription 2018-12-28 18:00:18 +02:00
Anton-Latukha b86a583592 mp4v2: add maintainer
add
2018-12-28 17:58:53 +02:00
Anton-Latukha cca5cd2e33 mp4v2: add description & longDescription 2018-12-28 17:58:47 +02:00
CrazedProgrammer cc2573028b urn: 0.7.1 -> 0.7.2 2018-12-28 16:39:13 +01:00
Joaquim Pedro França Simão 3e69bdcc94
picoLisp 16.12 -> 18.12
{ stdenv, fetchurl, jdk, makeWrapper }:
with stdenv.lib;

stdenv.mkDerivation rec {
  name = "picoLisp-${version}";
  version = "18.12";
  src = fetchurl {
    url = "https://www.software-lab.de/${name}.tgz";
    sha256 = "0hvgq2vc03bki528jqn95xmvv7mw8xx832spfczhxc16wwbrnrhk";
  };
  buildInputs = [makeWrapper] ++ optional stdenv.is64bit jdk;
  patchPhase = ''
    sed -i "s/which java/command -v java/g" mkAsm

    ${optionalString stdenv.isAarch32 ''
      sed -i s/-m32//g Makefile
      cat >>Makefile <<EOF
      ext.o: ext.c
        \$(CC) \$(CFLAGS) -fPIC -D_OS='"\$(OS)"' \$*.c
      ht.o: ht.c
        \$(CC) \$(CFLAGS) -fPIC -D_OS='"\$(OS)"' \$*.c
      EOF
    ''}
  '';
  sourceRoot = ''picoLisp/src${optionalString stdenv.is64bit "64"}'';
  installPhase = ''
    cd ..

    mkdir -p "$out/share/picolisp" "$out/lib" "$out/bin"
    cp -r . "$out/share/picolisp/build-dir"
    ln -s "$out/share/picolisp/build-dir" "$out/lib/picolisp"
    ln -s "$out/lib/picolisp/bin/picolisp" "$out/bin/picolisp"


    makeWrapper $out/bin/picolisp $out/bin/pil \
      --add-flags "$out/lib/picolisp/lib.l" \
      --add-flags "@lib/misc.l" \
      --add-flags "@lib/btree.l" \
      --add-flags "@lib/db.l" \
      --add-flags "@lib/pilog.l"

    mkdir -p "$out/share/emacs"
    ln -s "$out/lib/picolisp/lib/el" "$out/share/emacs/site-lisp"
  '';

  meta = {
    description = "A simple Lisp with an integrated database";
    homepage = https://picolisp.com/;
    license = licenses.mit;
    platforms = platforms.all;
    broken = stdenv.isDarwin; # times out
    maintainers = with maintainers; [ raskin tohl ];
  };

  passthru = {
    updateInfo = {
      downloadPage = "http://www.software-lab.de/down.html";
    };
  };
}
2018-12-28 11:30:57 -03:00
Austin Seipp f2c99c61cf cockroachdb: 2.1.1 -> 2.1.3
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2018-12-28 07:59:48 -06:00
Andrey Komarov bc7aa5d202 iverilog: 2017.08.12 -> 2018.12.15 2018-12-28 07:53:36 -06:00
Timo Kaufmann d84ac4f43f
fflas-ffpack: add patch to fix flaky test (#53005) 2018-12-28 14:02:43 +01:00
Timo Kaufmann 22d0f320e8
Merge pull request #52767 from timokau/vim-plugin-updates
Fix vim-plugin dependencies
2018-12-28 13:48:21 +01:00
Timo Kaufmann 58b4351b38 vimPlugins.taglist-vim: fix build
The override actually broke the build, no idea why it was added
originally. The build works fine without it.
2018-12-28 13:31:58 +01:00
Ivan Kozik 1c8fea18e2 kernel/patches.nix: remove hard tabs 2018-12-28 09:06:56 +01:00
Peter Hoeg 778ebcd1b0 virtmanager-qt: 0.60.88 -> 0.70.91 2018-12-28 14:47:22 +08:00
Peter Hoeg da5aecce81
Merge pull request #52957 from peterhoeg/u/esx
check-esxi-hardware: 20161013 -> 20181001
2018-12-28 14:41:05 +08:00
worldofpeace 3ae459f3c0
Merge pull request #52876 from marsam/init-detect-secrets
detect-secrets: init at 0.11.0
2018-12-27 21:08:18 -05:00
Ryan Mulligan be3496fb64
Merge pull request #52836 from r-ryantm/auto-update/matomo
matomo: 3.6.1 -> 3.7.0
2018-12-27 17:11:14 -08:00
worldofpeace fe5375916d
Merge pull request #52789 from romildo/upd.zafiro-icons
zafiro-icons: 0.7.7 -> 0.7.9
2018-12-27 17:27:08 -05:00
Michael Weiss 805e89ce32 python3Packages.goobook: 3.1 -> 3.3
Unfortunately this package was unmaintained for years, which is why I
had to change quite some stuff (it's probably still not perfect) and set
myself as maintainer (replacing the existing ones, which maintained it
until version 1.9).
2018-12-27 21:15:05 +01:00
Aristid Breitkreuz 8d84ba7037 ideviceinstaller: init at 2018-06-01 2018-12-27 20:05:11 +01:00
Tobias Happ 4c2c27c94c dwm-status: 1.5.0 -> 1.6.0 (#52982) 2018-12-27 19:58:43 +01:00
Orivej Desh 830599debe nix1: fix build with boehmgc 7.6.8
It needs -lgc and -lgccpp, but boehmgc pkgconfig file specifies only -lgc.

Broken in https://hydra.nixos.org/build/82223544
2018-12-27 17:53:29 +00:00
Orivej Desh 992fc1ae54 libs3: 2017-06-01 -> 2018-12-03 2018-12-27 17:34:29 +00:00
Orivej Desh 39b3cad721 k3d: fix build 2018-12-27 17:31:28 +00:00
Orivej Desh 6d315ab1fa allegro4: fix build with mesa 18.2.5
GL/glxext.h include guard was changed in
https://cgit.freedesktop.org/mesa/mesa/commit/include/GL/glxext.h?h=mesa-18.2.5&id=06eb33960e85994bd4ee952395dde6d1762c93b5
2018-12-27 17:15:27 +00:00
Aristid Breitkreuz 167e748d94 insync: 1.4.5.37069 -> 1.5.5.37367 2018-12-27 18:07:06 +01:00
Frederik Rietdijk 364c59dd94 python.pkgs.pytest_xdist: pytest-forked is needed during runtime, fixes #45060 2018-12-27 15:26:22 +01:00
Dmitry Kalinkin 8df467ebd6
qutebrowser: drop QtWebKit support
From the qutebrowser README:

  "support for QtWebKit will be dropped soon"
2018-12-27 09:14:22 -05:00
Dmitry Kalinkin 07a67363b7
pyqt5_with_qtwebkit: add warning comment 2018-12-27 09:14:21 -05:00
Dmitry Kalinkin 97ec7a9ab9
pythonPackages.qtconsole: build on darwin
Fixes: d7ef9a7107 ('python36Packages.qtconsole: 4.4.2 -> 4.4.3')
2018-12-27 09:14:21 -05:00
Dmitry Kalinkin 20d60c8238
treewide: use pythonPackages.pyqt5_with_qtwebkit where QtWebKit is needed 2018-12-27 09:14:21 -05:00
Dmitry Kalinkin 3c198294e7
pyqt5: refactor 2018-12-27 09:14:21 -05:00
Dmitry Kalinkin facefec139
pyqt5: make qtwebkit optional, disable by default
qtwebkit appears to be unsupported in Qt 5.11. We are using some old port
475d653afd/pkgs/development/libraries/qt-5/5.11/default.nix (L39-L48)
and it is broken on darwin.
2018-12-27 09:14:20 -05:00
Dmitry Kalinkin 9b07d48d9c
pyqt5: remove old fixes
Since about 5 hydra evaluations ago the build log has:

substituteStream(): WARNING: pattern 'install_dir=pydbusmoddir' doesn't match anything in file 'configure.py'
substituteStream(): WARNING: pattern 'ModuleMetadata(qmake_QT=['webkitwidgets'])' doesn't match anything in file 'configure.py'

Looking at the original configure.py I don't see any mention of
pydbusmoddir and ModuleMetadata seems to be set like the patch suggests:

    'QtWebKitWidgets':      ModuleMetadata(
                                    qmake_QT=['webkitwidgets',
                                            'printsupport']),

It appears that we don't need the fix anymore.

Reverts: d3ed0ab32b ('PyQt: fix build')
2018-12-27 09:13:07 -05:00
R. RyanTM ebe05a7109 bacula: 9.2.2 -> 9.4.1 (#52924)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/bacula/versions
2018-12-27 15:12:54 +01:00
Elis Hirwing 544e7157b3 dmrconfig: 1.0 -> 1.1 (#52961)
Changes: https://github.com/sergev/dmrconfig/releases/tag/1.1
2018-12-27 15:11:28 +01:00
Dmitry Kalinkin 3edd5cb227
Merge pull request #51294 from eadwu/nvidia_x11/legacy_390
nvidia: expose nvidia_x11_legacy390
2018-12-27 09:08:53 -05:00
Frederik Rietdijk 2534dddaa9 pandoc: fix build, unbreaks metrics job 2018-12-27 14:42:07 +01:00
markuskowa b8f0e2ee2f
Merge pull request #52847 from r-ryantm/auto-update/lmdb
lmdb: 0.9.22 -> 0.9.23
2018-12-27 14:22:51 +01:00
markuskowa 98561c789c
Merge pull request #52597 from lopsided98/lvm2-no-parallel
lvm2: disable parallel building
2018-12-27 14:21:25 +01:00
Orivej Desh 21f04bc66a pythonPackages.sip: enable parallel building 2018-12-27 13:10:59 +00:00
markuskowa d12025627f
Merge pull request #52950 from agracie/fix-mkl
mkl: fix hash on Darwin
2018-12-27 14:02:37 +01:00
Orivej Desh (NixOS) 880de7a9bc
Merge pull request #52956 from orivej/sip-module
pythonPackages.sip: make sip-module name overridable
2018-12-27 12:04:29 +00:00
José Romildo Malaquias ad587caf6a zafiro-icons: 0.7.7 -> 0.7.9 2018-12-27 09:45:17 -02:00
Orivej Desh 666be18aa3 opentx: fix build, support building tests
It checks for "nano" with "if(NOT NANO STREQUAL NO)".

Broken since https://hydra.nixos.org/build/83296608 (#48286).
2018-12-27 11:40:50 +00:00
Orivej Desh 4ec84c297c pythonPackages.pyqt5: import sip as PyQt5.sip
pyqt5 5.11 has switched from sip to PyQt5.sip.
2018-12-27 11:17:22 +00:00
Orivej Desh bf1a563af0 pythonPackages.sip: make sip-module name overridable
The author of sip wants it to be a private dependency of other packages by
making it importable under different names.
2018-12-27 11:17:22 +00:00
Vladyslav M ae002fe44e
Merge pull request #52955 from Gerschtli/update/cargo-release
cargo-release: 0.10.0 -> 0.10.5
2018-12-27 12:57:18 +02:00
Timo Kaufmann af465293f1 vimPlugins: use fixed point 2018-12-27 11:55:53 +01:00
Mario Rodas 3258b00009
detect-secrets: init at 0.11.0 2018-12-27 05:23:32 -05:00
Mario Rodas 17eb96dabd
pythonPackages.unidiff: init at 0.5.5 2018-12-27 05:21:53 -05:00
lewo 23ebff30a3
Merge pull request #52109 from djahandarie/master
dockerTools.buildImage: fix two bugs introduced in c88337c9ac
2018-12-27 11:17:51 +01:00
Antoine Eiche 43cbba0274 dockerTools.examples.runAsRootParentImage: init
Example of running something as root on top of a parent image.
This is a regression test related to the PR #52109.
2018-12-27 11:15:35 +01:00
Vladyslav Mykhailichenko db5fe5d240
cargo-release: fix darwin build 2018-12-27 11:46:50 +02:00
Timo Kaufmann 96b6396101 vimUtils.buildVimPlugin: derive name from pname and version 2018-12-27 10:34:14 +01:00
Timo Kaufmann edf8b984fa vimPlugins: Update 2018-12-27 10:32:27 +01:00
Mario Rodas 1764870813 python37: fix darwin build
Remove issue24658 patch because is already fixed and backported to
Python 3.7 178d1c0777
2018-12-27 09:27:59 +01:00
Mario Rodas 31680c54e1 python36: fix darwin build
Remove issue24658 patch because is already fixed and backported to
Python 3.6 a5ebc205be
2018-12-27 09:27:59 +01:00
Pascal Wittmann 9f2f78b7e2
Merge pull request #52820 from r-ryantm/auto-update/pdfpc
pdfpc: 4.2.1 -> 4.3.0
2018-12-27 08:45:11 +01:00
Pascal Wittmann 9ddad11c16
Merge pull request #52877 from r-ryantm/auto-update/global
global: 6.6.2 -> 6.6.3
2018-12-27 08:44:36 +01:00
worldofpeace f3d4c91a97
Merge pull request #52954 from worldofpeace/granite/5.2.2
granite: 5.2.1 -> 5.2.2
2018-12-27 02:32:57 -05:00
worldofpeace ea331218a0 granite: various cleanups
This is just stuff that's in #48637 already that I wanted to sync.

In detail it's:

  - Patching in the use of meson

  - Add wrapGAppsHook and hicolor-icon-theme
    There's a demo application and granite
     provides some generic icons.

  - Included patches so third party apps still work
2018-12-27 02:27:29 -05:00
Peter Hoeg 010502472f check-esxi-hardware: 20161013 -> 20181001 2018-12-27 14:22:27 +08:00
worldofpeace 3cf8821ce3
Merge pull request #52786 from romildo/upd.matcha
matcha: 2018-11-12 -> 2018-12-24
2018-12-26 23:55:17 -05:00
worldofpeace 3e6e9f5639
Merge pull request #52872 from r-ryantm/auto-update/kid3
kid3: 3.6.2 -> 3.7.0
2018-12-26 23:45:33 -05:00
worldofpeace 984c843181
Merge pull request #52895 from ivan/qbittorrent-4.1.5
qbittorrent: 4.1.4 -> 4.1.5
2018-12-26 22:06:22 -05:00
Tobias Happ f15466ecf7 cargo-release: 0.10.0 -> 0.10.5 2018-12-27 04:04:11 +01:00
worldofpeace 3ccb95ea81
Merge pull request #52949 from ivan/comment-fix
all-packages.nix: remove obsolete comments
2018-12-26 22:00:33 -05:00
worldofpeace 9f06d1885d granite: 5.2.1 -> 5.2.2 2018-12-26 21:48:47 -05:00
Tobias Happ 47da938133 pythonPackages.dependency-injector: 3.14.2 -> 3.14.3 2018-12-27 03:46:51 +01:00
Orivej Desh 8112354f4f cura: 3.4.1 -> 3.6.0 2018-12-27 02:21:02 +00:00
Orivej Desh 3ce19d96b3 curaengine: 3.4.1 -> 3.6.0 2018-12-27 02:19:24 +00:00
Orivej Desh b742250b31 python3Packages.uranium: 3.5.1 -> 3.6.0 2018-12-27 02:18:31 +00:00
Orivej Desh ab95c92349 python3Packages.libarcus: 3.4.1 -> 3.6.0 2018-12-27 02:18:31 +00:00
Orivej Desh cbdaa29c3e python3Packages.libsavitar: init at 3.6.0 2018-12-27 02:18:31 +00:00
agracie a3fc481b76 mkl: fix hash on Darwin 2018-12-26 20:57:08 -05:00
Orivej Desh 9b3204d41b pythonPackages.uranium: add missing dependency on shapely
Needed since 3.5.1: 0c6d90b42d
2018-12-27 01:34:15 +00:00
Ivan Kozik 78c56d758d all-packages.nix: remove obsolete comments
cgroup2 cpu controller support was merged into Linux 4.15:
22714a2ba4
2018-12-27 01:18:12 +00:00
Matthew Bauer 9d9a993b73
Merge pull request #52867 from matthewbauer/emacs-mac-7.4
emacs-mac: 7.2 → 7.4
2018-12-26 17:49:00 -06:00
R. RyanTM 4c10970b1a
gpsprune: 19.1 -> 19.2
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/gpsprune/versions
2018-12-27 00:02:44 +01:00
Samuel Dionne-Riel 889ef35303 linuxPackages_4_{19,20}: works around bug with overlayfs.
See: https://github.com/NixOS/nixpkgs/issues/48828#issuecomment-445208626
2018-12-26 22:51:31 +00:00
Dmitry Kalinkin 8e79ebc523
Merge pull request #52934 from veprbl/pr/arrow_cpp_gtest_fix
arrow-cpp: fix build
2018-12-26 17:43:38 -05:00
Alyssa Ross 626cc7eb21
Merge pull request #52860 from marsam/init-ruby-26
ruby_2_6: init at 2.6.0
2018-12-26 20:49:08 +00:00
Orivej Desh 5c5c83fb4e qt5: update nixpkgs directory in readme 2018-12-26 20:21:35 +00:00
Tom Hunger da01f2a745 pyro-ppl: init at 0.3.0 2018-12-26 19:17:09 +00:00
Tom Hunger 4411b29065 opt-einsum: init at 2.3.2 2018-12-26 19:16:05 +00:00
aszlig b0f9e47271
ip2unix: 1.2.0 -> 2.0.0
New upstream features:

  - New ignore rule option, which prevents conversion to Unix socket.
  - A way to increase the verbosity via the -v command line argument.
  - Reams of log messages in addition to the FATAL errors we had so far.
  - Use Syslog format for logging if stderr is a socket.
  - Set FD_CLOEXEC on systemd socket file descriptors as soon as they're
    associated.

Upstream fixes:

  - Use right endian conversion functions in port matching.
  - Pass is_unix to child socket on accept to prevent accidentally
    replacing an already converted Unix socket by a new Unix socket. The
    latter would be a socket that's not accepted, which would eventually
    lead to an error.
  - Correctly handle setsockopts used with other levels than SOL_SOCKET.

Upstream changes:

  - Improve wording and add more descriptions in README and manpage.
  - The implementation for fetching systemd sockets now no longer uses
    libsystemd, thus the build-time dependency is no longer required.
  - New serialiser for passing rules to the preloaded library in a more
    compact form instead of using YAML, so it's less likely that we'll
    hit the maximum stack size.
  - Systemd sockets are now associated during rule initialisation and
    thus behave more predictable in complex setups.

On our side, the dependency on systemd is only needed for running the
tests, as it uses the systemd-socket-activate helper. Socket association
is now done by ip2unix directly and doesn't rely on libsystemd anymore.

Built and tested on i686-linux and x86_64-linux.

Signed-off-by: aszlig <aszlig@nix.build>
2018-12-26 19:36:49 +01:00
Jan Tojnar a2fe6bca05
gtest: fix includedir in cmake config files 2018-12-26 19:00:49 +01:00
Peter Simons bc8f67e37f
Merge pull request #52923 from r-ryantm/auto-update/bind
bind: 9.12.3 -> 9.12.3-P1
2018-12-26 18:12:57 +01:00
Dmitry Kalinkin 956b4a87a8 arrow-cpp: fix build
Fixes: 1f6b095061 ('gtest: build shared library')
2018-12-26 19:57:32 +03:00
lewo 1223d9f479
Merge pull request #52761 from vdemeester/update-minishift
minishift: 1.27.0 -> 1.29.0
2018-12-26 17:42:31 +01:00
Alexey Shmalko 9d3fbbeda5
Merge pull request #52925 from r-ryantm/auto-update/appstream
appstream: 0.12.3 -> 0.12.4
2018-12-26 18:20:51 +02:00
Alexey Shmalko 42ab51f2e8
Merge pull request #52908 from r-ryantm/auto-update/couchdb
couchdb2: 2.2.0 -> 2.3.0
2018-12-26 17:36:45 +02:00
Mario Rodas 7d141ec326
ruby_2_6: init at 2.6.0 2018-12-26 09:32:24 -05:00
Jan Tojnar cb5bc310d3
haskellPackages.Frames: unbreak
vinyl ≥ 0.10 is in the LTS.
2018-12-26 15:19:10 +01:00
markuskowa d66f37e813
Merge pull request #52826 from r-ryantm/auto-update/mtools
mtools: 4.0.22 -> 4.0.23
2018-12-26 15:18:38 +01:00
Jan Tojnar a6b74907f7
haskellPackages.yi-core: unbreak
yi-language ≥ 0.18 is in the LTS now
2018-12-26 15:03:15 +01:00
Jan Tojnar f4b4dc2d0b
haskellPackages.safe-money-aeson: unbreak
The following fix is no longer necessary after a Stackage update:

https://github.com/NixOS/nixpkgs/issues/46467
2018-12-26 14:53:21 +01:00
markuskowa 83a310aa5f
Merge pull request #52857 from r-ryantm/auto-update/libcec
libcec: 4.0.3 -> 4.0.4
2018-12-26 14:28:45 +01:00
markuskowa cfcf8ca772
Merge pull request #52873 from r-ryantm/auto-update/intel-gmmlib
intel-gmmlib: 18.3.0 -> 18.4.1
2018-12-26 14:20:57 +01:00
R. RyanTM 302fe24374 appstream: 0.12.3 -> 0.12.4
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/appstream/versions
2018-12-26 05:16:52 -08:00
Peter Simons 4f4b151ae2 haskell-scalendar: drop obsolete override 2018-12-26 14:03:50 +01:00
Peter Simons 08ca69a513 haskell-hoopl: drop obsolete override 2018-12-26 14:02:07 +01:00
Peter Simons 4f4313046e Comment out some obsolete Haskell overrides to fix evaluation. 2018-12-26 13:46:12 +01:00
Peter Simons 46cb1538a1 haskellPackages: update default package set to ghc-8.6.3 (LTS 13.x) 2018-12-26 13:46:12 +01:00
Peter Simons 1131244889 hackage-packages.nix: automatic Haskell package set update
This update was generated by hackage2nix v2.13-1-gda47f40 from Hackage revision
752c180edc.
2018-12-26 13:46:12 +01:00
Peter Simons 91ec96d77d LTS Haskell 13.0 (updates to ghc-8.6.3) 2018-12-26 13:46:11 +01:00
R. RyanTM f884c6c1de bind: 9.12.3 -> 9.12.3-P1
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/bind/versions
2018-12-26 04:34:11 -08:00
Melkor333 889815fd7b wpgtk: 5.7.4 -> 5.8.6 2018-12-26 13:33:00 +01:00
Frederik Rietdijk 2f62e382af python.pkgs.pywal: fix path to feh 2018-12-26 13:30:58 +01:00
Daiderd Jordan 238f4a0a90
editline: add redisplay patch 2018-12-26 13:19:26 +01:00
Frederik Rietdijk 3f93d68ebb python.pkgs.pywal: hardcode path to feh 2018-12-26 12:58:28 +01:00
Samuel Dionne-Riel b861ebb4c6 linuxPackages: 4.14 -> 4.19 2018-12-26 11:03:10 +00:00
Samuel Dionne-Riel 7093970e1d linuxPackages.ena: 1.5.2 -> 2.0.2 2018-12-26 11:03:10 +00:00
Samuel Dionne-Riel d8cf1db93f linuxPackages.ndiswrapper: updated to fix build on recent kernels
While the upstream commit says 4.18, it builds for 4.19 and 4.20.
2018-12-26 11:03:10 +00:00
Frederik Rietdijk 8862d554c7 wpgtk: use python37 and fix dependency on pywal 2018-12-26 12:01:20 +01:00
Frederik Rietdijk 281981a6df pywal: move to pythonPackages and inject path to convert 2018-12-26 11:58:59 +01:00
R. RyanTM de0de8903f grml-zsh-config: 0.15.1 -> 0.15.2
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/grml-zsh-config/versions
2018-12-26 11:23:03 +01:00
R. RyanTM 964342e231 checkSSLCert: 1.78.0 -> 1.79.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/check_ssl_cert/versions
2018-12-26 11:22:36 +01:00
José Romildo Malaquias 3970c9799d terminology: 1.3.0 -> 1.3.2 2018-12-26 11:22:07 +01:00
Peter Simons 1628567bfd
Merge pull request #52887 from r-ryantm/auto-update/gprolog
gprolog: 1.4.4 -> 1.4.5
2018-12-26 11:07:32 +01:00
R. RyanTM 02fdc64be3 csound: 6.12.0 -> 6.12.2
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/csound/versions
2018-12-26 11:07:10 +01:00
xeji 0b0c67e537
clipgrab: 3.7.1 -> 3.7.2 (#52912)
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-12-26 10:54:23 +01:00
R. RyanTM 1834a3ed22 python37Packages.antlr4-python3-runtime: 4.7.1 -> 4.7.2
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-antlr4-python3-runtime/versions
2018-12-26 10:45:22 +01:00
R. RyanTM 2a20920fe2 facter: 3.12.1 -> 3.12.2
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/facter/versions
2018-12-26 10:44:55 +01:00
R. RyanTM 28263b02a9 log4cplus: 2.0.2 -> 2.0.3
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/log4cplus/versions
2018-12-26 10:44:35 +01:00
R. RyanTM 338cf1a7fc igv: 2.4.15 -> 2.4.16
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/igv/versions
2018-12-26 10:44:01 +01:00
R. RyanTM fc27f4b297 gauche: 0.9.6 -> 0.9.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/gauche/versions
2018-12-26 10:36:30 +01:00
R. RyanTM 567b3093da featherpad: 0.9.1 -> 0.9.2
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/featherpad/versions
2018-12-26 10:33:41 +01:00
R. RyanTM 832621c98a capstone: 3.0.5 -> 4.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/capstone/versions
2018-12-26 01:21:03 -08:00
Vladyslav M aac952c48a
Merge pull request #52881 from Jomik/master
alacritty: 0.2.3 -> 0.2.4
2018-12-26 10:51:52 +02:00
R. RyanTM 04b5445341 python37Packages.breathe: 4.11.0 -> 4.11.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/python3.7-breathe/versions
2018-12-26 09:51:31 +01:00
R. RyanTM 35639a1a80 doitlive: 4.2.0 -> 4.2.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/doitlive/versions
2018-12-26 09:43:25 +01:00