1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
Commit graph

22095 commits

Author SHA1 Message Date
Vladimír Čunát 24444513fb
Merge branch 'staging' 2017-04-14 10:32:13 +02:00
Volth dc0e338e01 libguestfs: 1.34.6 -> 1.36.3 2017-04-13 15:55:23 +00:00
Volth 94753af68c libguestfs: 1.34.4 -> 1.34.6 2017-04-13 15:55:20 +00:00
Volth cf68f546b1 libguestfs: 1.29.5 -> 1.34.4 2017-04-13 15:54:11 +00:00
Linus Heckemann 3af491fb66 libgme: init at 0.6.1 2017-04-13 11:44:13 +01:00
Vladimír Čunát 42fd72091e
gnutls: use 3.5.10 on Darwin for now
This contains a revert of d6454e6a1.
2017-04-13 09:39:02 +02:00
Daniel Peebles f21a6940da Merge pull request #24838 from matthewbauer/ibtool
pinentry_mac: use xcbuild
2017-04-12 22:20:57 -04:00
Matthew Bauer 9e5fe7738a
xib2nib: add meta
also:
- NSPlist
- PlistCpp
2017-04-12 20:07:55 -05:00
Joachim Fasting 13a0ad3108
opal: NIX_CFLAGS -> NIX_CFLAGS_COMPILE
Seeing as the build already passes, I suspect this is strictly redundant
...

Tested with nix-build -A opal
2017-04-12 19:27:06 +02:00
Joachim Fasting 540a6412e3
suitesparse_4_4: NIX_CFLAGS -> NIX_CFLAGS_COMPILE
Tested with nix-build -A suitesparse_4_4
2017-04-12 19:27:03 +02:00
Joachim Fasting a883581ddb
suitesparse_4_2: remove bogus NIX_CFLAGS
NIX_CFLAGS should be NIX_CFLAGS_COMPILE; since pic is the default, we
simply remove the bogus declaration.

Tested with nix-build -A suitesparse_4_2
2017-04-12 19:26:58 +02:00
Daiderd Jordan 5ba445752b Merge pull request #24700 from hamishmack/fixes-for-macos
gtk fixes for macos
2017-04-12 19:26:32 +02:00
Matthew Bauer 1781ec934f
xib2nib: move nsplist, plistcpp to own folder
These libraries could be used by other packages so list them in
all-packages.nix as well.
2017-04-12 03:28:33 -05:00
Franz Pletz 29ed67faea
libressl_2_5: 2.5.1 -> 2.5.3 2017-04-11 19:41:01 +02:00
Vince van Oosten 00c3bd1561 add parted to build inputs 2017-04-11 16:05:07 +02:00
Vince v. Oosten 39e95aa159 add disk storage to libvirt 2017-04-11 13:03:02 +02:00
Tuomas Tynkkynen e4b48c7186 libsigsegv: Remove aarch64 patch, enable tests
The aarch64 patch has been applied upstream. Let's hope that the new
release fixes the tests as well.
2017-04-11 14:01:34 +03:00
Tuomas Tynkkynen 8eb25e1245 lzo: 2.09 -> 2.10 2017-04-11 13:00:56 +03:00
Tuomas Tynkkynen 72b2cbe3b7 libsigsegv: 2.10 -> 2.11 2017-04-11 13:00:56 +03:00
Tuomas Tynkkynen 5de624e437 gmp: 6.1.1 -> 6.1.2 2017-04-11 13:00:56 +03:00
Tuomas Tynkkynen 52797fc600 Merge remote-tracking branch 'upstream/master' into staging 2017-04-11 12:58:43 +03:00
Hamish Mackenzie 4d5ed187d3 gtk-mac-integration: fix gtk3 version
Include a Gtk3 version of gtk-mac-integration.
Add gobjectIntrospection to gtk-mac-integration.
Use propagatedBuildInputs for gtk.
2017-04-10 23:42:04 -07:00
Hamish Mackenzie da1d13bc07 webkgitgtk: fix 2.14 on macOS
Includes the patches from macports and fixes an issue with the
`otool -L` output that was causing g-ir-scanner to fail.
The paths in the macports patches have been modified so that they
will work with `patches` in nix (an extra directory level was
added).
2017-04-10 23:11:16 -07:00
Matthew Bauer f1fdc98884
pugixml: fixup darwin 2017-04-11 01:03:11 -05:00
Vladimír Čunát d6454e6a15
gnutls: try to fix build on Darwin, after update 2017-04-11 03:39:47 +02:00
aszlig 42bb63f803
leptonica: 1.72 -> 1.74.1
The changes are a bit too big to include it here in the commit message,
so if you want the details of what changed, please visit this URL:

http://leptonica.org/source/version-notes.html

I have also provided openjpeg, giflib and libwebp as dependencies so
that Leptonica is able to read/write those file formats.

Additionally I've added a patch that uses pkgconfig to resolve all
dependencies (except giflib), because unlike AC_CHECK_LIB() the
PKG_CHECK_MODULES() macro defines *_LIBS variables to include the linker
search path.

Unfortunately that patch alone is not enough, because the *_LIBS
variable are substituted by the upstream configure.ac to *not* include
the linker search paths, so we need to remove the AC_SUBST() calls
within PKG_CHECK_MODULES().

The only dependency that's not yet using PKG_CHECK_MODULES() is giflib,
because giflib doesn't have a pkg-config description file, therefore
we're using substituteInPlace to insert the linker search path after the
lept.pc file was generated by configure.

Another thing that we no longer need is the dependency on libpng version
1.2, because Leptonica now also works with more recent libpng versions.

Tested by building the package itself and also the following packages
that immediately depend on leptonica:

 * k2pdfopt
 * tesseract
 * jbig2enc

All of these packages succeeded to build on x86_64-linux.

The main reason why I'm bumping Leptonica to version 1.74.1 is that we
need at least version 1.74 to bump Tesseract to the latest upstream
version.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2017-04-11 03:21:29 +02:00
Leandro Lisboa Penz ce6b5b8673 aspell: set default aspell data-dir if ASPELL_CONF is not set
if the user didn't set ASPELL_CONF, use it to point to the dictionary
location by first looking at NIX_PROFILE directories and then using
$HOME/.nix-profile.

See NixOS/nixpkgs#1000
2017-04-10 22:14:29 +01:00
Vladimír Čunát 6d1374238f
gnutls: bugfix 3.5.10 -> 3.5.11 2017-04-10 17:53:54 +02:00
Vladimír Čunát c714f8241a
libdrm: 2.4.76 -> 2.4.79 2017-04-10 16:27:29 +02:00
Frederik Rietdijk 767e459200 Merge pull request #22726 from matthewbauer/openblas-closure-size
openblas: disable static libs
2017-04-10 16:11:19 +02:00
Franz Pletz b4c7979363
libgit2: 0.24.6 -> 0.25.1 2017-04-10 14:31:26 +02:00
Vladimír Čunát e47ac55a21
glibc: apply the i686 patch only on i686
... to reduce rebuilding. /cc #23177.
2017-04-10 11:18:50 +02:00
Vladimír Čunát c30b12b9a5
glibc: fix i686 crashes via an upstream patch
Fixes #23177.
2017-04-10 11:13:00 +02:00
Nikolay Amiantov ef1e28f5f6 qt56.qtwebengine: patch more library paths
Backport 040b86a96e.
2017-04-10 11:35:00 +03:00
Daiderd Jordan f8230518a2 Merge pull request #24762 from matthewbauer/darwin-misc-fixes
darwin: miscellaneous fixes
2017-04-10 08:50:15 +02:00
Tuomas Tynkkynen a05959e191 Merge remote-tracking branch 'upstream/master' into staging 2017-04-10 01:41:49 +03:00
David McFarland f2655dd0c7 mesa: patch vulkan manifests when any driver is enabled 2017-04-10 00:17:36 +03:00
Daiderd Jordan 35eb784bf2 Merge pull request #24761 from matthewbauer/hidapi2
hidapi: fix macos
2017-04-09 22:39:15 +02:00
Matthew Bauer cba6e28766
hidapi: fix macos 2017-04-09 15:21:26 -05:00
Peter Simons 4e307b644a Merge pull request #24760 from matthewbauer/linux-only-pkgs
Mark linux-only pkgs
2017-04-09 14:18:10 +02:00
Franz Pletz a49481a740 Merge pull request #24763 from matthewbauer/darwin-glfw-fixes
glfw: fix darwin build
2017-04-09 11:17:42 +02:00
Matthew Bauer 8df24b78d5
wxGTK28: linux only 2017-04-09 02:11:16 -05:00
Matthew Bauer 23d8b4f10c
glfw: fix darwin build 2017-04-09 00:23:24 -05:00
Matthew Bauer 3baff95efd
botan: fix macOS build 2017-04-08 23:49:55 -05:00
Matthew Bauer 3f2560cc08
xbase: make linux-only 2017-04-08 23:34:51 -05:00
Matthew Bauer a1f22aafa2
neardal: make linux-only 2017-04-08 23:34:51 -05:00
Matthew Bauer 04f8199e5b
libx86emu: make linux-only 2017-04-08 23:34:41 -05:00
Matthew Bauer 719cb89342
wxsqlite3: fix macOS build 2017-04-08 23:28:01 -05:00
Matthew Bauer 6a6b371a77
liblastfm: fix macOS build 2017-04-08 23:28:01 -05:00
Cole Scott 7c32b93c9a
arm-frc-linux-gnueabi-eglibc: init at 2.21-r0.83 2017-04-09 01:06:33 +02:00
Cole Scott 9597247cc0
arm-frc-linux-gnueabi-linux-api-headers: init at 3.19-r0.36 2017-04-09 01:06:33 +02:00
Thomas Tuegel e0b1288ebd Merge pull request #24340 from periklis/topic_qt58_modules
qt58: extend darwin compatibility
2017-04-08 07:32:21 -05:00
Aristid Breitkreuz 43626b6a88 Merge pull request #24698 from MP2E/ffmpeg_sdl2
ffmpeg-full: replace SDL support with SDL2 support
2017-04-08 12:16:11 +02:00
Aristid Breitkreuz 6dd7dd52b8 Merge pull request #24539 from Ralith/vulkan-loader
vulkan-loader: 1.0.39.1 -> 1.0.42.2
2017-04-08 11:48:04 +02:00
Aristid Breitkreuz 290315ff6a Merge pull request #24627 from mdaiter/suitesparseCUDATouchups
suitesparse: refining CUDA support
2017-04-08 11:45:17 +02:00
Aristid Breitkreuz f6fc8467cd Merge pull request #24672 from magnetophon/libsndfile
libsndfile: 1.0.27 -> 1.0.28
2017-04-08 11:33:03 +02:00
Periklis Tsirakidis 775531c1e3 qt58: extend darwin compatibility 2017-04-08 09:54:46 +02:00
Dan Peebles 57e25171a5 Merge branch 'master' into staging 2017-04-07 08:28:07 -04:00
Dan Peebles 27cec397b1 itk: 4.10 -> 4.11
Also includes a patch to work against clang 4, which was my original
motivation for the 4.10 -> 4.11 upgrade (since it fixed another issue)
2017-04-07 08:23:08 -04:00
Dan Peebles 1be61d1921 podofo: fix on LLVM 4
Not sure if the things I made optional on Darwin are really worth keeping
at all, but I don't have a Linux box handy so I'm minimizing potential
damage.
2017-04-06 23:33:14 -04:00
Cray Elliott 5b6b1100f3 ffmpeg-full: replace SDL support with SDL2 support
ffmpeg 3.2 dropped support for SDL1 completely, so migrate to SDL2
2017-04-06 20:13:47 -07:00
Dan Peebles 81352b2cb5 Merge branch 'master' into staging 2017-04-06 21:26:24 -04:00
Dan Peebles 6b1957d17a qt5: fix to work on LLVM 4
Including apple_sdk.sdk is generally a recipe for a bad time on LLVM 3.8
and above, since you end up with bad headers in the wrong place that hurt
the new libc++ in 3.8 and above. In this case, qt only wanted the super-
generic SDK for CUPS headers, which we can just depend on directly now.
2017-04-06 21:00:28 -04:00
Hamish Mackenzie bde6e3da6f Fix geoclue build on Darwin 2017-04-07 00:45:54 +02:00
Dmitry Kalinkin 31a0f93783
yoda: apply patches from tip 2017-04-06 12:27:31 -04:00
Bart Brouns 480d94553e libsndfile: 1.0.27 -> 1.0.28 2017-04-06 12:36:11 +02:00
Vladimír Čunát 10dc47e5e1
Merge #24558: qt58: Fix path to qhelpgenerator
Fixes #24659.
2017-04-06 00:47:58 +02:00
Vladimír Čunát c6bc4cfdbc
Merge branch 'master' into staging 2017-04-06 00:16:59 +02:00
Jörg Thalheim 052cd88921 Merge pull request #24625 from Mic92/networkmanager
networkmanager: 1.4.4 -> 1.6.4
2017-04-05 12:49:58 +02:00
Peter Simons bbbe24f469 Merge pull request #24530 from mulderr/master
oracle-instantclient: add optional odbc support
2017-04-05 10:24:49 +02:00
Shea Levy f038db24a6 nix-plugins: 2.0.6 -> 2.0.7.
Fixes warning on nix 1.12
2017-04-04 22:50:00 -04:00
Dmitry Kalinkin 61ae20e085
rivet: move ghostscript to propagatedBuildInputs (fixes runtime) 2017-04-04 22:37:35 -04:00
Shea Levy fe319f8ebd nix-plugins: 2.0.3 -> 2.0.6.
Fixes incompatibility between build-time and link-time nix version
2017-04-04 22:35:35 -04:00
Shea Levy 3f023c8989 nix-plugins: 2.0.2 -> 2.0.3
Fixes darwin build
2017-04-04 15:11:42 -04:00
Jörg Thalheim b04fb3ffcd Merge pull request #24586 from maurer/bap
Add BAP to nixpkgs
2017-04-04 19:48:49 +02:00
Matthew Maurer e010c25ba4 libbap: init at master-2017-02-08 2017-04-04 13:17:56 -04:00
Shea Levy 9904019841 nix-plugins: Bump, unbreak 2017-04-04 11:29:40 -04:00
Matthew Daiter d712c04d25 suitesparse: refining CUDA support 2017-04-04 17:23:20 +02:00
Jörg Thalheim 43c0530ca6
libproxy: fix compilation
also use webkit backend (webkitgtk is also a more common gnome/gtk)
Changelog: https://cgit.freedesktop.org/NetworkManager/NetworkManager/tree/NEWS?h=1.6.2
2017-04-04 17:00:40 +02:00
lprndn f259fa6e91 Merge branch 'master' into lprndn_Nixpkgs 2017-04-03 21:37:11 +02:00
Nikolay Amiantov ef4b73a038 libappindicator: propagate dependencies 2017-04-03 17:39:41 +03:00
Vladimír Čunát 969849acf8
mesa: maintenance 17.0.2 -> 17.0.3 2017-04-03 11:24:50 +02:00
Dmitry Kalinkin a07d334bf4
yoda: refactor root support to be more explicit 2017-04-03 03:48:22 -04:00
David McFarland 2c006ca805 Revert "openssl: add custom build of 1.0.2 for steam"
No longer necessary. See https://github.com/NixOS/nixpkgs/pull/23034#issuecomment-291005754

This reverts commit a50784b34e.
2017-04-03 09:04:44 +02:00
Dmitry Kalinkin 23f7087dc5
yoda: 1.6.5 -> 1.6.6, provide version with ROOT 2017-04-02 23:26:05 -04:00
Eelco Dolstra 747ad4befd mlt: Remove some -dev paths from the closure
This reduces the closure size of mlt-qt5 from 683 to 278 MiB.
2017-04-02 21:51:46 +02:00
Eelco Dolstra 6d4e6102a7 libgsf: Use separate dev output 2017-04-02 21:51:46 +02:00
Ambroz Bizjak 195efedd2c qt58: Fix path to qhelpgenerator in cmake file.
It is located in the dev output, fix it as for qcollectiongenerator.
This fixes a build error in KDevelop.
2017-04-02 11:21:34 +02:00
Orivej Desh 8f9b219107 kwallet: support GPG-encrypted wallets 2017-04-01 23:42:30 +00:00
Michael Weiss 40d171855f gpgme: 1.8.0 -> 1.9.0
For the license change see:
- https://directory.fsf.org/wiki/GPGME#tab=Details
- AUTHORS [0]

See #24491 for the other changes.

[0]: https://git.gnupg.org/cgi-bin/gitweb.cgi?p=gpgme.git;a=blob;f=AUTHORS;h=bbf1576ad27dc51956c371282862b468c633ea49;hb=HEAD
2017-04-02 01:26:22 +02:00
Benjamin Saunders 201960922c vulkan-loader: 1.0.39.1 -> 1.0.42.2 2017-04-01 12:28:59 -07:00
Vladimír Čunát 1a805c4c63
libdrm: 2.4.75 -> 2.4.76 2017-04-01 14:48:29 +02:00
Vladimír Čunát 8eab29e26f
nss: 3.28.3 -> 3.30 (close #24508) 2017-04-01 13:31:05 +02:00
Vladimír Čunát 6230bfa123
libpng: 1.6.28 -> 1.6.29 2017-04-01 13:27:39 +02:00
Vladimír Čunát d55727c7a5
at-spi2-core: maintenance 2.22.0 -> 2.22.1 2017-04-01 13:27:22 +02:00
Vladimír Čunát ae58febf70
gdk-pixbuf: maintenance 2.36.5 -> 2.36.6 2017-04-01 13:27:19 +02:00
Vladimír Čunát ae08fdd84e
pango: maintenance 1.40.3 -> 1.40.4 2017-04-01 13:27:18 +02:00
Vladimír Čunát 6c153c55c3
gtk3: maintenance 3.22.8 -> 3.22.11 2017-04-01 13:27:17 +02:00
Vladimír Čunát 0bc62f8d2e
Merge #23832: gdbm: 1.12 -> 1.13 2017-04-01 13:27:15 +02:00
Vladimír Čunát af098ff18e
libgudev: fix build after update #23965
I somehow missed this error.
2017-04-01 13:26:27 +02:00
ndowens e109faa401 libgudev: 230 -> 231 (#23965) 2017-04-01 12:26:36 +02:00
Maciej Kazulak 23ec4a40ee oracle-instantclient: add optional odbc support 2017-04-01 11:50:13 +02:00
Vladimír Čunát f44ea1fec2
Merge branch 'staging' 2017-04-01 10:58:20 +02:00
Shea Levy c923c6c7c5 webkitgtk24x: Fix build on darwin 2017-03-31 07:47:09 -07:00
Peter Hoeg 2f73d5f856 libguestfs: add missing libapparmor buildInput 2017-03-31 11:50:12 +08:00
Tuomas Tynkkynen 4df59beb01 fontconfig_210: Remove reference to obsolete patch
Commit 9b049849bf deleted the patch file
(and reference to it from fontconfig default.nix), but left the one in
2.10.nix which break evaluation.

As the package seems to build fine without the patch, just remove the
reference.

cc @ttuegel in case this was not the correct thing to do.
2017-03-30 23:19:45 +03:00
Dan Peebles 8b65437aae Merge branch 'master' into staging 2017-03-30 12:54:41 -04:00
Robin Gloster f9a1060199
qt-gstreamer: fix build and do not mark wrong pkgs as broken 2017-03-30 18:01:40 +02:00
Dan Peebles 8636ce283f caf: fix on clang4
Also, enable parallel builds because I got sick of waiting :)
2017-03-30 11:36:30 -04:00
Dan Peebles 409fe12f76 qt4: fix to work on clang 4
The new clang is more strict about signed comparisons against pointers,
so this adds a couple of ad-hoc patches to appease it.
2017-03-30 11:03:05 -04:00
Robin Gloster 4a702e8b74
tclgpg: remove 2017-03-30 16:23:35 +02:00
Robin Gloster c47cc7e163
qt-gstreamer: fix build 2017-03-30 16:23:34 +02:00
Josef Kemetmüller e2e3036b33 eccodes: init at 2.2.0 2017-03-30 09:21:16 +00:00
John Ericson 166fc028a4 Merge pull request #24465 from Ericson2314/no-with-literal
Get rid of all `with { inherit... }` and just used `let inherit...`
2017-03-30 01:49:37 -06:00
Charles Strahan 2a3cd13d73
slang: 2.3.0 -> 2.3.1a 2017-03-30 03:22:26 -04:00
John Ericson 4c0d7da183 Get rid of all with { inherit... } and just used let inherit...
The old forms presumably predates, or were made in ignorance of,
`let inherit`. This way is better style as the scoping as more lexical,
something which Nix can (or might already!) take advantage of.
2017-03-30 03:05:05 -04:00
Tuomas Tynkkynen adb460b30f mesa: Enable imx gallium driver on ARM
And lighten the aarch64 build by disabling drivers for hardware that
doesn't run on aarch64 processors.
2017-03-30 02:56:10 +03:00
Matthew Daiter 6f721ce534 suitesparse: add CUDA support 2017-03-29 15:47:51 +02:00
Pascal Wittmann 8b512b10c7 Merge pull request #24431 from jpierre03/pr-udunits
udunits: 2.2.23 -> 2.2.24
2017-03-29 09:36:20 +02:00
Jean-Pierre PRUNARET 11e84f51b3 udunits: 2.2.23 -> 2.2.24 2017-03-29 05:40:10 +02:00
Daniel Peebles da79d1f01f Merge pull request #24428 from acowley/libdc1394-darwin
libdc1394: patch bugs on darwin
2017-03-28 21:54:32 -04:00
Anthony Cowley ab0ea84733 libdc1394: patch bugs on darwin
One of these issues is in a platform-specific file for darwin, the
other may only be a breaker when using clang.
2017-03-28 19:25:02 -04:00
Thomas Tuegel 9b049849bf
freetype: disable PCF long family names
Backported several patches from upstream. The test suite patch for Fontconfig is
no longer necessary.
2017-03-28 17:29:42 -05:00
Will Dietz ecae31a50c swift: init at 3.1
Add dependency 'libblocksruntime'.
2017-03-28 15:34:34 -05:00
Franz Pletz 0018cd5a2d
libvirt packages: fix & clean up dependencies 2017-03-28 19:45:01 +02:00
Joachim F 07a76cc934 Merge pull request #23400 from knedlsepp/add_docopt_cpp
docopt.cpp: init at 0.6.2
2017-03-27 21:28:50 +01:00
Vladimír Čunát 96d41e393d
treewide: purge maintainers.urkud
It's sad, but he's been inactive for the last five years.
Keeping such people in meta.maintainers is counter-productive.
2017-03-27 19:52:29 +02:00
Franz Pletz d8dd2fb9e5
libvirt: 3.0.0 -> 3.1.0
Missing in 1cca97cf18.
2017-03-27 17:08:19 +02:00
Peter Hoeg 4f33f909f3 libtoxcore: 0.1.6 -> 0.1.7 2017-03-27 23:06:35 +08:00
Josef Kemetmüller ed7a1ac302 docopt.cpp: init at 0.6.2 2017-03-27 14:23:48 +00:00
Leon Isenberg df94900353 vulkan-loader: demos: fix cube/cubepp 2017-03-27 10:42:44 +02:00
Franz Pletz 1b95985b71 Merge pull request #24148 from volth/libvirt-3.1.0
libvirt: 3.0.0 -> 3.1.0
2017-03-27 10:02:06 +02:00
Orivej Desh 1ba30ca45b poco: init at 1.7.8 2017-03-27 01:05:25 +00:00
Michael Raskin 9a0a75cac7 Merge pull request #24367 from pmahoney/skarnet-darwin
skarnet.org packages: fix darwin build
2017-03-27 00:47:07 +02:00
Patrick Mahoney 09a5007797 skarnet.org packages: fix darwin build
The configure scripts have been changed so that `--build` is now the
way to specify (non-cross compiling) build target, which is necessary
on darwin for binary compatibility across darwin versions.
2017-03-26 17:30:41 -05:00
Dan Peebles 167aba003a capnproto: fix on clang 4
Embedding the patch because the way they build their source releases
changes the paths, so fetchpatch against GitHub doesn't apply cleanly
2017-03-26 18:15:59 -04:00
Patrick Mahoney 72a0d65d3d update skarnet.org packages
execline:          2.1.4.5 -> 2.2.0.0
s6-dns:            2.0.0.7 -> 2.1.0.0
s6-linux-utils:    2.0.2.3 -> 2.2.0.0
s6-networking:     2.1.0.4 -> 2.2.1.0
s6-portable-utils: 2.1.0.0 -> 2.1.0.0 (no version change)
s6-rc:             0.0.2.1 -> 0.1.0.0
s6:                2.2.4.3 -> 2.4.0.0
skalibs:           2.3.9.0 -> 2.4.0.1

Also use new --enable-absolute-paths configure arg to correctly set
paths to runtime executables to point within the nix store rather than
relying on PATH resolution.
2017-03-26 14:19:44 -05:00
Robin Gloster 955b79f462
pcre2: 10.22 -> 10.23 + security fix
CVE-2017-7186

refs nixos/security#57 #24319
2017-03-26 17:13:38 +02:00
Robin Gloster 6b9c81aa18
pcre: 8.39 -> 8.40 + security fix
CVE-2017-7186

refs nixos/security#57 #24319
2017-03-26 16:41:22 +02:00
Thomas Tuegel 8b50f4c990 Merge pull request #24299 from ttuegel/master--drop-qt-5.7
Drop Qt 5.5 and Qt 5.7 from master
2017-03-26 09:18:38 -05:00
ndowens 6c17ad677c
jasper: 2.0.10 -> 2.0.12 2017-03-26 08:20:27 -04:00
Leon Isenberg 65029beb38 libguestfs: add qemu to wrapped PATH
virt-df doesn't find qemu-img otherwise.
2017-03-26 14:10:36 +02:00
Franz Pletz d545772640
libvirt: make guest suspend work, use upstream units 2017-03-25 14:59:01 +01:00
Franz Pletz ddb608814a
libvirt: build with attr and apparmor 2017-03-25 14:58:26 +01:00
Volth 1cca97cf18
libvirt: 3.0.0 -> 3.1.0 2017-03-25 14:54:16 +01:00
Thomas Tuegel 3dc1a4ba8b
Remove Qt 5.5
The community support window for Qt 5.5 has ended. All packages should

- update to Qt 5.8, or
- pin to Qt 5.6 (the 3-year long-term support release), or
- for proprietary software, use the vendored libraries.
2017-03-25 08:49:40 -05:00
Thomas Tuegel b4e6351c78
Remove Qt 5.7
The community support window for Qt 5.7 has ended. All packages should

- update to Qt 5.8, or
- pin to Qt 5.6 (the 3-year long-term support release), or
- for proprietary software, use the vendored libraries.
2017-03-25 08:49:37 -05:00
Periklis Tsirakidis b97dd5f560 qt58: enable darwin compatibility 2017-03-25 09:48:17 +01:00
Vladimír Čunát 455ce3528c
Merge branch 'staging' 2017-03-24 21:07:55 +01:00
Robin Gloster dd385d9468
qt57.makeQtWrapper: fix eval 2017-03-24 18:20:01 +01:00
Nikolay Amiantov f45cf10f6e Merge pull request #24133 from abbradar/gtk3-qt
Fix GTK dependencies in wrappers
2017-03-24 01:49:41 +03:00
Vladimír Čunát c1a9dc3d37
Merge branch 'master' into staging 2017-03-23 13:31:28 +01:00
Jörg Thalheim 632e81083c
spice: 0.12.8 -> 0.13.3
(we can use upstream security patches again)
2017-03-23 13:02:57 +01:00
Vladimír Čunát e0bf35f0e5
Merge #24236: remove bbenoist from maintainers 2017-03-23 08:49:03 +01:00
Daniel Peebles f5aebcd465 Merge pull request #24216 from LnL7/fox-llvm-4
fox: fix build with clang >=4 and possibly other versions
2017-03-22 22:16:00 -04:00
Baptist BENOIST 7d72b9b74e Remove bbenoist from maintainers
Sorry guys but I did not used Nix since months and cannot spend time
maintaining my previous work...
2017-03-23 03:03:04 +01:00
Thomas Tuegel 6a1e5cc2fa
kdeFrameworks: 5.31 -> 5.32 2017-03-22 20:51:03 -05:00
Thomas Tuegel edf32f90e6
plasma5: 5.9.3 -> 5.9.4 2017-03-22 20:51:03 -05:00
Nikolay Amiantov 040b86a96e qt5.qtwebengine: use system libraries where possible
Fixes #23987.
2017-03-23 00:03:33 +03:00
Nikolay Amiantov 3a948e6b07 qt5.qtwebengine: add proprietary codecs support 2017-03-23 00:03:33 +03:00
Nikolay Amiantov 5a04d38ca6 srtp: build as shared library 2017-03-23 00:03:32 +03:00
Nikolay Amiantov 1715e3643b nss: propagate nspr 2017-03-23 00:03:32 +03:00
Nikolay Amiantov a7a858aa52 qt5.qtwebengine: patch more library paths
Adapted from chromium derivation. Fixes qutebrowser crash.
2017-03-23 00:00:50 +03:00
Daiderd Jordan be1c8c4d63
fox: fix build with clang >=4 and possibly other versions 2017-03-22 20:18:41 +01:00
Nikolay Amiantov a40b7d07e9 makeQtWrapper, kdeWrapper: add GTK3 dependencies 2017-03-22 20:15:32 +03:00
Robin Gloster 66c384ab4a
mailcore2: fix build with newer icu 2017-03-22 14:06:43 +01:00
Thomas Tuegel 7aee677a10
makeQtWrapper: wrap with runtime XDG dirs 2017-03-22 07:44:05 -05:00
Eelco Dolstra f0875982d1 Merge pull request #24203 from layus/nix-ssl-cert-file
git, curl, openssl: Refactor $NIX_SSL_CERT_FILE handling
2017-03-22 13:40:57 +01:00
Guillaume Maudoux c86f05e7ce openssl: default to default profile CA on darwin 2017-03-22 12:09:09 +01:00
Jörg Thalheim b5b036a4cc Merge pull request #24032 from orivej/gargoyle
gargoyle: init at 2017-03-12
2017-03-22 00:52:15 +01:00
Michael Weiss 4e29638323 Revert "gpgme: Drop multiple outputs (dev and info)"
This reverts commit 872770286d.

This will fix fwknop as well (should have done it like this in the first
place, where was my mind...).

Conclusion: Did something stupid... :o - I am *so incredibly sorry*,
will be way more careful (was already careful, but apparently not
enought...) next time and use nox.

Sorry @everyone and thanks @calvertvl for noticing this.
2017-03-21 23:57:57 +01:00
Nikolay Amiantov dec8fb077f qt5.qtwebengine: fix library paths
Without this it would try to find files in qtbase

Ported to Qt 5.8.
2017-03-22 01:38:04 +03:00
Michael Weiss 872770286d gpgme: Drop multiple outputs (dev and info)
This shouldn't break anything as currently neither dev nor info will be
generated anyway (since both directories don't actually exist at the
install phase - "mv bin dev" would produce the dev output).

This change is required for building fwknop with GnuPG support.
2017-03-21 22:43:00 +01:00
Vladimír Čunát 39eda57d2a
mesa: maintenance 17.0.1 -> 17.0.2 2017-03-21 20:11:31 +01:00
Nikolay Amiantov 328bcdae25 mesa: enable texture floats only for drivers
To be on more safe side. This shouldn't matter theoretically as nothing in core
Mesa depends on them.
2017-03-21 21:56:42 +03:00
Eelco Dolstra 98624f4afc Merge pull request #24162 from abbradar/texture-floats
mesa: enable texture floats by default
2017-03-21 17:20:14 +01:00
Nikolay Amiantov 261d7caed7 mesa: enable texture floats by default 2017-03-21 15:51:35 +03:00
Frederik Rietdijk 94eb74eaad Merge remote-tracking branch 'upstream/master' into HEAD 2017-03-21 13:04:37 +01:00
Dan Peebles 93005b82dc google-gflags: fix on Darwin
e721905d0f updated to a version that added
a BUILD file that breaks on case-insensitive filesystems.
2017-03-21 00:42:26 -04:00
Willi Butz 4bfde8f5b4 martyr: fixed build, removed build.sh, added meta (see #23253) 2017-03-21 00:01:13 +02:00
Robin Gloster 88341c4d2b
Revert "doc: remove double space"
This reverts commit 6393d43380.

Commit added too much changes.
2017-03-20 20:58:18 +01:00
Robin Gloster 6393d43380
doc: remove double space 2017-03-20 20:47:13 +01:00
Thomas Tuegel 1b0d9e9ae6 Merge pull request #23819 from ttuegel/freetype
FreeType 2.7.1 and Fontconfig defaults
2017-03-20 11:43:50 -05:00
Domen Kožar c3c9412c7d
git, openssl, curl: Respect $NIX_SSL_CERT_FILE
Slightly modified version of 942dbf89c6
2017-03-20 14:11:20 +01:00
Tuomas Tynkkynen 72dc9c7f80 Merge remote-tracking branch 'upstream/master' into staging 2017-03-20 07:07:03 +02:00
Joachim F 12e0e67ed0 Merge pull request #23903 from mbrgm/upgrade-inspectrum
inspectrum: 20160403 -> 20170218
2017-03-20 01:06:31 +01:00
Jörg Thalheim 48a7bfa345 Merge pull request #23944 from c0bw3b/pkg/nghttp2
nghttp2: 1.19.0 -> 1.20.0
2017-03-20 00:05:31 +01:00
Jörg Thalheim c23164eac6 Merge pull request #23943 from c0bw3b/pkg/jemalloc
jemalloc: 4.3.1 -> 4.5.0
2017-03-19 23:58:57 +01:00
Orivej Desh 9d38774a28 gargoyle: init at 2017-03-12 2017-03-19 22:36:29 +00:00
ndowens 3ac089757a Cosmetic change; Replaced automake autoconf 2017-03-19 16:50:06 -05:00
Guillaume Massé b00bfb0401 cre2: init at 0.3.0
c wrapper for google's re2 regex library
2017-03-19 17:26:15 -04:00
Jörg Thalheim 82e760a3d6
armadillo: fix evaluation error
cc: @ndowens08
2017-03-19 21:04:43 +01:00
ndowens e2be606300 Merge pull request #23736 from ndowens/armadillo
armadillo: 7.700.0 -> 7.800.1
2017-03-19 12:59:03 -05:00
ndowens d97e9ae720 Merge pull request #23778 from ndowens/cfitsio
cfitsio: 3.21 -> 3.41
2017-03-19 12:51:21 -05:00
ndowens 64d9947c76 cfitsio: 3.21 -> 3.41
cfitsio: Changed platforms to Linux, due to failing to build on Darwin

cfitsio: Fixed missing semicolon

cfitsio: Removed undefined variable
2017-03-19 12:45:37 -05:00
ndowens 41fa78b660 Merge pull request #24062 from ndowens/libevdev
libevdev: Fix url
2017-03-19 11:14:29 -05:00
ndowens 9f21f4578c libevdev: Fix url 2017-03-19 11:12:16 -05:00
Orivej Desh 3caba31f8e libircclient: disable on darwin 2017-03-19 17:16:44 +02:00
ndowens a6994dabb0 Merge pull request #23804 from ndowens/enginepkcs11
enginepkcs11: libp11 version 0.4.0 and above contain enginepkcs11
2017-03-19 10:16:06 -05:00
ndowens b51093a75e libevdev: 1.4.6 -> 1.5.6 (#23940) 2017-03-19 15:19:57 +01:00
Orivej Desh 583e862d11
qtbase-* nitpick: fix list nesting
Generalized from #24036, and leaving the authorship there.
2017-03-19 11:03:51 +01:00
Peter Hoeg b9173e4e8c libbluray: 0.9.2 -> 1.0.0 2017-03-19 09:48:22 +08:00
Michael Raskin 776614abb7 Merge pull request #24021 from orivej/libfixposix
libfixposix: 30b75609 -> 0.4.1
2017-03-18 21:33:50 +01:00
Michael Raskin 333c8c7782 icu_57: drop 2017-03-18 21:27:31 +01:00
Orivej Desh d992619de2 libfixposix: 30b75609 -> 0.4.1 2017-03-18 20:21:50 +00:00
Michael Raskin dd49357a19 Merge pull request #23967 from ndowens/umockdev
umockdev: init at 0.8.13
2017-03-18 20:31:24 +01:00
Michael Raskin 06db15a6cd Update default.nix 2017-03-18 20:30:47 +01:00
Michael Raskin 973fb15629 Merge pull request #23937 from ndowens/libdc
libdc1394: 2.2.3 -> 2.2.5
2017-03-18 20:00:11 +01:00
Michael Raskin e60eb600c2 Merge pull request #23909 from lsix/udate_gdal
gdal: 2.1.1 -> 2.1.3
2017-03-18 19:57:52 +01:00
Michael Raskin 6f73e8114f Merge pull request #23824 from ndowens/gssdp
gssdp: 0.14.11 -> 1.0.1
2017-03-18 19:55:05 +01:00
Michael Raskin 7701c03bac Merge pull request #23822 from ndowens/google-gflags
google-gflags: 2.1.2 -> 2.2.0
2017-03-18 19:54:32 +01:00
Michael Raskin 435f27cabe Merge pull request #23821 from ndowens/gmm
gmm: 4.3 -> 5.1
2017-03-18 19:54:04 +01:00
Michael Raskin 55cd5bc6f8 Merge pull request #23820 from ndowens/gloox
gloox: 1.0.14 -> 1.0.20
2017-03-18 19:53:15 +01:00
ndowens 112a91c2f7 enginepkcs11: libp11 version 0.4.0 and above contain enginepkcs11
enginepkcs11: Removed from all-packages.nix
2017-03-18 13:50:37 -05:00
Michael Raskin d6a60ef9e7 Merge pull request #23814 from ndowens/gecode
gecode: 4.4.0 -> 5.0.0
2017-03-18 19:50:14 +01:00
Michael Raskin 3d5c32273c Merge pull request #23811 from ndowens/filter-audio
filter-audio: 20150624 -> 0.0.1
2017-03-18 19:48:58 +01:00
Michael Raskin 53798100b5 Merge pull request #23808 from ndowens/fcppt
fcppt: 1.3.0 -> 2.5.0
2017-03-18 19:47:01 +01:00
Michael Raskin 153a3acb58 Merge pull request #23807 from ndowens/exosip
exosip: 4.0.0 -> 4.1.0
2017-03-18 19:44:21 +01:00
Michael Raskin f265acb91f Merge pull request #23805 from ndowens/exempi
exempi: 2.2.2 -> 2.4.2
2017-03-18 19:43:42 +01:00
Michael Raskin cc9bdcc217 Merge pull request #23802 from ndowens/libp11
libp11: 0.2.7 -> 0.4.4
2017-03-18 19:41:36 +01:00
Michael Raskin 1a47f96711 Update default.nix 2017-03-18 19:41:23 +01:00
Michael Raskin e58ab3011a Merge pull request #23792 from mimadrid/update/libzip-1.2.0
libzip: 1.1.2 -> 1.2.0
2017-03-18 19:39:04 +01:00
Michael Raskin 4524f13cd4 Merge pull request #23775 from ndowens/ceres-solver
ceres-solver: 1.10.0 -> 1.12.0
2017-03-18 19:38:07 +01:00
Michael Raskin 7adf4cc405 Merge pull request #23735 from ndowens/appstream
appstream: 0.9.5 -> 0.10.6
2017-03-18 19:23:26 +01:00
Michael Raskin aaaaf2829a Merge pull request #23731 from ndowens/coinmp
coinmp: 1.7.6 -> 1.8.3
2017-03-18 19:22:56 +01:00
Michael Raskin 5ee374908c Merge pull request #23728 from ndowens/libhttpseverywhere
libhttpseverywhere: 0.2.3 -> 0.2.10
2017-03-18 19:22:34 +01:00
Michael Raskin dfbd2dd659 Merge pull request #23624 from volth/virt-viewer-5.0
virt-viewer: 2.0 -> 5.0
2017-03-18 19:05:11 +01:00
Michael Raskin 4d5f33deff Merge pull request #23376 from bcdarwin/ants
ANTs: init at 2.1.0 (0gyys1lf) and update ITK accordingly
2017-03-18 18:42:24 +01:00
Michael Raskin 3d43e7157d Merge pull request #23303 from c0bw3b/pkg/libseccomp
libseccomp: 2.3.1  -> 2.3.2 + fixed scmp_sys_resolver
2017-03-18 18:37:21 +01:00
Michael Raskin 51a7553ea5 Merge pull request #18275 from taktoa/patch-1
libmsgpack: fixed mingw32 cross-build
2017-03-18 17:30:30 +01:00
Vladimír Čunát 742b120ddc
Merge branch 'master' into staging
Nontrivial rebuilds from master, again :-/
2017-03-18 11:00:31 +01:00
Frederik Rietdijk 976e5bfbd4 Merge pull request #23968 from ndowens/libibmad
libibmad: 1.3.12 -> 1.3.13
2017-03-18 09:09:15 +01:00
Joachim F aa5777df77 Merge pull request #23952 from joachifm/libsodium-bump
libsodium: 1.0.11 -> 1.0.12
2017-03-18 02:46:41 +01:00
Renaud 98edb24368 libseccomp: 2.3.1 -> 2.3.2 + fixed scmp_sys_resolver
`libseccomp` is updated to 2.3.2
`scmp_sys_resolver` is fixed (it could not find libseccomp.so.2 shared library before)
2017-03-17 22:10:50 +01:00
Emery Hemingway 7196d16e3f
shapelib: init at 1.4.0 2017-03-17 12:09:37 -05:00
michael bishop db05f414bd
qtmultimedia-5.7: disable alsa on darwin 2017-03-16 23:15:44 -03:00
ndowens c7826f4c9d libibmad: 1.3.12 -> 1.3.13 2017-03-16 19:42:45 -05:00
ndowens ed7fb7a265 bobcat: 4.02.00 -> 4.07.00 (#23742) 2017-03-17 00:41:33 +01:00
ndowens 7e902f5399 umockdev: init at 0.8.13
umockdev: all-packages cosmetic change
2017-03-16 18:05:13 -05:00
ndowens ca8a0e3c80
libbson:1.1.10 -> 1.6.1
libbson: Removed un-needed deps
2017-03-16 23:37:17 +01:00
Renaud a4c68ace9c jemalloc: 4.3.1 -> 4.5.0 2017-03-16 23:04:04 +01:00
Renaud 5f89c9e92d nghttp2: 1.19.0 -> 1.20.0
Corrected c-ares attribute name

Full changelog : https://nghttp2.org/blog/2017/02/26/nghttp2-v1-20-0/
2017-03-16 22:38:19 +01:00
ndowens 14315cf4f5 babl: 0.1.12 -> 0.1.24 2017-03-16 22:18:08 +01:00
Jörg Thalheim 7967c4aacf Merge pull request #23877 from ndowens/isocodes
iso-codes: 3.56 -> 3.74
2017-03-16 20:20:57 +01:00
ndowens 00b6d82001
libcouchbase: 2.5.2 -> 2.7.2
fixes #23932
2017-03-16 17:33:42 +01:00
ndowens 3cecb95a9d
libdap: 3.15.1 -> 3.18.3 2017-03-16 17:23:03 +01:00
Jörg Thalheim e82ca0fa01 Merge pull request #23938 from ndowens/libdiscid
libdiscid: 0.6.1 -> 0.6.2
2017-03-16 17:15:41 +01:00
Joachim Fasting c317e5c85d
ldns: split man pages
Saves ~1.8MB
2017-03-16 16:15:31 +01:00
Joachim Fasting 3fac05b951
libsodium: 1.0.11 -> 1.0.12 2017-03-16 15:54:20 +01:00
Jörg Thalheim 1d36642fdf Merge pull request #23941 from ndowens/libextractor
libextractor: 1.2 -> 1.3
2017-03-16 14:23:04 +01:00