Merge pull request #78481 from Infinisil/mumble-celt

mumble: Fix PLUGIN_PATH definition so it can find the CELT library
This commit is contained in:
Silvan Mosberger 2020-01-26 15:55:27 +01:00 committed by GitHub
commit 3c5add99f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -37,12 +37,12 @@ let
"CONFIG+=bundled-celt"
"CONFIG+=no-bundled-opus"
"CONFIG+=no-bundled-speex"
"DEFINES+=PLUGIN_PATH=${placeholder "out"}/lib/mumble"
] ++ optional (!speechdSupport) "CONFIG+=no-speechd"
++ optional jackSupport "CONFIG+=no-oss CONFIG+=no-alsa CONFIG+=jackaudio"
++ (overrides.configureFlags or [ ]);
preConfigure = ''
qmakeFlags="$qmakeFlags DEFINES+=PLUGIN_PATH=$out/lib/mumble"
patchShebangs scripts
'';
@ -66,7 +66,7 @@ let
description = "Low-latency, high quality voice chat software";
homepage = "https://mumble.info";
license = licenses.bsd3;
maintainers = with maintainers; [ petabyteboy ];
maintainers = with maintainers; [ petabyteboy infinisil ];
platforms = platforms.linux;
};
});