Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

40 lines
678 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
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.hostPlatform.isLinux [
libpulseaudio
alsa-lib
wayland
];
outputs = [
"bin"
"dev"
"out"
];
qmakeFlags = [ "GST_VERSION=1.0" ];
NIX_LDFLAGS = lib.optionalString (stdenv.hostPlatform.isDarwin) "-lobjc";
}