Merge pull request #246851 from anund/noson-pulse

noson: fix pulse audio streaming support
This commit is contained in:
Franz Pletz 2023-08-25 20:14:46 +02:00 committed by GitHub
commit 94d494b2f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,6 +8,7 @@
, qtgraphicaleffects
, qtquickcontrols2
, wrapQtAppsHook
, makeWrapper
}:
stdenv.mkDerivation (finalAttrs: {
@ -24,6 +25,7 @@ stdenv.mkDerivation (finalAttrs: {
nativeBuildInputs = [
cmake
wrapQtAppsHook
makeWrapper
];
buildInputs = [
@ -36,7 +38,9 @@ stdenv.mkDerivation (finalAttrs: {
# wrapQtAppsHook doesn't automatically find noson-gui
dontWrapQtApps = true;
preFixup = ''
wrapProgram "$out/bin/noson-app" --prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [ libpulseaudio ]}
wrapQtApp "$out/lib/noson/noson-gui"
'';