01ed8ef136
GitOrigin-RevId: 20fc948445a6c22d4e8d5178e9a6bc6e1f5417c8
28 lines
538 B
Nix
28 lines
538 B
Nix
{ qtModule
|
|
, lib
|
|
, stdenv
|
|
, qtbase
|
|
, qtdeclarative
|
|
, qtshadertools
|
|
, qtsvg
|
|
, pkg-config
|
|
, alsa-lib
|
|
, gstreamer
|
|
, gst-plugins-base
|
|
, gst-plugins-good
|
|
, gst-libav
|
|
, gst-vaapi
|
|
, libpulseaudio
|
|
, wayland
|
|
, elfutils
|
|
, libunwind
|
|
, orc
|
|
}:
|
|
|
|
qtModule {
|
|
pname = "qtmultimedia";
|
|
qtInputs = [ qtbase qtdeclarative qtsvg qtshadertools ];
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ libpulseaudio elfutils libunwind alsa-lib wayland orc ];
|
|
propagatedBuildInputs = [ gstreamer gst-plugins-base gst-plugins-good gst-libav gst-vaapi ];
|
|
}
|