mirror of
https://github.com/JupiterBroadcasting/CasterSoundboard.git
synced 2025-10-29 19:45:32 +00:00
This was the reason audio wasn't working for me so far. In the long term however I think it would be a good idea to actually show an error dialogue with detailed information if that happens. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
20 lines
503 B
Nix
20 lines
503 B
Nix
with import <nixpkgs> {};
|
|
|
|
stdenv.mkDerivation {
|
|
name = "CasterSoundboard";
|
|
src = ./CasterSoundboard;
|
|
nativeBuildInputs = [ qt5.qmakeHook qt5.makeQtWrapper ];
|
|
buildInputs = [
|
|
qt5.qtmultimedia
|
|
gst_all_1.gst-plugins-base
|
|
gst_all_1.gst-plugins-good
|
|
gst_all_1.gst-plugins-bad
|
|
gst_all_1.gst-plugins-ugly
|
|
];
|
|
enableParallelBuilding = true;
|
|
postInstall = ''
|
|
wrapQtProgram "$out/bin/$name" \
|
|
--prefix GST_PLUGIN_SYSTEM_PATH_1_0 : "$GST_PLUGIN_SYSTEM_PATH_1_0"
|
|
'';
|
|
}
|