qt5.multimedia: fix gstreamer support.

(cherry picked from commit 449b6028a6)

[Bjørn: Without this, one may get runtime errors like
  defaultServiceProvider::requestService(): no service found for - "org.qt-project.qt.camera"
or
  The camera service is missing
]
This commit is contained in:
Gabriel Ebner 2015-09-22 18:45:45 +02:00 committed by Bjørn Forsman
parent eb382dc3b4
commit 8aed85c40e

View File

@ -152,7 +152,7 @@ let
multimedia = callPackage
(
{ qtSubmodule, base, declarative
{ qtSubmodule, base, declarative, pkgconfig
, alsaLib, gstreamer, gst_plugins_base, libpulseaudio
}:
@ -160,7 +160,7 @@ let
name = "qtmultimedia";
qtInputs = [ base declarative ];
buildInputs = [
alsaLib gstreamer gst_plugins_base libpulseaudio
pkgconfig alsaLib gstreamer gst_plugins_base libpulseaudio
];
}
)