mirror of
https://github.com/JupiterBroadcasting/CasterSoundboard.git
synced 2025-10-29 03:23:54 +00:00
default.nix: Add all gstreamer plugins
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>
This commit is contained in:
parent
0c9fdcbc9b
commit
f4e59f85a8
13
default.nix
13
default.nix
@ -4,7 +4,16 @@ stdenv.mkDerivation {
|
||||
name = "CasterSoundboard";
|
||||
src = ./CasterSoundboard;
|
||||
nativeBuildInputs = [ qt5.qmakeHook qt5.makeQtWrapper ];
|
||||
buildInputs = [ qt5.qtmultimedia ];
|
||||
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\"";
|
||||
postInstall = ''
|
||||
wrapQtProgram "$out/bin/$name" \
|
||||
--prefix GST_PLUGIN_SYSTEM_PATH_1_0 : "$GST_PLUGIN_SYSTEM_PATH_1_0"
|
||||
'';
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user