summary refs log tree commit diff
path: root/pkgs/development/libraries/qt-5/5.5/qtmultimedia.nix
blob: b6b4d8ea0cf4e0aa419eab4645be7584ecec7a1d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ qtSubmodule, qtbase, qtdeclarative, pkgconfig
, alsaLib, gstreamer, gst-plugins-base, libpulseaudio
}:

qtSubmodule {
  name = "qtmultimedia";
  qtInputs = [ qtbase qtdeclarative ];
  buildInputs = [
    pkgconfig alsaLib gstreamer gst-plugins-base libpulseaudio
  ];
  configureFlags = "GST_VERSION=1.0";
}