2c76a4cb41
GitOrigin-RevId: c757e9bd77b16ca2e03c89bf8bc9ecb28e0c06ad
24 lines
595 B
Nix
24 lines
595 B
Nix
{ qtModule
|
|
, lib
|
|
, stdenv
|
|
, qtbase
|
|
, qtdeclarative
|
|
, pkg-config
|
|
, alsa-lib
|
|
, gstreamer
|
|
, gst-plugins-base
|
|
, libpulseaudio
|
|
, wayland
|
|
}:
|
|
|
|
qtModule {
|
|
pname = "qtmultimedia";
|
|
propagatedBuildInputs = [ qtbase qtdeclarative ];
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ gstreamer gst-plugins-base ]
|
|
# https://github.com/NixOS/nixpkgs/pull/169336 regarding libpulseaudio
|
|
++ lib.optionals stdenv.isLinux [ libpulseaudio alsa-lib wayland ];
|
|
outputs = [ "bin" "dev" "out" ];
|
|
qmakeFlags = [ "GST_VERSION=1.0" ];
|
|
NIX_LDFLAGS = lib.optionalString (stdenv.isDarwin) "-lobjc";
|
|
}
|