mesa: fix build by adding ncurses

After stdenv merge it seems needed, and drivers remain linked against it.

Tests still don't link.
This commit is contained in:
Vladimír Čunát 2014-01-24 11:14:35 +01:00
parent 4caef493be
commit 4eefe1a779

View File

@ -1,7 +1,7 @@
{ stdenv, fetchurl, pkgconfig, intltool, flex, bison, autoreconfHook
, python, libxml2Python, file, expat, makedepend
, libdrm, xorg, wayland, udev, llvm, libffi
, libvdpau, libelf
, libvdpau, libelf, ncurses
, enableTextureFloats ? false # Texture floats are patented, see docs/patents.txt
, enableExtraFeatures ? false # not maintained
}:
@ -87,7 +87,7 @@ stdenv.mkDerivation {
buildInputs = with xorg; [
autoreconfHook intltool expat libxml2Python llvm
libXfixes glproto dri2proto libX11 libXext libxcb libXt
libffi wayland libvdpau libelf
libffi wayland libvdpau libelf ncurses
] ++ optionals enableExtraFeatures [ /*libXvMC*/ ]
++ optional stdenv.isLinux udev
;