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