Matthew Bauer
7eb169a257
avian: use no error
...
Currently a warning breaks an otherwise working package
2018-06-10 20:34:40 -04:00
Matthew Bauer
7e63a205da
treewide: disable some darwin checks
...
Some network tests frequently fail on darwin. It’s easiest to disable
them for now.
2018-06-10 20:31:06 -04:00
Matthew Justin Bauer
b2f10f4e20
Merge pull request #41720 from r-ryantm/auto-update/appstream-glib
...
appstream-glib: 0.7.8 -> 0.7.9
2018-06-10 19:07:42 -04:00
xeji
8bd9f064db
Merge pull request #41623 from jfrankenau/update-cura
...
cura: 3.2.1 -> 3.3.1
2018-06-10 23:32:31 +02:00
xeji
6dabad3c77
Merge pull request #41754 from ckauhaus/41750-cve-libtiff-master
...
libtiff: 4.0.9 update patches
2018-06-10 21:49:06 +02:00
Matthew Bauer
e544e4f564
configuration-common.nix: fix incorrect override
2018-06-10 15:07:02 -04:00
Matthew Bauer
5a216cd7ed
ghcjs: disable some checks
2018-06-10 15:07:02 -04:00
Frederik Rietdijk
2114e15171
Merge pull request #41804 from Assassinkin/python-hosts
...
pythonPackages.python-hosts: init at 0.4.1
2018-06-10 20:25:10 +02:00
nagato.pain
95120f5109
pythonPakchages.python-hosts: init at 0.4.1
2018-06-10 11:04:20 -07:00
R. RyanTM
1f6f123814
chromedriver: 2.38 -> 2.39 ( #41580 )
...
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.
This update was made based on information from https://repology.org/metapackage/chromedriver/versions .
These checks were done:
- built on NixOS
- /nix/store/r7ai8p033gdhncxsfjjy3rb8qmcsvpqx-chromedriver-2.39/bin/chromedriver passed the binary check.
- Warning: no invocation of /nix/store/r7ai8p033gdhncxsfjjy3rb8qmcsvpqx-chromedriver-2.39/bin/.chromedriver-wrapped had a zero exit code or showed the expected version
- 1 of 2 passed binary check by having a zero exit code.
- 0 of 2 passed binary check by having the new version present in output.
- found 2.39 with grep in /nix/store/r7ai8p033gdhncxsfjjy3rb8qmcsvpqx-chromedriver-2.39
- directory tree listing: https://gist.github.com/ed47d14dfe1661b73d2d877b6e790579
- du listing: https://gist.github.com/63dc7bb82190375bce025de50ed2d6fa
2018-06-10 19:50:06 +02:00
volth
70050dbc48
jogl: reflect recent changes in opengl ( #41786 )
2018-06-10 17:09:19 +02:00
mingchuan
5095e9e32e
solc: 0.4.23 -> 0.4.24 ( #41631 )
...
Also enable test
2018-06-10 10:37:58 +02:00
Frederik Rietdijk
bd991be8d3
Merge pull request #41773 from bhipple/fix/fftw-src-url
...
fftw: support multiple src URLs
2018-06-10 10:30:51 +02:00
Johannes Frankenau
8ec26d8e5c
libarcus: 3.2.1 -> 3.3.0
2018-06-10 10:17:27 +02:00
Johannes Frankenau
163c83e901
python.pkgs.pyqt5: apply patch for cura segfaults
2018-06-10 10:17:19 +02:00
Frederik Rietdijk
1fdc5a9f0f
Merge pull request #41681 from Assassinkin/ansicov
...
pythonPackages.ansiconv: init at 1.0.0
2018-06-10 10:14:27 +02:00
Frederik Rietdijk
d358525280
Merge pull request #41628 from jyp/tensorflow-deps-fix
...
pythonPackages.Tensorflow: fix dependencies
2018-06-10 10:12:40 +02:00
Austin Seipp
ce93645c9c
pythonPackages.paperspace: propagate boto3, requests
...
Otherwise, 'paperspace-python' does not work properly.
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2018-06-10 02:45:32 -05:00
Austin Seipp
6d6ff86c85
pythonPackages: paperspace 0.0.11
...
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2018-06-10 02:28:24 -05:00
Will Dietz
d1eb255036
Merge pull request #41630 from dtzWill/update/aws-sdk-cpp-1.4.60
...
aws-sdk-cpp: 1.4.50 -> 1.4.60
2018-06-09 21:44:53 -05:00
Matthew Justin Bauer
1aaab72291
ghcjs-ng: fixup system tuple
...
on i686-linux, the libexec dir should be /libexec/i386-linux-ghc-8.2.2 not /libexec/i686-linux-ghc-8.2.2
2018-06-09 19:45:46 -04:00
Benjamin Hipple
e2b44b3170
fftw: support multiple src URLs
...
The fftw download page provides both an HTTP and FTP endpoint for downloading release tarballs:
http://fftw.org/download.html
Since some users may have difficulty fetching via FTP through corporate
firewalls, we should provide the option to get it over HTTP as well.
2018-06-09 19:18:16 -04:00
Austin Seipp
350f49734b
pythonPackages.pylibmc: fix runtime dependency on libsasl2.so, by way of cyrus_sasl
...
Without explicitly specifying that libsasl2 is part of the build, and
without explicitly making it part of pylibmc's linker flags for its
CPython extension, the cpython code enters a build state error where it
instead attempts to blindly `dlopen("libsasl2.so")` out of
$LD_LIBRARY_PATH; this fails as it can't be found in the store,
obviously.
The bigger problem with this is that it otherwise makes pylibmc
unusable, as it will try to immediately load libsasl2 at startup. This
means even using 'import pylibmc' at all will cause a failure.
Instead, add cyrus_sasl into the build closure of the library, and pass
an argument to the setup.py script to properly pass -lsasl2 to the C
extension. This causes a link to properly be formed.
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2018-06-09 17:35:12 -05:00
R. RyanTM
cc9fc2bdcd
ipopt: 3.12.9 -> 3.12.10 ( #41555 )
...
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.
This update was made based on information from https://repology.org/metapackage/ipopt/versions .
These checks were done:
- built on NixOS
- 0 of 0 passed binary check by having a zero exit code.
- 0 of 0 passed binary check by having the new version present in output.
- found 3.12.10 with grep in /nix/store/6748l35g9dz7z77wqwal99ylrhn87liv-ipopt-3.12.10
- directory tree listing: https://gist.github.com/5da4bb4853af0913caca26e8cbc87666
- du listing: https://gist.github.com/c4d8373c7d9a61f39479151fdffa99cb
2018-06-09 23:33:17 +02:00
Matthew Justin Bauer
e8072de87e
Merge pull request #41354 from mulderr/master
...
odpic: init at 2.3.2
2018-06-09 17:07:06 -04:00
Jörg Thalheim
bf794aaffc
mypy: 0.600 -> 0.610
2018-06-09 18:26:27 +01:00
Florian Klink
f4434bef8b
odpic: enable on darwin
2018-06-09 19:00:09 +02:00
Benjamin Hipple
7a17a117d6
npth: use gnupg mirrors for fetchurl
...
This lets nix try any of the gnupg mirror alternatives if the previous FTP site
is down or temporarily unavailable.
2018-06-09 12:16:24 -04:00
Christian Kauhaus
cca45cc3e1
Get libtiff on the same patch level as Debian. The imported patch file contains:
...
CVE-2017-9935
CVE-2017-11613
CVE-2017-17095
CVE-2017-18013
CVE-2018-5784
CVE-2018-7456
Re #41748 (master)
Re #41749 (release-18.03 - needs to be cherry-picked)
2018-06-09 15:49:36 +02:00
worldofpeace
7468501411
solargraph: 0.21.1 -> 0.22.0 ( #41743 )
2018-06-09 12:52:40 +01:00
Florian Klink
a757aff839
oracle-instantclient: use zips, add darwin support
2018-06-09 10:04:06 +02:00
Orivej Desh
0e07efa3c5
Merge pull request #37813 from dtzWill/update/spice-0.14.0
...
spice: 0.13.3 -> 0.14.0
2018-06-09 07:39:20 +00:00
Jörg Thalheim
1417bab036
Merge pull request #41626 from karolchmist/dotty-bump-0.8.0
...
dotty: 0.6.0-RC1 -> 0.8.0-RC1
2018-06-09 08:32:38 +01:00
Peter Simons
fbc931affd
Merge pull request #41724 from Profpatsch/hnix-dont-jailbreak
...
haskellPackages.hnix: dont jailbreak
2018-06-09 09:29:49 +02:00
Will Dietz
eb915f2b3c
spice: 0.13.3 -> 0.14.0
2018-06-09 06:59:31 +00:00
Orivej Desh
5d960b51c6
serf: update scons patch, enable kerberos on darwin
...
NIX_CFLAGS_COMPILE set by the old patch is long not recognized by cc wrappers.
2018-06-09 06:08:15 +00:00
Thomas Bach
500f1a9438
jenkins: 2.89.4 -> 2.107.3 ( #41618 )
2018-06-09 01:34:35 +02:00
xeji
af5b858825
Merge pull request #41591 from vbgl/opaline
...
ocamlPackages: use opaline instead of opam-installer
2018-06-09 01:34:02 +02:00
R. RyanTM
51ea9fed19
libpqxx: 6.2.3 -> 6.2.4 ( #41547 )
...
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.
This update was made based on information from https://repology.org/metapackage/libpqxx/versions .
These checks were done:
- built on NixOS
- /nix/store/d309iqn144gbq4g5dd2w2jnbqdi4ywrz-libpqxx-6.2.4/bin/pqxx-config passed the binary check.
- 1 of 1 passed binary check by having a zero exit code.
- 0 of 1 passed binary check by having the new version present in output.
- found 6.2.4 with grep in /nix/store/d309iqn144gbq4g5dd2w2jnbqdi4ywrz-libpqxx-6.2.4
- directory tree listing: https://gist.github.com/9ba0b82a0fae29ca1da4ffd51bf8c2e2
- du listing: https://gist.github.com/eb156369be72c9249ae90e6536eb3537
2018-06-09 00:57:12 +02:00
volth
208a3ff6c0
perlPackages.DBDSQLite: 1.55_07 -> 1.58 (please ignore it)
2018-06-08 21:54:37 +00:00
Profpatsch
91fe664867
haskellPackages.hnix: dont jailbreak
...
The jailbreak itself produces a broken cabal file, and with the current
haskellPackages hnix builds just fine.
2018-06-08 23:27:31 +02:00
xeji
5e89ea75ba
Merge pull request #41679 from volth/libvirt-4.4.0
...
libvirt: 4.1.0 -> 4.4.0
2018-06-08 23:09:38 +02:00
xeji
951d3cc4b9
Merge pull request #41375 from phryneas/mosh-with-libutempter
...
nixos/programs.mosh: refactor
2018-06-08 21:56:15 +02:00
John Ericson
ba210568a9
Merge pull request #41461 from xplat/fix-opam-master
...
fix opam tool support
2018-06-08 15:54:45 -04:00
James Deikun
1fa9e7defb
fix opam tool support
2018-06-08 15:23:49 -04:00
Lenz Weber
7c34c28cfa
nixos/programs.mosh: refactor
...
Adds programs.mosh.withUtempter (default: true).
The option enables -with-utempter for mosh, allowing it to write to
/var/run/utmp and thus making connected sessions appear in the output
of `who -a`.
For that, a guid-wrapper is required. Also, the path to the `utempter` was
hardcoded in the resulting binary until now (so it could never been found),
thus, libutempter was patched accordingly to point to
/run/wrappers/bin/utempter which at least works when the wrapper is
configured.
2018-06-08 20:57:16 +02:00
aszlig
9da116091b
nbxmpp: 0.6.5 -> 0.6.6
...
Upstream changes:
* Record all SSL errors instead of only the first
* Pass arguments to plugin/plugout methods
* Allow the Roster to be initalized without requesting it from the
server
Tested by building and running Gajim 1.0.3.
Signed-off-by: aszlig <aszlig@nix.build>
Cc: @abbradar
2018-06-08 20:26:04 +02:00
R. RyanTM
8a012a28bf
appstream-glib: 0.7.8 -> 0.7.9
...
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-glib/versions .
These checks were done:
- built on NixOS
- 0 of 0 passed binary check by having a zero exit code.
- 0 of 0 passed binary check by having the new version present in output.
- found 0.7.9 with grep in /nix/store/c15qrflgi7dn8by6lndn4szzxqfv6fbh-appstream-glib-0.7.9
- directory tree listing: https://gist.github.com/8232c1c6ab5664cb630765eefbbf7f5f
- du listing: https://gist.github.com/820804a1f32be45fb3ccdd98d6dd6a86
2018-06-08 11:05:11 -07:00
volth
3f107b617f
perlPackages.DBDPg: 3.5.3 -> 3.7.4 ( #41677 )
2018-06-08 19:19:11 +02:00
R. RyanTM
45eeb24701
xmlsec: 1.2.25 -> 1.2.26 ( #41655 )
...
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.
This update was made based on information from https://repology.org/metapackage/xmlsec/versions .
These checks were done:
- built on NixOS
- /nix/store/y5z1vxy9v75bpsjl4z3xg1l4m0d8iqg1-xmlsec-1.2.26/bin/.xmlsec1-wrapped passed the binary check.
- /nix/store/y5z1vxy9v75bpsjl4z3xg1l4m0d8iqg1-xmlsec-1.2.26/bin/xmlsec1 passed the binary check.
- 2 of 2 passed binary check by having a zero exit code.
- 0 of 2 passed binary check by having the new version present in output.
- found 1.2.26 with grep in /nix/store/y5z1vxy9v75bpsjl4z3xg1l4m0d8iqg1-xmlsec-1.2.26
- directory tree listing: https://gist.github.com/35b63e4ccf9a1df1b167177e91716a4e
- du listing: https://gist.github.com/d45eba60006ba229e2682ff2db682d96
2018-06-08 19:06:27 +02:00