Commit Graph

104963 Commits

Author SHA1 Message Date
aszlig e13c6645b1
python/natsort: Skip some tests with Python 3.[56]
Since the update to Python 3.6.3 in f906d6d18e
some of the Hypothesis tests in natsort suddenly begin to fail with
errors like this one:

res = '\x00\x00', f = <built-in function strxfrm>

>   return partial(reduce, lambda res, f: f(res), functions)
E   ValueError: embedded null character

The tests didn't fail with Python 3.6.2, but they did fail with Python
3.5 already.

I didn't dig through what the exact problem was, but I'd guess that the
problem could lie in Hypothesis itself. Unfortunately updating to the
latest version of Hypothesis didn't turn out to be that easy as well,
because the newer versions have a circular dependency on pytest and a
few other libraries.

So I opted against updating Hypothesis for now and just mark the tests
as "expected to fail" on purpose so that whenever we someday have a
newer version of Hypothesis, the build for natsort will fail and we can
remove this patch again.

Tested against Python 2.7, 3.4, 3.5 and 3.6 and all of the builds now
succeed.

Signed-off-by: aszlig <aszlig@nix.build>
Cc: @jluttine, @FRidh
2017-11-09 06:54:53 +01:00
aszlig 63a47699f7
cuneiform: Fix build against glibc 2.26
Since glibc 2.26 the string.h file includes <strings.h>, which in case
of cuneiform will include the strings.h found in Kern/hhh/tigerh/h,
because of the search path order.

Fortunately for us the strings.h in cuneiform are completely unused and
no files reference or include it. I even checked various references to
types within strings.h and the only occurences are in cf_strings.h,
which is also included by other files.

Signed-off-by: aszlig <aszlig@nix.build>
Cc: @7c6f434c
2017-11-09 06:06:32 +01:00
Orivej Desh e1340e67aa netatalk: support SSL and afpstats 2017-11-09 04:53:34 +00:00
Orivej Desh e824c931b0
Merge pull request #31413 from eqyiel/flow-0.59.0
flow: 0.58.0 -> 0.59.0
2017-11-09 04:40:34 +00:00
aszlig 2a894cd2d1
lxc: Fix build error with glibc 2.26
This issue doesn't necessarily have to do with glibc 2.26 and it could
have been fixed if we'd replace -Werror with -Wall.

The error in question was:

storage/overlay.c:808:13: error: 'dirlen' may be used uninitialized in
this function [-Werror=maybe-uninitialized]

After looking at the code in overlay.c it indeed might use dirlen
unitialized.

Unrelated to the glibc upgrade which brought the problem to the surface,
this also has been fixed upstream at lxc/lxc@180c477a32.

The reason however, that led to the upstream fix was a segfault which
has been reported at lxc/lxc#1802.

Signed-off-by: aszlig <aszlig@nix.build>
Cc: @wkennington, @globin, @fpletz
2017-11-09 02:21:00 +01:00
aszlig e5bda9399d
netsniff-ng: Fix build against glibc 2.26
The build fails first of all because it cannot find the function body
for __builtin_memset. In glibc 2.26 this is available via inclusion of
string.h.

Another failure was that UINT64_MAX wasn't available in staging/tools.c,
which is fixed again by inclusion of stdint.h.

Signed-off-by: aszlig <aszlig@nix.build>
Cc: @nckx
2017-11-09 01:34:57 +01:00
Ruben Maher 1425d4436c flow: 0.58.0 -> 0.59.0 2017-11-09 10:43:25 +10:30
Thomas Tuegel b8abd97c3b
Merge pull request #31382 from adisbladis/plasma-5_11_3
plasma: 5.11.2 -> 5.11.3
2017-11-08 16:06:52 -06:00
Thomas Tuegel 094d088135
Merge pull request #31357 from ttuegel/qt-5-tmp
Qt 5: revert 5.9.2; remove build temporary directory
2017-11-08 16:06:38 -06:00
Vladimír Čunát 94efde5119
Merge #31402: mlt, ffado: fix includeds with glibc-2.26 2017-11-08 23:01:47 +01:00
Jörg Thalheim 709c2bf19f
Merge pull request #31405 from romildo/fix.pygmentex
pygmentex: update src
2017-11-08 21:50:47 +00:00
Sergey Alexandrov 1f5c2833e9 mpdas: init at 0.4.4 (#31398)
* mpdas: init at 0.4.4

* mpdas: read config from /etc instead from nix store
2017-11-08 21:28:53 +00:00
aszlig 44cb95a234
llvmPackages/libc++: Fix build against glibc 2.26
This is very similar to what we had in bb0b0822ef.

The xlocale.h header is no longer existing in glibc version 2.26, so we
need to avoid including it.

I've tested building against all of the libcxx attributes of LLVM 3.5,
3.7, 3.8, 3.9, 4 and 5.

All of them succeeded except version 3.5, which failed because of an
unrelated issue (build of libc++abi has failed, one of its
dependencies), so I only verified whether the patch applies cleanly.

Signed-off-by: aszlig <aszlig@nix.build>
Cc: @vcunat
2017-11-08 22:08:11 +01:00
Joerg Thalheim 03e8bed8b3 openafs-client: prefer patch provided by upstream 2017-11-08 20:47:22 +00:00
Maximilian Bosch 161e80e3fd
treewide: get rid of invalid `buildPhases` argument
I don't know where this comes from (I accidentally did that as well
once), but some derivations seem to use `buildPhases` rather than
`phases` in their derivations.

This kills all improper usages as the lack of a `phases` argument
didn't break the build, so this can be safely removed.
2017-11-08 21:38:06 +01:00
Joerg Thalheim 4d2c2d8d9f openafs: add patch for glibc 2.26 2017-11-08 20:24:34 +00:00
Joerg Thalheim 55e6a5a4da android-udev-rules: 20171031 -> 20171107 2017-11-08 20:24:00 +00:00
aszlig 33b0b5ed1d
anki: Fix hash of the source tarball
Searching the web for the base-16 encoded hash of the one we have in the
Nix expression didn't give any results and I also couldn't find the
older tarball anywhere (even the mirrors I've checked don't have it).

So checking the updated hash I've found that other distros use this, so
I'd bet it's safe to do this.

I've tested building the package but I didn't do any runtime test.

Signed-off-by: aszlig <aszlig@nix.build>
Cc: @the-kenny
2017-11-08 21:12:22 +01:00
kyren 1e75677118 netatalk: make perl / python utility scripts work
Adds `perl` and `python2` to nativeBuildInputs, to make the included
perl and python utility script `#!` lines point at the right place.
2017-11-08 15:11:06 -05:00
aszlig a2045e029a
libstdc++5: Add patch to fix type for ucontext_t
Since glibc 2.26, struct ucontext no longer exists but is wrapped in a
typedef ucontext_t.

This is basically a backport of the patch to gcc version 4.5 which was
introduced by @vcunat in f04b64c1e9.

Building against x86_64-linux and i686-linux now succeeds.

Signed-off-by: aszlig <aszlig@nix.build>
Cc: @abbradar
2017-11-08 20:52:20 +01:00
Tim Steinbach 4cb8c5dc3c
linux-copperhead: 4.13.11.a -> 4.13.12.a 2017-11-08 14:34:31 -05:00
Tim Steinbach 087d1e8d36
linux: 4.13.11 -> 4.13.12 2017-11-08 14:34:31 -05:00
Tim Steinbach db1e2444a5
linux: 4.9.60 -> 4.9.61 2017-11-08 14:34:31 -05:00
Tim Steinbach bd4b9062ea
linux: 4.4.96 -> 4.4.97 2017-11-08 14:34:31 -05:00
Orivej Desh 27831cbd86
Merge pull request #31397 from nico202/reaver-upgrade
reaver-wps-t6x: 1.5.2 -> 1.6.3
2017-11-08 19:27:24 +00:00
José Romildo Malaquias df94f7bf76 pygmentex: update src 2017-11-08 17:23:49 -02:00
kyren 997d66c489 netatalk: 3.1.7 -> 3.1.11
Netatalk 3.1.11 is the latest stable release.  There is also a nasty bug
with netatalk < 3.1.11 (https://sourceforge.net/p/netatalk/bugs/636/)
that prevents using netatalk shares for time machine backups.
2017-11-08 14:21:00 -05:00
John Ericson 0101856765
Merge pull request #30549 from obsidiansystems/bintools
treewide: Introduce stdenv.cc.bintools
2017-11-08 14:20:48 -05:00
Jörg Thalheim 999bcd098d
Merge pull request #31296 from ryantm/mattermost43
mattermost, nixos/mattermost: update to 4.3.0
2017-11-08 17:45:42 +00:00
Michael Raskin e9965b5b19 julia_06: fix libgit2 tests by updating the literal strings searched in the error messages 2017-11-08 18:43:02 +01:00
Jörg Thalheim f1992a206f
Merge pull request #31389 from xvapx/meliae
pythonPakages.meliae fix version
2017-11-08 17:42:30 +00:00
Piotr Bogdan 1e78b48666 ffado: fix build with glibc-2.26
see https://sourceforge.net/p/ffado/mailman/message/36008067/
2017-11-08 17:35:51 +00:00
Piotr Bogdan 2704fdd710 mlt: fix build with glibc-2.26
see https://github.com/mltframework/mlt/pull/248
2017-11-08 17:35:48 +00:00
Maxime Dénès a53462ea85 psc-package: 0.2.0 -> 0.2.4 2017-11-08 18:06:51 +01:00
Nicolò Balzarotti 2b409cc7c3 reaver-wps-t6x: 1.5.2 -> 1.6.3 2017-11-08 17:42:58 +01:00
Piotr Bogdan e26c52e03a libzip: 1.2.0 -> 1.3.0 2017-11-08 16:32:26 +00:00
Sander van der Burg f162d54b76
Merge pull request #31381 from Ma27/repackage-zed-with-node2nix
zed: replace npm2nix with node2nix
2017-11-08 17:11:10 +01:00
Peter Simons c7203efb7d
Merge pull request #31333 from ElvishJerricco/unextracted-all-cabal-hashes
Unextracted all cabal hashes
2017-11-08 16:25:16 +01:00
aszlig bb0b0822ef
neko: Fix build against glibc 2.26
The header file xlocale.h has been removed in glibc 2.26.

Quoting the release notes[1]:

* The nonstandard header <xlocale.h> has been removed. Most programs
  should use <locale.h> instead. If you have a specific need for the
  definition of locale_t with no other declarations, please contact
  libc-alpha@sourceware.org and explain.

I've backported HaxeFoundation/neko@e286c8f330
against version 2.1.0 and the build now succeeds.

Signed-off-by: aszlig <aszlig@nix.build>
2017-11-08 16:05:19 +01:00
Maximilian Bosch e9bf6c4104
zed: replace npm2nix with node2nix 2017-11-08 16:03:01 +01:00
Marti Serra e4c7cfc9eb pythonPackages.sybase: move to python-modules 2017-11-08 15:59:16 +01:00
aszlig 845aae9c10
clisp: Add patch to remove reference to cfree
Fixes the build failure after the upgrade to glibc 2.26 in
9bb67d5c1e.

From the cfree(3) manpage:

This function should never be used. Use free(3) instead. Starting with
version 2.26, it has been removed from glibc.

From the glibc 2.26 release notes[1]:

* The obsolete function cfree has been removed.  Applications should use
  free instead.

[1]: https://sourceware.org/ml/libc-alpha/2017-08/msg00010.html

Signed-off-by: aszlig <aszlig@nix.build>
Cc: @7c6f434c, @tohl
2017-11-08 15:52:25 +01:00
Michael Weiss c4dbbbd890 gns3Packages.{server,gui}Preview: 2.1.0rc3 -> 2.1.0rc4 2017-11-08 14:56:36 +01:00
Robert Helgesson 503ddcf025
perl-String-ShellQuote: add license field 2017-11-08 14:21:14 +01:00
Robert Helgesson 3edc01d5d7
eclipse/plugins: remove `phases` fields 2017-11-08 14:16:10 +01:00
Joerg Thalheim 81154d929a dbench: fix compilation with glibc 2.6
stdint is needed for intptr_t
2017-11-08 12:39:07 +00:00
Orivej Desh 26ac0de8be
Merge pull request #31391 from devhell/mediainfo
{lib-}mediainfo{-gui},libzen: 0.7.99 -> 17.10, 0.4.35 -> 0.4.37
2017-11-08 12:13:38 +00:00
Michael Weiss 9413521682
Merge pull request #31375 from dywedir/sway
sway: 0.14.0 -> 0.15.0
wlc: 0.0.10 -> 0.0.11
2017-11-08 12:46:30 +01:00
makefu 292f60504c linux.kernel: enable build of stk1160 modules 2017-11-08 12:41:54 +02:00
Orivej Desh 82973dfc04 mediainfo: enable parallel building 2017-11-08 10:36:21 +00:00
Lancelot SIX a0c9173320
time: 1.7 -> 1.8
See http://lists.gnu.org/archive/html/info-gnu/2017-11/msg00002.html
for release information
2017-11-08 11:32:44 +01:00
Sander van der Burg 39015dbe4b nixui: do not copy node-env.nix on regeneration 2017-11-08 11:25:02 +01:00
Orivej Desh 06408bd713
Merge pull request #31380 from djgoku/bump-erlang-to-20.1
erlang: 20.0 -> 20.1
2017-11-08 10:15:34 +00:00
devhell 5bfeeef850 {lib-}mediainfo{-gui},libzen: 0.7.99 -> 17.10, 0.4.35 -> 0.4.37
Update to the latest version (note versioning change).

From the changelog for 'mediainfo' (libzen changelog is unavailable):
===
Version 17.10, 2017-11-02
--------------
+ We need your support! Visit https://mediaarea.net/SupportUs
+ Version scheme is now YY.MM (year dot month, 2 digits each)
+ New MediaInfo XML output, with XSD, more suitable for automatic
parsing. Use Option("Inform", "OLDXML") for keeping previous behavior
+ New "Info_OutputFormats" option for listing supported output formats
+ Universal Ad ID: refactored display, better display of value and
registry, XML name slightly modified
+ MOV: support of HDR metadata (MasteringDisplayColorVolume, MaxCLL,
 MaxFALL)
+ BWF: display of UMID and loudness info
+ AAC: show program_config_element in trace
+ MPEG Audio: frame rate info
+ PCM in WAV and Matroska: Support of ValidBitsPerSample
+ I197, EBUCore: 1.8 output uses now final version of XSD and final XSD
location
+ Matroska: tweaking frame rate empirical detection for some corner
cases
x I1070, LAME 3.100 info tag was incorrectly parsed
x B1068, MPEG Audio: Incoherent duration between General and Audio
parts, Audio part duration fixed
x Matroska: showing "A_MS/ACM" Matroska CodecID
x MXF: Fix crash with some buggy files
x MXF: was not well supporting MXF referencing only 1 file
x PCM in WAV: 8-bit content is unsigned and without endianess
x PCM in WAV and Matroska: More coherency between Wave info and
ExtensibleWave Info (bitdepth, sign)
x WAV: GUID display was with first 8 bytes in wrong order
x Several crash fixes
2017-11-08 10:06:57 +00:00
Orivej Desh d19244d2b9
Merge pull request #31383 from orivej/hex
hex-packages: delete transitively unbuildable packages
2017-11-08 09:59:37 +00:00
Vladimír Čunát c2b9ab578d
nfs-utils: fixup includes with glibc-2.26 2017-11-08 10:27:39 +01:00
Marti Serra f4562ba8c3 pythonPakages.meliae fix version 2017-11-08 10:20:14 +01:00
Vladimír Čunát 18aada9c4c
virtualbox: fixup build with glibc-2.26
Explanation:
https://www.linuxquestions.org/questions/slackware-14/sbo-scripts-not-building-on-current-read-1st-post-pls-4175561999/page46.html#post5753698
2017-11-08 10:00:32 +01:00
Michael Raskin 27f7999280 glucose, glucose-syrup: 4.0 -> 4.1 2017-11-08 09:55:29 +01:00
dywedir ffa60968a3 wlc: 0.0.10 -> 0.0.11 2017-11-08 10:40:00 +02:00
Orivej Desh 2aeb612326
Merge pull request #31385 from dtzWill/update/gnuplot-5.2.1
gnuplot: 5.2.0 -> 5.2.1
2017-11-08 08:07:04 +00:00
Marius Bergmann acd8172bf4 unifi: 5.6.19 -> 5.6.20 2017-11-08 09:01:44 +01:00
Bjørn Forsman 6c7c3beea3 keepassxc: rename from keepassx-community
I think the new name is more appropriate, see https://keepassxc.org/.
2017-11-08 08:48:54 +01:00
Will Dietz 7390087b78 gnuplot: 5.2.0 -> 5.2.1 2017-11-08 01:48:40 -06:00
Orivej Desh ba86c9f27b hex-packages: delete transitively unbuildable packages
Fixes #26279
2017-11-08 07:23:51 +00:00
adisbladis 6d23ec7c3f
plasma: 5.11.2 -> 5.11.3 2017-11-08 15:05:43 +08:00
aszlig b9b5942e2b
uqm: Remove the -lgcc_s hack
This is no longer needed and I've verified this by building and running
the game.

Signed-off-by: aszlig <aszlig@nix.build>
2017-11-08 06:48:57 +01:00
aszlig 7603da33de
uqm: Fix build against glibc 2.26
I've bisected the introduction of the build failure to be the glibc 2.26
upgrade with commit 9bb67d5c1e.

At first I was somewhat stumped why an glibc update could cause
undeclared identifiers, but after looking at the changes of glibc and
the source code of The Ur-Quan Masters the problem quickly turned out to
be this very change:

https://sourceware.org/git/?p=glibc.git;a=commit;h=7b037c095e31c2396d0a9b0e6356bc566ee4812f

So string.h now in turn includes strings.h, which in theory wouldn't be
a problem.

However, both strings.h and the strings.h in the uqm source code use
constant _STRINGS_H, which causes the glibc strings.h to be included but
the one from uqm basically includes an empty file.

Signed-off-by: aszlig <aszlig@nix.build>
2017-11-08 06:48:15 +01:00
Jonathan C. Otsuka 442e238234 erlang: 20.0 -> 20.1 2017-11-07 23:36:13 -06:00
aszlig 3429d8cbbf
uqm: Clean up package expression style
The only functional change here is that I've dropped unzip, because that
dependency doesn't seem to be necessary at all. Despite the broken build
state I've tried building and running The Ur-Quan Masters with an older
nixpkgs revision and it works fine.

Other than that there are no references in the source code for unzip
except in the binary installer and some of the INSTALL files.

The reason why I'm removing the "with pkgs.lib;" is that it makes it
easier to quickly check for errors with "nix-instantiate --parse".

Signed-off-by: aszlig <aszlig@nix.build>
Cc: @jcumming
2017-11-08 05:55:35 +01:00
Orivej Desh 6b1161ebc0
Merge pull request #31302 from adisbladis/emacsPackages.font-lock-plus
emacsPackages.font-lock-plus: init at 20170222.1755
2017-11-08 02:51:03 +00:00
Peter Hoeg 0f68e1328b syncthing: 0.14.39 -> 0.14.40 2017-11-08 10:42:57 +08:00
Joachim Fasting cd722e1678
surf: use https 2017-11-08 01:04:13 +01:00
John Boehr 24c6407883
Merge branch 'master' of https://github.com/NixOS/nixpkgs into php-mysqlnd-m 2017-11-07 14:01:39 -08:00
Charles Strahan 4ca7f46863
doas: init at 6.0
Portable version of the OpenBSD `doas` command.
2017-11-07 16:34:50 -05:00
Daiderd Jordan 80ae60a34b
Merge pull request #31348 from Tehnix/master
PHP: Specify CXXFLAGS for macOS, fixes #31059
2017-11-07 22:27:57 +01:00
Christian Kjær 233a0b3f36
php: specify CXXFLAGS for macOS
Fixes #31059
2017-11-07 22:20:17 +01:00
Orivej Desh 6fb8bac12f
Merge pull request #31341 from orivej/rednotebook
Restore and update RedNotebook
2017-11-07 21:17:53 +00:00
dywedir fe4907c9d0 sway: 0.14.0 -> 0.15.0 2017-11-07 23:16:50 +02:00
Robert Helgesson c638dacf4b
eclipse-plugin-bytecode-outline: 2.4.3 -> 2.5.0 2017-11-07 22:00:55 +01:00
Orivej Desh 67b4e7a4c0
Merge pull request #31373 from kamilchm/pony-stable
pony-stable: 0.0.1 -> 0.1.1
2017-11-07 20:34:02 +00:00
Tuomas Tynkkynen 0364cf6620 rpcbind: Fix build with libnsl 2017-11-07 21:34:51 +02:00
Kamil Chmielewski 653624061c pony-stable: 0.0.1 -> 0.1.1 2017-11-07 20:21:55 +01:00
Jörg Thalheim 15e42939cc
Merge pull request #31361 from yegortimoshenko/lmms/1.2.0-rc4
lmms: 1.1.90 -> 1.2.0-rc4, Qt5, optional lame, libsoundio, portaudio
2017-11-07 19:03:49 +00:00
Jörg Thalheim 82e0fabbe2
Merge pull request #31285 from volth/patch-70
opera:	46.0.2597.39	->	48.0.2685.52
2017-11-07 19:02:11 +00:00
Tuomas Tynkkynen 34f3ef2c4d tcp_wrappers: Use libnsl to fix build after new glibc
https://hydra.nixos.org/build/63759192

https://sourceware.org/ml/libc-alpha/2017-02/msg00478.html
2017-11-07 20:38:41 +02:00
Tuomas Tynkkynen 3b9fbfc162 libnsl: init at 1.1.0
This code was formerly part of glibc, but is now standalone to
be able to link against TI-RPC for IPv6 support.
2017-11-07 20:38:11 +02:00
Jörg Thalheim 9356b8823a
Merge pull request #31370 from schwepp/update/mpw-2.6
mpw: 2.1 -> 2.6
2017-11-07 18:26:17 +00:00
Jörg Thalheim 27d8370743
Merge pull request #31366 from ravloony/procodile
procodile: init at 1.0.17
2017-11-07 18:21:11 +00:00
Samuel Leathers 3641da1ef1
Merge pull request #31114 from jraygauthier/jrg/python_selenium_update
selenium: 2.52.0 -> 3.6.0
2017-11-07 13:17:02 -05:00
Kilian Schweppe 3f3ac8829f mpw: 2.1 -> 2.6 2017-11-07 19:12:48 +01:00
Jörg Thalheim febf9e191e
Merge branch 'master' into python-trezor-fix-master 2017-11-07 18:06:28 +00:00
Joerg Thalheim 05f9a36612 python.pkgs.libagent: enable tests 2017-11-07 18:03:13 +00:00
Joerg Thalheim 8ad6b2e862 python.pkgs.keepkey: 0.7.3 -> 4.0.0 2017-11-07 17:59:24 +00:00
Vladimír Čunát 7e571b9a99
mesos: fixup includes with glibc-2.26 2017-11-07 18:55:12 +01:00
Jörg Thalheim efc46c2836
Merge pull request #28782 from jraygauthier/jrg/vscode_cpptools_init
vscode-extension-ms-vscode-cpptools: Init at 0.12.3
2017-11-07 17:37:09 +00:00
Jörg Thalheim 2e4282d968
Merge pull request #30501 from gnidorah/mailnag
mailnag: use setup.py
2017-11-07 17:31:31 +00:00
Tim Steinbach 198fd526ca
Revert "coqPackages.{ssreflect,mathcomp}: 1.6.1 -> 1.6.4" 2017-11-07 17:15:09 +00:00
Tim Steinbach cbd458a1b1
Merge pull request #31365 from andir/fix-cvs-CVE-2017-12836
cvs: fix CVE-2017-12836
2017-11-07 17:12:15 +00:00
Tom Macdonald 7b8e40c6b1 procodile: init at 1.0.17 2017-11-07 17:04:50 +01:00
Tim Steinbach 5b84cdfd3c
Merge pull request #31362 from earldouglas/jenkins-2.88
jenkins: 2.87 -> 2.88
2017-11-07 16:02:29 +00:00
Andreas Rammhold d0c8c66068
cvs: fix CVE-2017-12836
This patch is based on the work of the patch from Thorsten Glaser (MirBSD) [1]

[1] http://www.mirbsd.org/cvs.cgi/src/gnu/usr.bin/cvs/src/rsh-client.c.diff?r1=1.6;r2=1.7
2017-11-07 17:01:45 +01:00
Vladimír Čunát 0f8c85d5d0
strongswan: fixup includes with glibc-2.26 2017-11-07 16:40:12 +01:00
Vladimír Čunát 6ffafc78fb
Merge branch 'staging'
Main change: glibc: 2.25-x -> 2.26-y, containing security fixes,
and various features and deprecations.  Unfortunately, some of the
latter still cause (transitively) a couple hundred newly failing jobs.
I'm not delaying anymore, so that we have the security fix on master.
I mainly patched gcc, llvm and icu, but I can't fix everything...
2017-11-07 16:00:35 +01:00
James Earl Douglas 0e5014def9
jenkins: add earldouglas as a maintainer 2017-11-07 07:56:37 -07:00
James Earl Douglas c7e3555d8b
jenkins: 2.87 -> 2.88 2017-11-07 07:56:14 -07:00
Yegor Timoshenko 467b9b7a93 lmms: 1.1.90 -> 1.2.0-rc4, Qt5, optional lame, libsoundio, portaudio 2017-11-07 14:48:20 +00:00
Vladimír Čunát f04b64c1e9
gcc-4.5: fixup build with glibc-2.26
The older the GCC, the easier the backporting :-)
2017-11-07 15:39:24 +01:00
Vladimír Čunát d51f9b364e
checkpolicy: fixup includes with glibc-2.26 2017-11-07 15:27:53 +01:00
Tim Steinbach 4db6d35891
Merge pull request #31208 from afrepues/gitlab-10.1.1
gitlab: 10.0.2 -> 10.1.1
2017-11-07 14:26:27 +00:00
Vladimír Čunát 54c14e2fa3
gcc-4.8: fix with glibc-2.26 2017-11-07 14:53:10 +01:00
Thomas Tuegel 648205e320
Merge pull request #31287 from ttuegel/hplip
hplip: 3.17.9 -> 3.17.10
2017-11-07 07:41:01 -06:00
Thomas Tuegel a8538307e5
Merge branch 'master' into qt-5-tmp 2017-11-07 07:33:47 -06:00
Tim Steinbach 879827e15f
Merge pull request #31336 from manveru/update-elm-format
elm-format: 0.5.2 -> 0.7.0
2017-11-07 13:29:57 +00:00
Tim Steinbach 1cb19a31f6
Merge pull request #31354 from maximedenes/mathcomp.1.6.4
coqPackages.{ssreflect,mathcomp}: 1.6.1 -> 1.6.4
2017-11-07 13:20:57 +00:00
Jörg Thalheim b1d6c259b3
Merge pull request #31355 from Mic92/fix-praw
Fix praw
2017-11-07 13:20:10 +00:00
Thomas Tuegel ae6ac0ed3e
qt5: Add instructions for updating and patching 2017-11-07 07:18:50 -06:00
Thomas Tuegel a055cee512
rockbox_utility: fix path to lrelease 2017-11-07 07:18:50 -06:00
Thomas Tuegel d3c11c512c
qt5ct: fix path to lrelease 2017-11-07 07:18:50 -06:00
Thomas Tuegel 2522a72caf
phantomjs2: remove obsolete RPATH hack 2017-11-07 07:18:49 -06:00
Thomas Tuegel 4ee379278f
pyqt5: no need to set --qmake in configure 2017-11-07 07:18:49 -06:00
Thomas Tuegel bf117e3205
qtstyleplugins: remove obsolete install prefix hack 2017-11-07 07:18:49 -06:00
Thomas Tuegel abb3479fcb
qscintilla: fix qmake install paths 2017-11-07 07:18:48 -06:00
Thomas Tuegel d817095208
qoauth: fix Qt mkspecs install path 2017-11-07 07:18:48 -06:00
Thomas Tuegel afac783343
mlt: extra CFLAGS for QtSvg 2017-11-07 07:18:48 -06:00
Thomas Tuegel 0b4564fdb1
qbittorrent: no longer need to set QT_QMAKE 2017-11-07 07:18:47 -06:00
Thomas Tuegel d13bfc0c45
lyx: remove obsolete pkg-config hack 2017-11-07 07:18:47 -06:00
Thomas Tuegel 1f5b6a2f60
kdenlive: missing dependencies 2017-11-07 07:18:47 -06:00
Thomas Tuegel fe0ab944db
qt5: factor out common definitions and remove symlink farm
The module definitions are factored out and shared between qt56 and qt59. The
symlink farm which was created during builds is no longer needed.
2017-11-07 07:18:46 -06:00
Joerg Thalheim b71500ef5a python.pkgs.betamax-matchers: 0.3.0 -> 0.4.0 2017-11-07 13:17:45 +00:00
Joerg Thalheim 5413be5645 python.pkgs.betamax-serializers: init at 0.2.0 2017-11-07 13:17:28 +00:00
Joerg Thalheim a5744101a2 python.pkgs.praw: 3.5.0 -> 5.2.0 2017-11-07 13:17:07 +00:00
Joerg Thalheim af9e6c1634 python.pkgs.prawcore: init at 0.12.0 2017-11-07 13:16:42 +00:00
Joerg Thalheim b0225f8cbc python.pkgs.sybil: init at 1.0.5 2017-11-07 13:16:19 +00:00
Joerg Thalheim 8fb1ec1af4 python.pkgs.update_checker: 0.11 -> 0.16 2017-11-07 13:15:49 +00:00
Joerg Thalheim 3339a7dc7c python.pkgs.textfixtures: 4.5.0 -> 5.3.0 2017-11-07 13:14:44 +00:00
Frederik Rietdijk f8eed5f7a5 fetchgitPrivate: put our custom ssh on PATH
Currently we wrap ssh so it can find the config file passed in by
<ssh-config-file>. If one however uses ProxyCommand ssh, then ssh that
is on PATH is taken (which is also unavailable when using nix-shell
--pure), which is the plain ${openssh}/bin/ssh.

This commit makes sure our wrapped ssh is available on PATH.
2017-11-07 14:07:52 +01:00
Tim Steinbach 2e333a202b
Merge pull request #31323 from rycee/i3lock-color-needs-sse2
i3lock-color: limit to i686 and x86-64 platforms
2017-11-07 13:04:24 +00:00
Tim Steinbach b9a42797ff
Merge pull request #31315 from Lassulus/bitcoin-abc
bitcoin-abc: 0.15.0 -> 0.16.0
2017-11-07 12:58:36 +00:00
Parnell Springmeyer 3c3e1db364 signal-desktop: init at 1.0.35 (#31335)
* signal-desktop: init at 1.0.35
2017-11-07 12:26:45 +00:00
Maxime Dénès 90d33e4eaa
coqPackages.ssreflect: 1.6.1 -> 1.6.4 2017-11-07 13:26:13 +01:00
Maxime Dénès 5a43ac2c60
coqPackages.mathcomp: 1.6.1 -> 1.6.4 2017-11-07 13:26:10 +01:00
Vladimír Čunát 8da04338d7
gcc-4.9: fixup build with glibc-2.26
Upstream didn't backport this, but fortunately it wasn't too hard.
2017-11-07 12:56:57 +01:00
Raphael Das Gupta 139d931d4d nox: add license information: MIT
nox was licensed under MIT License
since at least 0.0.2. See
b7e084a7c5
2017-11-07 13:50:23 +02:00
Eelco Dolstra d2df286df7
nixUnstable: nix-1.12pre5663_c7af84ce -> nix-1.12pre5732_fd10f6f2 2017-11-07 12:25:17 +01:00
Jörg Thalheim 1925b4c1a0
Merge pull request #31137 from yegortimoshenko/rambox/build-from-source
rambox: build from source
2017-11-07 10:33:03 +00:00
Domen Kožar 2b995c544d osx_private_sdk: reduce output size and remove it from runtime closures 2017-11-07 11:06:10 +01:00
Jörg Thalheim 05de801c1a
Merge pull request #31347 from benley/vboot_reference
vboot_reference: build all the tools
2017-11-07 09:31:44 +00:00
Michael Weiss 52d6eecc24 iniparser: 4.0 -> 4.1 2017-11-07 09:18:55 +01:00
Vladimír Čunát e0a36522a7
llvm 3.7--4: fixup build with glibc-2.26 2017-11-07 09:17:00 +01:00
Samuel Leathers 0de572b7d3
Merge pull request #31318 from pbogdan/update-debootstrap
debootstrap: 1.0.87 -> 1.0.92
2017-11-07 03:13:08 -05:00
Samuel Leathers ada3bce8f5
Merge pull request #31345 from acowley/rtags-2.15
rtags: 2.12 -> 2.15
2017-11-07 03:09:11 -05:00
Samuel Leathers 4b95930322
Merge pull request #31321 from pbogdan/update-dfeet
dfeet: 0.3.11 -> 0.3.12
2017-11-07 02:41:25 -05:00
Frederik Rietdijk eef5368176
Merge pull request #31307 from tari/flexget-fix
flexget: fix build with updated dependencies
2017-11-07 08:34:56 +01:00
Vladimír Čunát 81c5040470
gpm: fixup build with glibc-2.26 2017-11-07 08:33:48 +01:00
Vladimír Čunát 7ba482a74a
live555: fixup build with glibc-2.26 2017-11-07 07:27:32 +01:00
Vladimír Čunát 30c971e8d3
Merge #31331: dns-root-data: 2017-08-29 -> 2017-10-24 2017-11-07 06:41:31 +01:00
Vladimír Čunát 9aa37b159b
Merge branch 'master' into staging 2017-11-07 06:41:23 +01:00
Benjamin Staffin 7ccad2a4f2
vboot_reference: build all the tools
This expands the build to include more things that are useful on
chromebooks, like `crossystem`
2017-11-07 00:37:48 -05:00
Vladimír Čunát 2d3149f4a8
icu: only patch-out xlocale if using glibc 2017-11-07 06:33:09 +01:00
Peter Hoeg 376516f335
Merge pull request #31120 from peterhoeg/f/sqlite
sqlitebrowser: 3.10.0 -> 3.10.1 and make it work with Qt 5.9
2017-11-07 10:28:47 +08:00
Anthony Cowley 37fc1fcd45 rtags: 2.12 -> 2.15 2017-11-06 20:57:56 -05:00
Vincent Laporte 471175e0be
ocamlPackages.zed: 1.5 -> 1.6 2017-11-07 01:04:59 +00:00
Orivej Desh b48d954228 rednotebook: 1.8.1 -> 2.3 2017-11-07 00:18:30 +00:00
Orivej Desh 2b8d48a9fc rednotebook: move to applications/editors 2017-11-06 23:20:14 +00:00
Michael Alan Dorman 97f816dc56 pythonPackages.fuse: fix infinite recursion in expression
I believe this resolves #31338.
2017-11-06 17:57:15 -05:00
John Boehr 41cd4f2459
php: add config.php.mysqlnd option 2017-11-06 14:23:27 -08:00
Tuomas Tynkkynen 5d5eb6aba4 lcdproc: Disable parallel build
https://hydra.nixos.org/build/63628044
2017-11-07 00:17:31 +02:00
Michael Alan Dorman 150d35dd0a melpa-packages: 2017-11-06 2017-11-06 16:58:25 -05:00
Michael Alan Dorman fa3ca0c70e melpa-stable-packages: 2017-11-06 2017-11-06 16:58:25 -05:00
Michael Alan Dorman 532e2edcdd org-packages: 2017-11-06 2017-11-06 16:58:25 -05:00
Michael Alan Dorman 2fa69f6b46 elpa-packages: 2017-11-06 2017-11-06 16:58:24 -05:00
Will Fancher a38a3e2129 Extract files one at a time from all-cabal-hashes 2017-11-06 16:49:09 -05:00
Will Fancher 8caf9f13a6 Revert "Merge branch 'all-cabal-hashes-components'"
This reverts commit ad6b8f438d, reversing
changes made to 2d44e72801.
2017-11-06 16:47:29 -05:00
Orivej Desh e4a535afb9 Revert "pythonpackages.redNotebook: Remove outdated package"
This reverts commit 33a56ef0a6.
2017-11-06 20:56:48 +00:00
Frederik Rietdijk e734ecb1e8
Merge pull request #30919 from adisbladis/pythonPackages-cleanup
WIP: Python packages cleanup
2017-11-06 20:54:51 +01:00
Servilio Afre Puentes f2ac5e0acf gitlab: 10.0.2 -> 10.1.1 2017-11-06 14:50:53 -05:00
Servilio Afre Puentes fa0148abf8 gitlab-workhorse: 3.0.0 -> 3.2.0 2017-11-06 14:50:53 -05:00
Servilio Afre Puentes c9bb6ac1fd gitlab-shell: 5.9.0 -> 5.9.3 2017-11-06 14:50:52 -05:00
Servilio Afre Puentes 3e90cbe268 gitlab-shell: make the patches apply cleanly 2017-11-06 14:50:52 -05:00
Servilio Afre Puentes 2aa4517d4f gitaly: 0.38.0 -> 0.43.1 2017-11-06 14:50:52 -05:00
Frederik Rietdijk 4fc2fd6d26
Merge pull request #31242 from rnhmjoj/python
hyp: move expression out python-packages.nix
2017-11-06 20:43:22 +01:00
Frederik Rietdijk 13cc4f513e
Merge pull request #31271 from FRidh/fetchurl
fetchurl: add passthru
2017-11-06 20:41:22 +01:00
Frederik Rietdijk 4a62ff9f47
Merge pull request #31324 from srhb/openra-python-binpath
openra: Add python to bin PATH, fixing launcher
2017-11-06 20:38:04 +01:00
Vladimír Čunát f47e13866d
libtirpc: fix missing include after glibc-2.26 2017-11-06 20:33:58 +01:00
Frederik Rietdijk a346dc66a7
Merge pull request #31297 from fahadsadah/master
python: fastimport 0.9.4 -> 0.9.6
2017-11-06 20:33:29 +01:00
Vincent Laporte f35f995fff
dns-root-data: 2017-08-29 -> 2017-10-24 2017-11-06 19:22:38 +00:00
Vladimír Čunát 1ac1581253
libselinux: fix missing include after glibc-2.26 2017-11-06 20:18:43 +01:00
Tuomas Tynkkynen bf585f2881 linux_rpi: 1.20170811 -> 1.20171029 2017-11-06 20:49:48 +02:00
Tuomas Tynkkynen 967ecb802e raspberrypifw: 1.20170811 -> 1.20171029 2017-11-06 20:49:48 +02:00
Daiderd Jordan 1d350f50da
Merge pull request #31326 from hedning/nix-zsh-completions-0.3.2
nix-zsh-completions: 0.3.1 -> 0.3.2
2017-11-06 19:49:28 +01:00
Frederik Rietdijk 8048df4739
Merge pull request #31309 from nlewo/pr/devpi
pythonPackages.devpi_common: remove one test
2017-11-06 19:38:28 +01:00
Vladimír Čunát 3562c2cfa7
flex: add notes about the glibc-2.26 patch 2017-11-06 19:25:14 +01:00
James Edington 880a636ef4 palemoon: 27.5.0 -> 27.6.0
Version bump because apparently Moonchild published 27.6.0_Release
2017-11-06 12:22:17 -06:00
Vladimír Čunát 6535f0bca6
flex: fix with glibc-2.26
It caused segfaults, e.g. when building doxygen.
2017-11-06 19:20:21 +01:00
Graham Christensen 240b4f36a6
Merge pull request #31160 from mpickering/idris-10450
Add wrapper for idris exe for gcc/gmp runtime deps
2017-11-06 13:11:04 -05:00
Tor Hedin Brønner 6949cfa58e nix-zsh-completions: 0.3.1 -> 0.3.2
Adds support for nix1.12 and various improvements.
2017-11-06 19:07:36 +01:00
Daiderd Jordan 5549fa767f
Merge pull request #31316 from Mic92/vim-plugins
Update Vim plugins
2017-11-06 19:06:54 +01:00
Sarah Brofeldt 05b90907a7 openra: Add python to bin PATH, fixing launcher 2017-11-06 18:18:19 +01:00
Robert Helgesson 40b347f205
i3lock-color: limit to i686 and x86-64 platforms
Compilation fails for other CPU architectures due to requiring the
SSE2 instruction set. See [1] for upstream issue.

[1]: https://github.com/chrjguill/i3lock-color/issues/44
2017-11-06 17:55:06 +01:00
Vladimír Čunát 6c3bae563e
icu: fix build with glibc-2.26 2017-11-06 17:05:33 +01:00
Piotr Bogdan 217257c835 dfeet: 0.3.11 -> 0.3.12 2017-11-06 14:40:12 +00:00
Piotr Bogdan cac4cb401c debootstrap: 1.0.87 -> 1.0.92 2017-11-06 14:25:44 +00:00
gnidorah b0d193f596 SDL2: wayland support 2017-11-06 16:09:03 +02:00
Michael Fellinger 2c50340575 elm-format: 0.5.2 -> 0.7.0 2017-11-06 14:47:33 +01:00
Tim Steinbach 2767a0e9e1
Merge pull request #31288 from afldcr/master
gitea: 1.2.1 -> 1.2.3
2017-11-06 12:54:30 +00:00
Tim Steinbach 88e03e1269
Merge pull request #31314 from dywedir/feh
feh: 2.21 -> 2.22
2017-11-06 12:48:52 +00:00
Tim Steinbach a9bf922bb7
Merge pull request #31308 from adisbladis/firejail-0_9_50
firejail: 0.9.48 -> 0.9.50
2017-11-06 12:47:57 +00:00
Vladimír Čunát 1d9a8e2289
Merge branch 'master' into staging 2017-11-06 13:24:06 +01:00
Vladimír Čunát c8c6a1edb5
Merge #31209: cc-wrapper: Fix if dynamicLinker not found 2017-11-06 13:07:43 +01:00
Vladimír Čunát f245fe9c50
Merge #28622: glibc-2.26 2017-11-06 13:02:41 +01:00
Vladimír Čunát bc90fe1fbb
Merge #30371: update misc. gnome3-related libraries 2017-11-06 13:00:15 +01:00
Joerg Thalheim c755d83c47 vimPlugins: update all 2017-11-06 11:33:12 +00:00
Joerg Thalheim db06695dd7 vimPlugins.command-t: 2017-06-23 -> 2017-09-29 2017-11-06 11:33:01 +00:00
Joerg Thalheim 8c4dc462af vim-plugins: update command no longer requires user input 2017-11-06 11:26:38 +00:00
dywedir a5eaa1cfea feh: 2.21 -> 2.22 2017-11-06 12:15:33 +02:00
lassulus a0f01a5f0b bitcoin-abc: 0.15.0 -> 0.16.0 2017-11-06 10:48:09 +01:00
Antoine Eiche 7100c1a0e0 pythonPackages.devpi_common: remove one test 2017-11-06 10:26:55 +01:00
adisbladis 0af15f6f45
firejail: 0.9.48 -> 0.9.50 2017-11-06 17:21:03 +08:00
Vaibhav Sagar eece8755d1 ihaskell: re-enable 2017-11-06 09:58:28 +01:00
Peter Marheine 030223237a flexget: fix build with updated dependencies 2017-11-06 08:33:59 +00:00
Peter Hoeg 24b70b56a0 utox: run tests 2017-11-06 15:42:48 +08:00
Peter Simons 9e241d0c3f
Merge pull request #31256 from vaibhavsagar/update-all-cabal-hashes
all-cabal-hashes: 2017-10-08T03:25:59Z -> 2017-11-04T17:56:01Z
2017-11-06 08:37:43 +01:00
Peter Hoeg e48691c2d4 qtox: 1.11.0 -> 1.12.1 2017-11-06 15:31:35 +08:00
Peter Hoeg 1d2ecd9661 libtoxcore: 0.1.8 -> 0.1.10 2017-11-06 15:31:34 +08:00
Peter Hoeg 01a7d7038b libmsgpack: 2.0.0 -> 2.1.5 2017-11-06 15:31:34 +08:00
Peter Hoeg ce2d9bac9f libmsgpack: house keeping 2017-11-06 15:31:34 +08:00
Vincent Laporte a1449ea180
omake: 0.10.2 -> 0.10.3 2017-11-06 06:47:48 +00:00
Orivej Desh 6e4fb7d0cb
Merge pull request #30038 from jbaum98/splint-darwin
splint: Add darwin support
2017-11-06 06:31:18 +00:00
Jake Waksbaum 03bcadd40c splint: Add darwin support 2017-11-06 06:30:02 +00:00
Orivej Desh ad0c2d5a79
Merge pull request #31056 from purefn/master
make sure which and curl are available in the PATH for sbt-extras
2017-11-06 06:21:09 +00:00
Richard Wallace 29c182f2b2 sbt-extras: make sure which and curl are available in the PATH 2017-11-06 06:20:34 +00:00
Orivej Desh c70dec9df2
Merge pull request #31181 from lsix/update_django_1_11_7
pythonPackages.django: 1.11.6 -> 1.11.7
2017-11-06 06:14:24 +00:00
Orivej Desh 102df36391
Merge pull request #31270 from jensbin/typora_update
typora: 0.9.31 -> 0.9.38
2017-11-06 06:13:23 +00:00
Vaibhav Sagar 4b9e73c6cf all-cabal-hashes: 2017-10-08T03:25:59Z -> 2017-11-04T17:56:01Z 2017-11-06 13:24:38 +08:00
Peter Hoeg dd18e063ef sqlitebrowser: 3.10.0 -> 3.10.1 and make it work with Qt 5.9 2017-11-06 13:07:52 +08:00
Peter Hoeg 9b9dacb5fe
Merge pull request #31224 from peterhoeg/u/tds
freetds: 0.91 -> 1.00.70
2017-11-06 12:28:53 +08:00
Peter Hoeg 2902e8c5ca calligra2: broken due to freetds upgrade but we already have calligra 3 2017-11-06 12:26:03 +08:00
Peter Hoeg 762f2ea4b0 sqsh: fix build with new freetds 2017-11-06 12:26:03 +08:00
Peter Hoeg 8b0014ae5a freetds: 0.91 -> 1.00.70 2017-11-06 12:26:03 +08:00
adisbladis ff2d16e7f8
emacsPackages.font-lock-plus: init at 20170222.1755 2017-11-06 11:43:38 +08:00
Orivej Desh 5de8911638
Merge pull request #31299 from timokau/qutebrowser-1.03
qutebrowser: 1.0.2 -> 1.0.3
2017-11-06 02:19:43 +00:00
Sean Zicari 3d8f6400ec Remove .net from mirror URL. 2017-11-05 20:09:24 -06:00
Sean Zicari 0711fe96f2 xosview2: init at 2.2.2 (#30629) 2017-11-06 09:55:23 +08:00
Michael Raskin 6475fa9b25
Merge pull request #31298 from timokau/sage-fix
sage: 6.8 -> 8.0
2017-11-06 01:25:28 +00:00
Michael Raskin 85eac6ff73
Restrict platforms to what is known to work. 2017-11-06 01:25:04 +00:00
Timo Kaufmann 0cc1cf7407 qutebrowser: 1.0.2 -> 1.0.3 2017-11-05 18:54:33 -06:00
Peter Hoeg 3a53ddd693 sshguard: 2.0.0 -> 2.1.0 2017-11-06 08:21:56 +08:00
Timo Kaufmann fe68ba81d2 sage: 6.8 -> 8.0
This "un-breaks" sage while also updating it to 8.0.

It compiles sage with its dependencies as one big pile, which is not
the best approach but definately better than nothing for now.

To be able to shrink the huge output pile a little, it also splits
docs from the rest of the output.
2017-11-05 17:37:40 -06:00
Bojan Nikolic 3a63fc1258 Remove trailing line 2017-11-05 23:00:24 +00:00