gst-plugins-good: Avoid ncurses headers reference
Incredibly, the package doesn't even directly depend on it!
This commit is contained in:
parent
3d59a8e1a8
commit
5f43846d23
@ -1,7 +1,7 @@
|
|||||||
{ fetchurl, stdenv, pkgconfig, gst_plugins_base, aalib, cairo
|
{ fetchurl, stdenv, pkgconfig, gst_plugins_base, aalib, cairo
|
||||||
, flac, libjpeg, zlib, speex, libpng, libdv, libcaca, libvpx
|
, flac, libjpeg, zlib, speex, libpng, libdv, libcaca, libvpx
|
||||||
, libiec61883, libavc1394, taglib, libpulseaudio, gdk_pixbuf, orc
|
, libiec61883, libavc1394, taglib, libpulseaudio, gdk_pixbuf, orc
|
||||||
, glib, gstreamer, bzip2, libsoup, libintlOrEmpty
|
, glib, gstreamer, bzip2, libsoup, libintlOrEmpty, ncurses
|
||||||
, # Whether to build no plugins that have external dependencies
|
, # Whether to build no plugins that have external dependencies
|
||||||
# (except the PulseAudio plugin).
|
# (except the PulseAudio plugin).
|
||||||
minimalDeps ? false
|
minimalDeps ? false
|
||||||
@ -34,6 +34,11 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
substituteInPlace $out/lib/gstreamer-0.10/libgstaasink.la \
|
||||||
|
--replace "${ncurses.dev}/lib" "${ncurses.lib}/lib"
|
||||||
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = http://gstreamer.freedesktop.org;
|
homepage = http://gstreamer.freedesktop.org;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user