Commit graph

131070 commits

Author SHA1 Message Date
Michael Alan Dorman 8df4d87aee xmonad, xmonad-contrib, xmonad-extras: remove superfluous config
xmonad and xmonad-contrib no longer require patches, and
xmonad-contrib and xmonad-extras no longer need to be jailbroken.
2018-08-07 09:25:35 +02:00
Moritz Angermann e1d180725b Update generic-builder.nix
Drop `hasActiveLibrary` altogether. The condition is wrong, `isLibrary` is the correct one. We can have non-static, non-shared libraries as well.
2018-08-07 09:25:35 +02:00
Moritz Angermann e4a61c8b6e [haskell/generic-builder] windows always has an active library
This commit is not really correct. The `hasActiveLibrary` check is wrong.
We can have an active library even if we do not ask for a static lirbary or
dynamic one; we can still have just a set of objet files and archives.
2018-08-07 09:25:35 +02:00
Peter Simons 10b923930c hackage-packages.nix: automatic Haskell package set update
This update was generated by hackage2nix v2.10.2 from Hackage revision
e35bfea89e.
2018-08-07 09:25:35 +02:00
Domen Kožar 750e4888f8 hackage2nix: update list of failing Hydra builds
Ping @jb55 for broken "skeletons".
Ping @khumba for broken "hoppy-*".
2018-08-07 09:25:33 +02:00
Peter Simons 5bd2ca749d LTS Haskell 12.5 2018-08-07 09:25:33 +02:00
adisbladis ae2288be69
Merge pull request #44591 from Drakonis/update/quakespasm
quakespasm: 0.92.1 -> 0.93.1
2018-08-07 15:24:09 +08:00
adisbladis 40ff15faa4
Merge pull request #44592 from Drakonis/update/vkquake
vkquake: 0.97.3 -> 1.00.0
2018-08-07 15:23:07 +08:00
Wael M. Nasreddine 16cfc2a602
pythonPackages.pymysql: 0.6.6 -> 0.9.2; move to python-modules 2018-08-07 00:18:18 -07:00
Daiderd Jordan e4083a7d78
vim_configurable: fix darwin build 2018-08-07 08:45:48 +02:00
Wael M. Nasreddine 1faec393f1
pythonPackages.cli-helpers: init at 1.0.2 2018-08-06 23:43:56 -07:00
adisbladis 6bf0d9f7ed
Merge pull request #44584 from Mic92/nix-review
nix-review: 0.3.0 -> 0.4.0
2018-08-07 14:22:53 +08:00
adisbladis 16a44f8cfe
firefox-beta-bin: 62.0b14 -> 62.0b15 2018-08-07 14:17:13 +08:00
adisbladis e346db09d3
firefox-devedition-bin: 62.0b14 -> 62.0b15 2018-08-07 14:17:00 +08:00
Jörg Thalheim c410121490
Merge pull request #44564 from dtzWill/update/gdb-8.1.1
gdb: 8.1 -> 8.1.1
2018-08-07 06:36:25 +01:00
Unknown 353091da79 vkquake: 0.97.3 -> 1.00.0 2018-08-07 02:07:44 -03:00
Unknown 012203ecee quakespasm: 0.92.1 -> 0.93.1 2018-08-07 02:01:07 -03:00
Silvan Mosberger 593fdd6933
Merge pull request #44585 from symphorien/osquery-platform
osquery: do not rebuild at each nixpkgs commit
2018-08-07 05:52:34 +02:00
Silvan Mosberger 308d7809d3
Merge pull request #44292 from mankyKitty/vscode-exts-update-script
vscode-extensions: Script to generate Nix for "latest" version of all installed vscode extensions
2018-08-07 03:22:56 +02:00
Symphorien Gibol a85fedab2e osquery: do not rebuild at each nixpkgs commit 2018-08-07 02:43:40 +02:00
Jörg Thalheim 893b080e56
Merge pull request #44522 from Ma27/allow-citrix-custom-certs
citrix_receiver: allow custom certs and hooks for the installation
2018-08-07 01:29:49 +01:00
Jörg Thalheim 3a609282a7
Merge pull request #44569 from xeji/p/drop-vimNox
vimNox: drop
2018-08-07 01:26:47 +01:00
Jörg Thalheim 9d825127b5
Merge pull request #44567 from LnL7/python-language-server
python-language-server: 0.18.0 -> 0.19.0
2018-08-07 01:25:38 +01:00
Sean Chalmers 9321785bab vscode-extensions: script to generate Nix for "latest" version of all installed vscode extensions
Added better practices to update_exts script.

Use `jq` instead of `grep` for more reliable JSON querying.

Check for 404 when requesting package.json information to avoid mangled
output.

Added proper failure points for missing vscode package, unknown version,
and if the code executable couldn't be found.

Switched to using a `nix-shell` shebang for even better reliability and
use the `sh` shell to be that little bit more generic.

Script is still clunky and sequential, anything more and I'd need to
write a proper program to do this and that's getting a bit silly? But
people that have a dozen or so extensions might be in for a long wait.

Be explicit about using bash

Improve the use of jq to remove unnecessary use of tr. Hat-tip coretemp.

Add some comments, finally.

Remove the `fetch` function.

Change the `get_ver` function to more accurately demonstrate what it is trying
to do, as well as add in some better error handling for non-200 http responses.

I couldn't make the bash `${param/search/replacement}` work for chopping up the
response in the `get_ver` function, hence the use of `sed`. Hopefully it all
makes a bit more sense now.

Remove github requests.

VSIXPackage is just a zip format in disguise so use a tmpdir and unpackage the
package.json file for the file in question so we can get the precise version
that we're interested in without additional redundant calls to github that may
not provide the right answer anyway.

Add trap to try to clean up the temp folders and clean up as we go.

I can't use 'fetchurl' or even 'nix-prefetch-url' because for the former we
don't yet know the hash that we're after and for the latter there isn't a way to
tie the predownloaded file into the next part of the workflow.

Prevent an unnecessary file from being extracted.

Change the unzip command to read the file we're after to stdout so we can use jq
on it directly instead of creating a file, reading it, then deleting it.

Courtesy of worldofpeace, remove the dependency on coreutils and use the
provided nix-hash function to generate the required hash.

Fix up a comment

Remove use of 'awk' and clean up individual Nix printing with cat to EOF expression.
2018-08-07 10:14:57 +10:00
Jörg Thalheim 5397f056ab nix-review: 0.3.0 -> 0.4.0
- add option to build pull request branch instead of merge.
2018-08-07 01:14:12 +01:00
Franz Pletz 00991101a0
Merge pull request #44560 from kalbasit/nixpkgs-export-buildtmuxplugin
tmuxPlugins: expose mkDerivation for creating a TMUX plugins
2018-08-07 00:00:23 +00:00
Franz Pletz da44b3679c
Merge pull request #44509 from hedning/libinput-1.11.3
libinput: 1.11.0 -> 1.11.3
2018-08-06 23:47:52 +00:00
symphorien 0ca40a51c7 gwyddion, ripser: fix derivation name (#44577) 2018-08-07 01:21:53 +02:00
José Romildo Malaquias 1d60b5c99a mate-screensaver: 1.20.1 -> 1.21.0 (#44572) 2018-08-07 00:39:42 +02:00
xeji bd758ed746
Merge pull request #44533 from Chiiruno/dev/bcachefs
linux_testing_bcachefs: 4.15.2018.04.14 -> 4.15.2018.08.03
2018-08-07 00:37:07 +02:00
Austin Seipp 8397411b40 Revert "libtorrentRasterbar: multi outputs, install python2/3 bindings"
This reverts commit d8e62d202d.
2018-08-06 16:33:38 -05:00
Austin Seipp d8e62d202d libtorrentRasterbar: multi outputs, install python2/3 bindings
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2018-08-06 16:23:36 -05:00
xeji 937e402b35
Merge pull request #44555 from markuskowa/mpich-cleanup
mpich2: cleanup derivation, rename to mpich
2018-08-06 23:17:47 +02:00
volth 8835240895 libvirt: 4.5.0 -> 4.6.0 (#44566) 2018-08-06 23:15:06 +02:00
Jan Malakhovski 02c09e0171 cc-wrapper, bintools-wrapper: simply symlink man and info outputs
See discussion in #44516.
2018-08-06 20:50:16 +00:00
Franz Pletz 459a34ce5f
openssl_1_1_0: add patch to fix c_rehash quoting 2018-08-06 22:49:29 +02:00
WilliButz 354a477f0f nvtop: init at 0.2.2 2018-08-06 22:44:29 +02:00
Maximilian Bosch ea36b975ab pythonPackages.asana: 0.7.0 -> 0.7.1 (#44561)
Also fixed the package build from
https://hydra.nixos.org/build/78900949.

`requests_oauthlib` seems to work fine at version 1.0 with `asana`, so
rather than creating our own override for `asana` it's fine to use 1.0
and patch `setup.py`.
2018-08-06 22:24:24 +02:00
Uli Baum d0a2767e60 ezquake: replace vimNox with vim
this was the only package depending on the outdated vimNox
2018-08-06 21:37:29 +02:00
Uli Baum 9f96ec8b03 vimNox: drop
not updated since 2012, see #40876
2018-08-06 21:36:00 +02:00
leenaars 040bbfab60 pythonPackages.fire: init at 0.1.3 (#44493) 2018-08-06 21:33:34 +02:00
Robert Schütz b1e7c4ca25 python.pkgs.asgiref: disable for python < 3.5 2018-08-06 21:31:48 +02:00
Maximilian Bosch 3819c542ba python3Packages.asgiref: 2.2.0 -> 2.3.2 (#44563)
2.3.2 supports async-timeout@3.x which fixes https://hydra.nixos.org/build/78889815.
2018-08-06 21:29:19 +02:00
Robert Schütz db436734cd home-assistant: 0.75.1 -> 0.75.2 2018-08-06 21:23:17 +02:00
Wael M. Nasreddine e8a5f6c225
tmuxPlugins: expose mkDerivation for creating a TMUX plugins 2018-08-06 12:17:45 -07:00
Tim Steinbach 6b57315764
linux: 4.17.12 -> 4.17.13 2018-08-06 15:15:00 -04:00
Tim Steinbach ecfc3d9373
linux: 4.14.60 -> 4.14.61 2018-08-06 15:14:49 -04:00
Tim Steinbach 099671894d
linux: 4.9.117 -> 4.9.118 2018-08-06 15:14:40 -04:00
Tim Steinbach 39335e6928
linux: 4.4.145 -> 4.4.146 2018-08-06 15:14:27 -04:00
Daiderd Jordan 5b2ff69544
python-language-server: add providers option
Adding all of the extra dependencies isn't always desirable and
overriding a bunch of inputs is a bit cumbersome and brittle.

eg.

python-language-server.override { providers = ["rope"]; }
2018-08-06 20:41:52 +02:00
Will Dietz 64423342c3 gdb: 8.1 -> 8.1.1
https://www.gnu.org/software/gdb/download/ANNOUNCEMENT
2018-08-06 13:29:57 -05:00
Wael M. Nasreddine 9bf0ebac7e
tmux-plugins: fix the fzf-tmux-url derivation 2018-08-06 11:15:16 -07:00
Daiderd Jordan d12afcf734
python-language-server: 0.18.0 -> 0.19.0 2018-08-06 19:48:24 +02:00
Daiderd Jordan 8c026699a7
elixir: expose 1.7 in all-packages.nix 2018-08-06 19:30:05 +02:00
James Wood 9934f0bb51 AgdaStdlib: 0.15 -> 0.16 (#44550) 2018-08-06 18:39:11 +02:00
Tuomas Tynkkynen a2f499e21d linux_testing: 4.18-rc7 -> 4.18-rc8 2018-08-06 18:44:43 +03:00
Peter Simons 37adba4045
Merge pull request #44543 from peterhoeg/u/emacs
emacs: make a number of melpa packages work again
2018-08-06 17:39:09 +02:00
Matthew Bauer 0590b3106b
Merge pull request #44520 from oxij/pkg/appimagekit
appimagekit: init at 20180727
2018-08-06 11:14:59 -04:00
Markus Kowalewski ef301cc2a8
mpich: change platform to linux only 2018-08-06 16:59:41 +02:00
Bastian Köcher fb33305423 linux-kernel: Removes bcm2835_mmal_v4l2_camera_driver patch
The patch was only required for kernel 4.16.
2018-08-06 17:36:18 +03:00
Okina Matara 2d82b2625f bcachefs-tools: 2018-04-10 -> 2018-07-21 2018-08-06 08:58:12 -05:00
Okina Matara d043a30d62 linux_testing_bcachefs: 4.15.2018.04.14 -> 4.16.2018.08.03 2018-08-06 08:58:04 -05:00
Jörg Thalheim 0da0868608
Merge pull request #44551 from fgaz/duktape
duktape: 2.2.1 -> 2.3.0
2018-08-06 14:29:54 +01:00
Markus Kowalewski 87925f0ba6
mpich2: cleanup, rename to mpich
* mpich2 -> mpich
* remove slurm dependency
* use most recent gfortran
* turn enableParallelBulding on
* ensure mpi[cc,cxx,fort] uses default compilers it was built with
2018-08-06 15:27:32 +02:00
Maximilian Bosch 3d7b147a2c
citrix_receiver: drop all packages below 13.8
All Citrix versions until 13.7 will be EOLed during the lifetime of
18.09: https://www.citrix.co.uk/support/product-lifecycle/milestones/receiver.html
2018-08-06 15:17:14 +02:00
Maximilian Bosch 10b2208ec5
citrix_receiver: allow custom certs and hooks for the installation
Sometimes it's required to modify some parts of the Citrix build on
their own which is why `{pre,post}Install` hooks can be quite helpful.

Additionally some corporate clients use their own certificates that
aren't stored as trusted ones in the `cacert` package with all of the
trusted certs by Mozilla.

Now it's possible to add custom certs like this:

``` nix
with import <nixpkgs> { config.allowUnfree = true; };

let path = ../../Downloads/custom-corporate-cert.pem; in
citrix_receiver.override {
  extraCerts = [ path ];
}
```
2018-08-06 15:16:16 +02:00
Yegor Timoshenko c1973f0fec toggldesktop: init at 7.4.231 2018-08-06 15:12:48 +03:00
Yegor Timoshenko 0d7170cb85
Merge pull request #44459 from kirelagin/b2sum
b2sum: init at 20160619
2018-08-06 15:03:53 +03:00
georgewhewell a052e52a27 fix rasperrypifw cross build 2018-08-06 14:49:45 +03:00
Yegor Timoshenko dbdbdaf1c6
b2sum: use fetchzip, clean up 2018-08-06 14:47:29 +03:00
Jörg Thalheim 6da4ab627f
Merge pull request #44547 from leenaars/matterbridge
matterbridge: 1.7.1 -> 1.11.0
2018-08-06 12:17:33 +01:00
Francesco Gazzetta 77c0760ee6 duktape: 2.2.1 -> 2.3.0 2018-08-06 13:15:50 +02:00
Pascal Wittmann 602a462512
Merge pull request #44549 from NixOS/remove-jumanji
remove jumanji
2018-08-06 13:10:01 +02:00
Pascal Wittmann 0efd8a8f70
remove jumanji
jumanji isn't activly developed since the end of 2015
and uses an insecure and old version of webkit.
2018-08-06 12:57:17 +02:00
Michiel Leenaars e61dae0f0f matterbridge: 1.7.1 -> 1.11.0 2018-08-06 12:25:25 +02:00
Jan Tojnar 10dd73b5e2
keybinder: remove GTK3 dependency
kyebinder never supported GTK 3, only keybinder-3.0 (keybinder3 package) does.

This effectively reverts c0c835dcce
2018-08-06 12:23:13 +02:00
Vladimír Čunát f504af072b
Merge branch 'master' into staging-next
There's been some large rebuild on master.
I don't really have time ATM to find what it was.
2018-08-06 12:07:37 +02:00
Peter Hoeg 9823e4caa7 emacs-magit-annex: git was missing 2018-08-06 17:09:26 +08:00
Jörg Thalheim 05daf390b3 systemd: 238 -> 239 2018-08-06 11:03:09 +02:00
Uli Baum 6820e2f0dd mpd: don't use smbclient alias
didn't eval on Hydra as release.nix doesn't allow aliases, see #44299
Use samba instead.
2018-08-06 10:07:20 +02:00
Robert Schütz c3b1a8178b duply: explicitly use python2 2018-08-06 09:36:55 +02:00
Robert Schütz 3b490c653c ddar: explicitly use python2 2018-08-06 09:28:20 +02:00
Izorkin 5fce5fadf5 tengine: init init at v2.2.2 2018-08-06 08:11:03 +03:00
Cray Elliott 4c45016c29 Revert "mariadb: 10.2.16 -> 10.3.8"
This reverts commit 00ab5c5b6a.

The commit listed broke darwin and held up Hydra. sorry about that!
2018-08-05 20:12:18 -07:00
John Ericson 86865392e0
Merge pull request #44516 from oxij/pkg/fix-cc-wrapper-doc
cc-wrapper: propagate man and info to propagated-build-inputs
2018-08-05 18:32:37 -04:00
Tim Steinbach 99fb65fb11
libxml2: Fix CVE-2018-9251 2018-08-05 18:20:33 -04:00
Tim Steinbach e4138804da
openldap: 2.4.45 -> 2.4.46
LibreSSL patch no longer needed
2018-08-05 18:04:38 -04:00
Silvan Mosberger 56ac23a19c
Merge pull request #44398 from dotlambda/blueman-python3
bluez: use python3
2018-08-05 23:50:39 +02:00
Silvan Mosberger 373d727793
Merge pull request #44412 from dotlambda/ams-lv2-python3
ams-lv2: use python3
2018-08-05 23:46:44 +02:00
rnhmjoj 413d7f4425 bluez: use python3 2018-08-05 23:46:42 +02:00
Silvan Mosberger e10db2f676
Merge pull request #44435 from aanderse/pecl-oci8
php*Packages.oci8: init at 2.1.8
2018-08-05 23:29:19 +02:00
xeji b49b03a8c6
Merge pull request #44483 from imuli/idris-quantities
idrisPackages: add quantities library
2018-08-05 23:03:59 +02:00
Thomas Tuegel 4460f727b9
Merge pull request #44513 from ttuegel/bugfix/tex-gyre/displayName
tex-gyre: remove unused displayName argument
2018-08-05 15:56:39 -05:00
Daiderd Jordan 22adc5e294
elixir: 1.7.0 -> 1.7.2 2018-08-05 22:35:03 +02:00
Francesco Gazzetta 26e939e22c pybitmessage: use pname instead of name 2018-08-05 22:32:32 +02:00
Francesco Gazzetta 3bddc85171 pybitmessage: specify python version 2
pybitmessage does not support python3 yet
2018-08-05 22:29:57 +02:00
Francesco Gazzetta 28fe9047ef pybitmessage: 0.6.2 -> 0.6.3.2 2018-08-05 22:26:47 +02:00
Silvan Mosberger 08c82ad24c
Merge pull request #44519 from oxij/pkg/biber-cleanup
biber: cleanup
2018-08-05 22:21:29 +02:00
xeji 176891c0ad
Merge pull request #44467 from Izorkin/nginx-modules
Nginx modules
2018-08-05 22:20:05 +02:00
Richard Marko 97ca78687a logrotate: make mailutils overridable (#44504) 2018-08-05 22:19:35 +02:00
Robert Schütz 8dc20dce0a
home-assistant: 0.74.2 -> 0.75.1 (#44500) 2018-08-05 22:13:16 +02:00
Tim Steinbach f0814ec049
patch: Fix CVE-2018-1000156 2018-08-05 16:02:57 -04:00
Jan Malakhovski 1e3c993286 appimagekit: init at 20180727 2018-08-05 19:49:52 +00:00
Jan Malakhovski 66742ff495 biber: cleanup 2018-08-05 19:45:51 +00:00
xeji b909d807b1
Merge pull request #44466 from vcunat/p/exiv2-cve
exiv2: bugfix updates
2018-08-05 21:32:33 +02:00
Janne Heß 2da02088f7 prototypejs: Init at 1.7.3.0 (#44428) 2018-08-05 21:24:56 +02:00
Jan Malakhovski eb5b313b16 stdenv: shadow outputs 2018-08-05 19:24:46 +00:00
Jan Malakhovski a53504f4a4 stdenv: shadow doCheck and doInstallCheck 2018-08-05 19:24:32 +00:00
Jan Malakhovski 28ad0703f3 cc-wrapper: propagate man and info to propagated-build-inputs 2018-08-05 19:20:02 +00:00
Vincent Laporte ec7865cddc compcert: 3.2 -> 3.3 (#44512) 2018-08-05 21:14:55 +02:00
Michael Raskin 75cb04672f
Merge pull request #44508 from timokau/cddlib-0.94j
cddlib: 0.94i -> 0.94j
2018-08-05 19:03:47 +00:00
Tim Steinbach 71680eb127
shadow: 4.5 -> 4.6 2018-08-05 15:03:13 -04:00
worldofpeace e91360066e antibody: 3.5.1 -> 3.6.1 (#44481) 2018-08-05 21:00:55 +02:00
Tim Steinbach 76a713bd29
sharutils: Patch CVE-2018-1000097 2018-08-05 14:42:15 -04:00
Robin Gloster 93a056993f urbit: clean-up 2018-08-05 20:34:24 +02:00
Joseph Lukasik 26875910cb urbit: Don't use bootstrap scripts, no buildPhase
Incorporating feedback from https://github.com/nixos/nixpkgs/pull/43799

Also cleaned up some cruft from previous versions that didn't build with Meson/Ninja.
2018-08-05 20:34:24 +02:00
Joseph Lukasik 4a044699ae urbit: 0.4.5 -> 0.6.0
Following https://urbit.org/docs/using/install/
2018-08-05 20:34:24 +02:00
Vladimír Čunát 6a1148997a
exiv2.meta.license: add 2018-08-05 20:15:10 +02:00
Thomas Tuegel 0395260a0b
tex-gyre: remove unused displayName argument 2018-08-05 12:59:01 -05:00
Timo Kaufmann 0a44ff7676 cddlib: 0.94i -> 0.94j
cddlib was autotoolized, incorporated equivalents to the sage patches
and moved to GitHub.
2018-08-05 19:02:45 +02:00
Frank Doepper 4082e94b5c shotcut: 18.06.02 -> 18.08 (#44463)
and fix SHOTCUT_VERSION
2018-08-05 18:19:42 +02:00
Vincent Bernat bf1473f5e0 haproxy: use getaddrinfo() on Linux (#44489)
As per project's README:

> Recent systems can resolve IPv6 host names using getaddrinfo(). This
> primitive is not present in all libcs and does not work in all of
> them either. Support in glibc was broken before 2.3. Some embedded
> libs may not properly work either, thus, support is disabled by
> default, meaning that some host names which only resolve as IPv6
> addresses will not resolve and configs might emit an error during
> parsing. If you know that your OS libc has reliable support for
> getaddrinfo(), you can add USE_GETADDRINFO=1 on the make command
> line to enable it. This is the recommended option for most Linux
> distro packagers since it's working fine on all recent mainstream
> distros. It is automatically enabled on Solaris 8 and above, as it's
> known to work.

Without this option, it is not possible for HAProxy to solve IPv6-only
names. This option is enabled in Debian builds without any notable
adverse effect.
2018-08-05 18:17:27 +02:00
Jörg Thalheim 653b97689f
Merge pull request #44491 from kalbasit/nixpkgs_add-tmux-fzf-url
tmuxPlugins: add fzf-tmux-url to the list of plugins
2018-08-05 17:11:16 +01:00
ajs124 8910795eee ejabberd: 18.01 -> 18.06 (#44158)
ejabberd switched from imagemagick to eimp, which loads libpng, libjpeg
and libwebp at runtime. These were therefore added as dependencies and
the relevant binary was wrapped to be able to find them.
2018-08-05 18:02:40 +02:00
Tor Hedin Brønner b0dfd3d737 libinput: 1.11.0 -> 1.11.3 2018-08-05 17:39:49 +02:00
Michael Raskin 6b0234942b
Merge pull request #44501 from timokau/sage-native-pari
sage: don't override pari
2018-08-05 15:14:00 +00:00
Michael Raskin 1df8085132
Merge pull request #44506 from timokau/sage-new-deps
Init libbraiding and libhomfly
2018-08-05 15:12:23 +00:00
Silvan Mosberger 0aa19ba47a
Merge pull request #44450 from bignaux/squashfuse
squashfuse : unstable-2018-02-20 -> 0.1.103
2018-08-05 17:07:27 +02:00
Timo Kaufmann aabc55e154 libhomfly: init at 1.02r5
libhomfly is a new standard package for sage. See
https://trac.sagemath.org/ticket/25705
2018-08-05 16:50:33 +02:00
Timo Kaufmann 34c2f4150b libbraiding: init at 1.0
libbraiding is a new standard package for sage. See
https://trac.sagemath.org/ticket/25705
2018-08-05 16:50:32 +02:00
Vincent Bernat cc1d82196c haproxy: 1.8.9 -> 1.8.13 (#44487)
The patches previously applied have been included upstream. Upstream
changelog (only MAJOR/MEDIUM):

2018/07/30 : 1.8.13
    - BUG/MEDIUM: h2: don't accept new streams if conn_streams are still in excess
    - BUG/MEDIUM: h2: never leave pending data in the output buffer on close
    - BUG/MEDIUM: h2: make sure the last stream closes the connection after a timeout
    - BUG/MEDIUM: threads: Fix the exit condition of the thread barrier
    - BUG/MEDIUM: stream-int: don't immediately enable reading when the buffer was reportedly full
    - BUG/MEDIUM: stats: don't ask for more data as long as we're responding
    - BUG/MEDIUM: threads/sync: use sched_yield when available
    - BUG/MEDIUM: h2: prevent orphaned streams from blocking a connection forever
    - BUG/MEDIUM: threads: properly fix nbthreads == MAX_THREADS
    - BUG/MEDIUM: threads: unbreak "bind" referencing an incorrect thread number
    - MEDIUM: proxy_protocol: Convert IPs to v6 when protocols are mixed

2018/06/27 : 1.8.12
    - BUG/MAJOR: stick_table: Complete incomplete SEGV fix

2018/06/26 : 1.8.11
    - BUG/MAJOR: Stick-tables crash with segfault when the key is not in the stick-table

2018/06/22 : 1.8.10
    - BUG/MEDIUM: spoe: Flags are not encoded in network order
    - BUG/MEDIUM: contrib/mod_defender: Use network order to encode/decode flags
    - BUG/MEDIUM: contrib/modsecurity: Use network order to encode/decode flags
    - BUG/MEDIUM: cache: don't cache when an Authorization header is present
    - BUG/MEDIUM: dns: Delay the attempt to run a DNS resolution on check failure.
    - BUG/MEDIUM: fd: Only check update_mask against all_threads_mask.
    - BUG/MEDIUM: servers: Add srv_addr default placeholder to the state file
    - BUG/MEDIUM: lua/socket: Length required read doesn't work
    - BUG/MEDIUM: stick-tables: Decrement ref_cnt in table_* converters
    - BUG/MEDIUM: spoe: Return an error when the wrong ACK is received in sync mode
    - BUG/MEDIUM: lua/socket: wrong scheduling for sockets
    - BUG/MAJOR: lua: Dead lock with sockets
    - BUG/MEDIUM: lua/socket: Notification error
    - BUG/MEDIUM: lua/socket: Sheduling error on write: may dead-lock
    - BUG/MEDIUM: lua/socket: Buffer error, may segfault
    - MAJOR: spoe: upgrade the SPOP version to 2.0 and remove the support for 1.0
    - BUG/MEDIUM: threads: handle signal queue only in thread 0
    - BUG/MAJOR: map: fix a segfault when using http-request set-map
    - BUG/MAJOR: ssl: Random crash with cipherlist capture
    - BUG/MAJOR: ssl: OpenSSL context is stored in non-reserved memory slot
    - BUG/MEDIUM: fd: Don't modify the update_mask in fd_dodelete().
    - BUG/MEDIUM: threads: Use the sync point to check active jobs and exit
2018-08-05 16:48:22 +02:00
Travis Whitaker a3e7fc876a haskellPackages.llvm-hs: Use LLVM 6 with llvm-hs, don't run tests on Darwin. 2018-08-05 07:46:10 -07:00
Jörg Thalheim bb76f9a210 atom: gtk3 should be in buildInputs 2018-08-05 15:35:35 +01:00
jpathy 8a9733361e ccid: 1.4.27 -> 1.4.29 (#44503)
Also update the non-existent homepage and download link.
2018-08-05 16:32:15 +02:00
Yannik Sander 57d5e2b20d atom: fix crash on Glib-GIO-ERROR
include gtk3 to fix atom's path such that file open dialogs wont cause atom to crash due to missing GIO files
2018-08-05 15:30:30 +01:00
Jens Binkert f5cf11b2f1 openshift: 3.9.0 -> 3.10.0 (#44484) 2018-08-05 16:28:45 +02:00
worldofpeace 62d0b676dd solargraph: 0.23.3 -> 0.23.6 (#44480) 2018-08-05 16:23:31 +02:00
Vladyslav M 9f9e5d4371 oxipng: 1.0.1 -> 2.1.0 (#44488) 2018-08-05 16:20:38 +02:00
Timo Kaufmann 30c822189d sage: don't override pari
Sage assumes that pari does not use threads. However instead of
disabling them at compile time, we can diable them at runtime instead.
As a result, sage doesn't need its own version of pari anymore. That
means less rebuilds, less complexity and easier debugging.
2018-08-05 13:48:14 +02:00
Daiderd Jordan 78e2e32972
Merge pull request #43612 from Enzime/add/mpv-app-bundle
mpv: build and install macOS App Bundle
2018-08-05 13:29:54 +02:00
Frederik Rietdijk 9267b477f1 python.pkgs.pytest.setupHook: fix cache name, fixes #40273
The cache is not named `.pytest-cache` but `.pytest_cache`.
2018-08-05 11:56:21 +02:00
Michael Weiss c3266a03a8 tdesktopPackages.preview: 1.3.11 -> 1.3.12 2018-08-05 11:56:10 +02:00
Vladimír Čunát 11ceef4769
mesa_drivers: fix a mistake from 4c77fdef4 2018-08-05 10:56:17 +02:00
Robert Schütz ad377b4cba
svtplay-dl: use python3Packages 2018-08-05 10:39:44 +02:00
Michael Raskin 58384b1dd0 scilab-bin: 5.5.2 -> 6.0.1 2018-08-05 11:27:35 +03:00
Michael Raskin 9ac7ec7fc7 vim_configurable: enable gtk3 GUI; Fixes #44440 2018-08-05 10:20:24 +03:00
Michael Raskin 2b6e13157f pythonPackages.mozlog: fix the hash 2018-08-05 10:20:24 +03:00
Michael Raskin 25cfc9812a pythonPackages.mozterm: pass pythonPackages.six 2018-08-05 10:20:23 +03:00
Wael M. Nasreddine b246709f1b
tmuxPlugins: add fzf-tmux-url to the list of plugins 2018-08-05 00:13:47 -07:00
Imuli a6e17d6f11 idrisPackages.quantities: init at 2018-04-17 2018-08-04 23:10:43 -04:00
Robert Schütz 2215834789
simp_le: use python3Packages (#44476) 2018-08-05 01:17:38 +02:00
Jan Tojnar 544f1d471a
Merge pull request #44471 from worldofpeace/elementary-requesites
Various elementary necessaries
2018-08-05 00:49:47 +02:00
markuskowa 01eb4cd70e rtl_433: 2018-02-23 -> 18.05 (#44453) 2018-08-05 00:25:33 +02:00
Vladyslav M da6cbc3a44 gutenberg: 0.3.4 -> 0.4.0 (#44475) 2018-08-05 00:24:13 +02:00
Edmund Wu 4306bc070e yarn: 1.9.2 -> 1.9.4 (#44477) 2018-08-05 00:23:22 +02:00
worldofpeace 5d95f474d8 scour: init at 0.37 2018-08-04 18:19:25 -04:00
worldofpeace 1ef8646a73 appstream: 0.11.8 -> 0.12.2 2018-08-04 18:19:25 -04:00
worldofpeace d279992fc6 appstream: add vala 2018-08-04 18:19:25 -04:00
worldofpeace 1e1c7c88a5 appstream: gir is default true 2018-08-04 18:19:25 -04:00
Jesper 0254ae4e80 netdata: 1.9.0 -> 1.10.0 (#44472)
The web_access.patch would no longer apply.
It disabled a check that required the static files
for the web UI to be owned by the user the daemon runs as
(not root, so it doesn't work well with nix).

Besides updating netdata, this commit removes that patch,
changes the netdata service config to set the "web files owner/group"
option to "root" and adds a test that checks that the web UI is being served.

This allows the web files to be owned by root without patching.
2018-08-05 00:05:48 +02:00
Benjamin Saunders 606a260f3b renderdoc: 1.0 -> 1.1 (#44474) 2018-08-05 00:02:57 +02:00
Austin Seipp aa79ae0c64 foundationdb: install python bindings
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2018-08-04 16:56:16 -05:00
worldofpeace 7f57ebd2c4 libunity: init at 7.1.4 2018-08-04 17:37:34 -04:00
xeji 8d184e14e4
Merge pull request #44469 from nyarly/simp_le_090
simp_le: 0.8.0 -> 0.9.0
2018-08-04 23:35:41 +02:00
Judson fb26b73f11
simp_le: Restricting to platforms.linux 2018-08-04 14:21:19 -07:00
Bignaux Ronan 0bc6225bb4 cadence: init at 0.9.0 (#44281) 2018-08-04 23:05:42 +02:00
Vladyslav M 2ce2f721b8 ripgrep: 0.8.1 -> 0.9.0 (#44473) 2018-08-04 22:59:33 +02:00
Daiderd Jordan ddc4235279
elixir: fix 1.7 build on linux 2018-08-04 22:46:09 +02:00
Kyle Lacy 87069061c5 plex-media-player: init at 2.14.1 (#43839) 2018-08-04 22:25:48 +02:00
Bignaux Ronan 4c2c12da20 caprice32: unstable-2018-02-10 -> unstable-2018-03-05 (#44462) 2018-08-04 22:21:17 +02:00
Judson 7ab9e9b15b
(simp_le): (0.8.0 -> 0.9.0) 2018-08-04 12:56:55 -07:00
Vladimír Čunát 7b67a32d5a
Merge file upgrade into staging-next
One more change from staging containing security fix
and looking relatively safe (wrt. breakage).
2018-08-04 21:26:59 +02:00
xeji 8fe5b457a4
Merge pull request #44455 from marsam/feature/update-rtorrent
libtorrent: 20161212 -> 0.13.7, rtorrent: 20161023 -> 0.9.7
2018-08-04 21:19:17 +02:00
Johannes Frankenau c481117673 nginxMainline: 1.15.1 -> 1.15.2 (#44431) 2018-08-04 21:06:35 +02:00
Will Dietz e103ad48ea f2fs-tools: 1.10.0 -> 1.11.0 (#43715) 2018-08-04 20:55:23 +02:00
Izorkin e0de8354b9 nginxModules.lua-upstream: init at v0.07 2018-08-04 20:54:36 +03:00
Izorkin 29b3e11541 nginxModules.url: init at rev 9299816 2018-08-04 20:54:36 +03:00
Izorkin a5674cebb9 nginxModules.sysguard: init at rev e512897 2018-08-04 20:54:35 +03:00
Izorkin 9100091f3f nginxModules.stream-sts: init at v0.1.1 2018-08-04 20:54:35 +03:00
Izorkin 9958868dfd nginxModules.sts: init at v0.1.1 2018-08-04 20:54:35 +03:00
Vladimír Čunát 0274e72481
exiv2: bugfix updates
- use upstream branch with backports
- backport two fixes missing from it yet
2018-08-04 19:38:22 +02:00
Kirill Elagin 121c264c7b b2sum: Update to master 2018-08-04 18:54:22 +03:00
Bignaux Ronan 39ab7a0778 soulseekqt: 2016-1-17 -> 2018-1-30 (#44460) 2018-08-04 17:24:52 +02:00
Bignaux Ronan 3f0decd822 squashfuse : unstable-2018-02-20 -> 0.1.103 2018-08-04 17:11:41 +02:00
Kirill Elagin 74732ec298
b2sum: init at 20160619 2018-08-04 17:59:20 +03:00
Austin Seipp 6b0451c060 foundationdb60: 6.0.3pre2446 -> 6.0.4pre2497
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2018-08-04 09:47:41 -05:00
Austin Seipp d8652e9fc2 foundationdb52: 5.2.6 -> 5.2.8
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2018-08-04 09:47:41 -05:00
adisbladis ffcaaedf75
firefox-beta-bin: 62.0b10 -> 62.0b14 2018-08-04 22:40:55 +08:00
adisbladis 6b0bed4f01
firefox-devedition-bin: 62.0b10 -> 62.0b14 2018-08-04 22:40:54 +08:00
Michael Weiss 9ef1406a99
signal-desktop: Allow overriding the spell checker language (#44456)
Thought this could be useful for others as well. Unfortunately it will
also override the UI language.

Example usage:

  environment.systemPackages = with pkgs; [
    (signal-desktop.override {
      spellcheckerLanguage = "de_DE";
    })
  ];
2018-08-04 16:01:44 +02:00
Mario Rodas 2d7e6b79dc rtorrent: 20161023 -> 0.9.7 2018-08-04 08:35:54 -05:00
Mario Rodas b723af3174 libtorrent: 20161212 -> 0.13.7 2018-08-04 08:35:54 -05:00
Michael Raskin d4893a74e5
Merge pull request #44123 from timokau/spotify-snap
Fetch spotify from snapcraft
2018-08-04 13:33:58 +00:00
Timo Kaufmann e875678f8e spotify: 1.0.80.480.g51b03ac3-13 -> 1.0.80.474.gef6b503e-7
The purpose of this update (or downgrade?) is to switch the spotify
source to one more reliable. The current source only contains the last
few releases, while the new source retains all old releases.
2018-08-04 15:18:15 +02:00
Michael Raskin b79dbfe482
Merge pull request #43281 from timokau/sage-8.3
sage: 8.2 -> 8.3
2018-08-04 13:02:06 +00:00
Timo Kaufmann 834a24e0ff sage: don't pin ntl
Now possible because of the lcalc c++11 patch.
2018-08-04 14:22:58 +02:00
Timo Kaufmann e550e5d0c7 lcalc: apply c++11 patch 2018-08-04 14:22:29 +02:00
Timo Kaufmann fa34f6d41c sage: don't pin pari 2018-08-04 14:22:28 +02:00
Timo Kaufmann e82c26af9b sage: don't pin singular 2018-08-04 14:22:28 +02:00
Timo Kaufmann 289173366b singular: backport ntl error handling patch 2018-08-04 14:22:27 +02:00
Timo Kaufmann 840b64fdb8 sage: 8.2 -> 8.3 2018-08-04 14:22:21 +02:00
Tuomas Tynkkynen 008fd5fcf5 Merge remote-tracking branch 'upstream/master' into staging 2018-08-04 15:17:42 +03:00
aanderse 20f1388c3f perlPackages.Apache-AuthCookie: init at 3.27 (#44437) 2018-08-04 12:40:48 +01:00
Frederik Rietdijk d296a379ba python.pkgs.beaker: move expression 2018-08-04 13:33:32 +02:00
Frederik Rietdijk e002b543af python.pkgs.basiciw: move expression 2018-08-04 13:30:24 +02:00
Frederik Rietdijk 455bf6d875
Merge pull request #44414 from dotlambda/antfs-cli-python3
antfs-cli: use python3Packages
2018-08-04 13:24:42 +02:00
Jan Tojnar 880bc29d45
gnome3.gnome-todo: init at 3.28.1 2018-08-04 11:58:05 +02:00
Frederik Rietdijk 699e0e50b7 Merge master into staging-next 2018-08-04 11:43:54 +02:00
Frederik Rietdijk 82f80f4cfa
Merge pull request #44420 from dotlambda/awslogs-python3
awslogs: use python3Packages
2018-08-04 11:42:12 +02:00
Janne Heß ae4dc14f0b smarty3: Init at 3.1.32 (#44427) 2018-08-04 11:02:23 +02:00
Johannes Löthberg adc4e1d6b7 inter-ui: init at 2.5 (#44433)
Signed-off-by: Johannes Löthberg <johannes@kyriasis.com>
2018-08-04 10:59:32 +02:00
Janne Heß 558c032e53 scriptaculous: Init at 1.9.0 (#44429) 2018-08-04 10:09:58 +02:00
Johannes Frankenau dc02a284bc reaper: 5.93 -> 5.94 (#44445) 2018-08-04 09:56:04 +02:00
Jörg Thalheim 4fc2ad9b6d
Merge pull request #44443 from volth/patch-217
r-packages: fix regression
2018-08-04 08:55:47 +01:00
Jörg Thalheim 5653b125e7
Merge pull request #44430 from flokli/terraform-updates
terraform: update providers
2018-08-04 07:25:58 +01:00
volth e6d3c65442
r-packages: fix regression 2018-08-04 06:19:08 +00:00
Michael Hoang f8fb13e64c mpv: build and install macOS App Bundle 2018-08-04 13:17:19 +10:00
Aaron Andersen 4cc3a5a6c9 added the pecl oci8 library for php
had to make an adjustment to the oracle instantclient to make it compile
2018-08-03 21:58:57 -04:00
Jan Tojnar cb4263a7a8
Merge pull request #44037 from flokli/fix-nm-applet-vpn
networkmanager: fix VPN activation through nm-applet
2018-08-04 02:17:27 +02:00
Florian Klink 24726a35d9 networkmanager: fix compile error due to NM_AVAILABLE_IN_1_12_2 macro 2018-08-04 01:32:45 +02:00
Florian Klink e63ef63c93 network-manager-applet: add patch for import file chooser 2018-08-04 01:08:25 +02:00
Florian Klink 88b2b6c71c network-manager: 1.12.0 -> 1.12.2
fix VPN activation through nm-applet (#43806),
upstream bug https://gitlab.gnome.org/GNOME/network-manager-applet/issues/12
2018-08-04 01:08:25 +02:00
Jörg Thalheim de683046c3
Merge pull request #44400 from dotlambda/pdfredacttools-python2
pdf-redact-tools: explicitly use python2Packages
2018-08-03 23:58:17 +01:00
Jörg Thalheim 44e4dbf9ac
Merge pull request #44403 from dotlambda/bashplotlib-python3
bashplotlib: use python3Packages
2018-08-03 23:54:22 +01:00
Florian Klink 0a772e3c04 terraform-provider-libvirt: 0.3 -> 0.4
goDeps isn't used anymore
add note about why cdrtools is propagated
2018-08-04 00:54:21 +02:00
Florian Klink 5bf656e33b terraform: filter out azure-classic while generating data.nix 2018-08-04 00:54:21 +02:00
Florian Klink 5d4ab1baaa terraform: update all providers
also, stop excluding terraform.plugins.telefonicaopencloud (since
c07670bcdc), as there's a tag on their
repo now.
2018-08-04 00:54:21 +02:00
Jörg Thalheim c065349282
Merge pull request #44402 from dotlambda/doitlive-python3
doitlive: use python3Packages
2018-08-03 23:49:58 +01:00
Jörg Thalheim 7d73fe0402
Merge pull request #44417 from dotlambda/apt-offline-1.8.1
apt-offline: 1.3 -> 1.8.1
2018-08-03 23:45:02 +01:00
John Ericson 7a337cde31
Merge pull request #44423 from obsidiansystems/configureFlags-cleanup
treewide: All configureFlags are lists
2018-08-03 17:49:01 -04:00
John Ericson 3e034bac1a stdenv adapter: Keep configureFlags a list 2018-08-03 17:06:03 -04:00
John Ericson f0d6b385d1 treewide: Make all the rest of configureFlags 2018-08-03 17:06:03 -04:00
John Ericson f92ed87372 gmp-*: Clean up configureFlags 2018-08-03 17:06:03 -04:00
John Ericson db965063b3 treewide: Make configureFlags lists 2018-08-03 17:06:03 -04:00
John Ericson 85a9913edd treewide: Make more complicated configureFlags lists 2018-08-03 17:06:03 -04:00
John Ericson 632d24f11f scilab: Make configureFlags a list 2018-08-03 17:05:58 -04:00
Pascal Wittmann 32bda9a112
pdf2djvu: 0.9.9 -> 0.9.10 2018-08-03 22:16:03 +02:00
John Ericson e8a291ff61 gobby: Remove empty configure flags 2018-08-03 16:06:43 -04:00
xeji 8c784998f6
Merge pull request #44421 from volth/perl-524-528
perl: 5.24.4 -> 5.28.0
2018-08-03 22:02:21 +02:00
xeji c9f3382a39
Merge pull request #43934 from jfrankenau/mpd-smb
mpd: add nfs and smb support
2018-08-03 21:59:30 +02:00
Maciek Starzyk af176db5d7 obnam: removed (#44422) 2018-08-03 21:43:08 +02:00
Johannes Frankenau b9234ea49c nixos/mpd: allow storage plugins in musicDirectory 2018-08-03 21:36:38 +02:00
xeji f2f28654d5
Merge pull request #43778 from volth/xfce413-updates
xfce4-13: backport panel plugins and icon themes from xfce4-12
2018-08-03 21:26:07 +02:00
Silvan Mosberger ce4e1a15bc
Merge pull request #44404 from alyssais/bundler
bundler: 1.16.2 -> 1.16.3
2018-08-03 20:54:08 +02:00
John Ericson ebbd6f3471
Merge pull request #44083 from dingxiangfei2009/cross-compiling-postgresql
Allow postgresql to cross compile
2018-08-03 14:44:55 -04:00
Frederik Rietdijk 57852282cf
Merge pull request #44416 from dotlambda/antlr-python2
antlr: explicitly use python2
2018-08-03 20:44:03 +02:00
Frederik Rietdijk 2356a84bbd
Merge pull request #44381 from twhitehead/tensorflow
tensorflow: workaround tensorboard collision due to upstream pip hack
2018-08-03 20:43:39 +02:00
Justin Humm b8da5fc4bd pius: introduce perl as buildInput (#44415)
Otherwise, pius-party-worksheet would be unusable.

(cherry picked from commit 4dbf327d924d454a931c93da3eb4c6e8a13935a2)
2018-08-03 20:36:08 +02:00
Lancelot SIX 51b8c7986a qgis: 2.18.20 -> 2.18.22 (#44266) 2018-08-03 20:34:47 +02:00
Tyson Whitehead fd0c467f96
tensorflow: workaround tensorboard collision from upstream pip hack
Upstream lists tensorboard as a utility from tensorflow despite it
being provided by tensorboard to stop pip for deleting it.  This
causes python.withPackages collisions between the two.
2018-08-03 14:28:46 -04:00
Thomas Bach 7e60f1c678 mfcl8690cdw: init lpdr and cupswrapper at 1.0.2/1.0.3 (#43968)
Provide printer driver for Brother MFC-L8690CDW.
2018-08-03 20:18:32 +02:00
volth 77b8d54aa4 perl: 5.24.4 -> 5.28.0 2018-08-03 18:13:12 +00:00
Robert Schütz f0702c62a6 antlr: explicitly use python2
Also, put python2 into nativeBuildInputs because Arch lists it in makedepends.
2018-08-03 20:01:51 +02:00
Robert Schütz c2649439d5
Merge pull request #44408 from dotlambda/actdiag-application
*diag: use python3 and toPythonApplication
2018-08-03 19:59:15 +02:00
Robert Schütz e2a81241e5 awslogs: use python3Packages 2018-08-03 19:53:46 +02:00
Robert Schütz 0cd86e1e9d
adb-sync: use python3 (#44409)
According to https://github.com/google/adb-sync/pull/2#commitcomment-11399661,
it should work with python2 and python3. Using python3 is prefered in nixpkgs.
2018-08-03 19:48:42 +02:00
Silvan Mosberger f061271938
Merge pull request #44411 from dotlambda/almonds-python3
almonds: use python3
2018-08-03 19:33:12 +02:00
Robert Schütz 5acb3f5774 nwdiag: use python3Packages and toPythonApplication 2018-08-03 19:22:18 +02:00
Robert Schütz 7d4d49bf1d seqdiag: use python3Packages and toPythonApplication 2018-08-03 19:21:02 +02:00
Robert Schütz 8769f25c6a blockdiag: use python3Packages and toPythonApplication 2018-08-03 19:18:22 +02:00
Robert Schütz c0589af34e apt-offline: 1.3 -> 1.8.1 2018-08-03 19:13:38 +02:00
Robert Schütz e6fc21af9c antfs-cli: use python3Packages 2018-08-03 18:37:09 +02:00
Michael Raskin 82bce290f5
Merge pull request #44410 from dotlambda/afflib-python3
afflib: use python3
2018-08-03 16:16:18 +00:00
Silvan Mosberger 30783a52bc
Merge pull request #44405 from dotlambda/emptyepsilon-python3
EmptyEpsilon: use python3
2018-08-03 18:12:01 +02:00
Robert Schütz 974cb36abd ams-lv2: use python3
It is python3-compatible since 1.1.5.
2018-08-03 18:11:55 +02:00
Silvan Mosberger a35a4884c7
Merge pull request #43792 from Chiiruno/dev/hydron
Update: easyjson, hydron, meguca, nodePackages: meguca; Improve: quicktemplate
2018-08-03 18:10:12 +02:00
Robert Schütz ae3bbf2958 almonds: use python3 2018-08-03 18:04:46 +02:00
Silvan Mosberger a7ea08d60d
Merge pull request #44406 from johanot/certmgr-pkgs-init
certmgr: init at 1.6.1
2018-08-03 17:55:34 +02:00
Robert Schütz 8413f1883e afflib: use python3
Python3 is supported since 3.7.14.
2018-08-03 17:54:38 +02:00
Jörg Thalheim a6900b9a13 dino: 2018-06-03 -> 2018-07-08 2018-08-03 16:54:21 +01:00
Frederik Rietdijk e271c47fcb
Merge pull request #44390 from dotlambda/keras-2.2.2
python.pkgs.Keras: 2.2.0 -> 2.2.2
2018-08-03 17:53:34 +02:00
Robert Schütz 0f8185e3fc python.pkgs.Keras: 2.2.0 -> 2.2.2 2018-08-03 17:46:09 +02:00
Okina Matara 6de26d6647 meguca: 2018-07-01 -> 2018-08-02 2018-08-03 10:43:28 -05:00
Okina Matara 74a57e24d0 hydron: 2018-07-15 -> 2018-07-30 2018-08-03 10:43:00 -05:00
Okina Matara 4f99b18985 nodePackages: meguca: 1.0.8 -> 1.0.9 2018-08-03 10:41:45 -05:00
Robert Schütz 54ae6ea537 actdiag: use python3 and toPythonApplication 2018-08-03 17:41:31 +02:00
Okina Matara 8e690b6ffd easyjson: 2018-06-06 -> 2018-07-30 2018-08-03 10:41:15 -05:00
Robert Schütz 95134fb939 pythonPackages.actdiag: run tests 2018-08-03 17:40:56 +02:00
Okina Matara 405e4fbea9 quicktemplate: Use fetchFromGitHub, not fetchgit 2018-08-03 10:40:38 -05:00
Johan Thomsen 505007471d certmgr: init at 1.6.1 2018-08-03 17:35:46 +02:00
Silvan Mosberger da53c1248b
Merge pull request #44353 from Zimmi48/graphql-cli
graphql-cli: init at 2.16.5
2018-08-03 17:18:25 +02:00
snaar 841e2ed547 run-scaled: init at 2018-06-03 (#44385)
* run-scaled: init at 2018-06-03

* run-scaled: change platform from linux to unix to match dependencies
2018-08-03 17:18:13 +02:00
Alyssa Ross 011c6411f3
bundler: 1.16.2 -> 1.16.3 2018-08-03 15:59:38 +01:00
Robert Schütz 57b6eb6514 EmptyEpsilon: use python3 2018-08-03 16:56:46 +02:00
Alexander Krupenkin 8d708d28a1 parity: 1.10.8 -> 1.11.8; parity-beta: init at 2.0.1 (#44170)
* parity: 1.10.8 -> 1.10.9

* parity: 1.10.8 -> 1.11.8; parity-beta: init at 2.0.1
2018-08-03 16:54:29 +02:00
xeji 725f253190
Merge pull request #44346 from Fork-Native-Light-Foundation/package/protonmail-bridge
protonmail-bridge: init at 1.0.5-1
2018-08-03 16:42:54 +02:00
Robert Schütz c5fb1d70ca bashplotlib: use python3Packages 2018-08-03 16:02:33 +02:00
Robert Schütz 2f5bbbebfd doitlive: use python3Packages 2018-08-03 15:53:52 +02:00
Robert Schütz bf256564f9 pdf-redact-tools: explicitly use python2Packages
Python2-only syntax, e.g. print without paratheses, is used in the pdf-redact-tools script.
2018-08-03 15:42:39 +02:00
Robert Schütz 0fd688a1a5 blueman: use python3Packages 2018-08-03 15:25:19 +02:00
Timo Kaufmann 86f058c842 python2Packages.ipython: apply upstream signature patch 2018-08-03 15:22:04 +02:00
Jörg Thalheim 30b3f277b6
Merge pull request #44275 from georgewhewell/fix-libgpg-error-cross
fix libgpg-error cross build on armv7
2018-08-03 14:09:18 +01:00
Roger Qiu 83cc1e3d38 pythonPackages.imgaug: init at 0.2.6 (#43720) 2018-08-03 14:39:55 +02:00
Jan Tojnar f735d6a38d
Merge pull request #43992 from jtojnar/upstream-sessions
Upstream sessions
2018-08-03 14:23:17 +02:00
Tim Steinbach 4ac2740895
linux: 4.17.11 -> 4.17.12 2018-08-03 08:20:22 -04:00
Tim Steinbach 52c4a7a909
linux: 4.14.59 -> 4.14.60 2018-08-03 08:20:13 -04:00
Tim Steinbach 2e4410ac38
linux: 4.9.116 -> 4.9.117 2018-08-03 08:20:03 -04:00
Michael Weiss 1ebee36c23 tdesktopPackages.preview: 1.3.10 -> 1.3.11 2018-08-03 14:15:22 +02:00
LightDiscord 3f9edf1bd6
protonmail-bridge: init at 1.0.5-1 2018-08-03 14:04:10 +02:00
Johannes Frankenau d99d14f357 reaper: init at 5.93 (#44391) 2018-08-03 13:36:11 +02:00