xpdf: specify paths to Qt plugins
On Darwing this fixes icons and "native" look. Fixes: #36188
This commit is contained in:
parent
ea66292a16
commit
a3c57acef4
1 changed files with 3 additions and 3 deletions
|
@ -1,9 +1,9 @@
|
|||
{ enableGUI ? true, enablePDFtoPPM ? true, useT1Lib ? false
|
||||
, stdenv, fetchurl, zlib, libpng, freetype ? null, t1lib ? null
|
||||
, cmake, qtbase ? null, makeWrapper
|
||||
, cmake, qtbase ? null, qtsvg ? null, makeWrapper
|
||||
}:
|
||||
|
||||
assert enableGUI -> qtbase != null && freetype != null;
|
||||
assert enableGUI -> qtbase != null && qtsvg != null && freetype != null;
|
||||
assert enablePDFtoPPM -> freetype != null;
|
||||
assert useT1Lib -> t1lib != null;
|
||||
|
||||
|
@ -38,7 +38,7 @@ stdenv.mkDerivation {
|
|||
|
||||
postInstall = stdenv.lib.optionalString stdenv.isDarwin ''
|
||||
wrapProgram $out/bin/xpdf \
|
||||
--set QT_QPA_PLATFORM_PLUGIN_PATH ${qtbase.bin}/lib/qt-*/plugins/platforms
|
||||
--set QT_PLUGIN_PATH ${qtbase.bin}/${qtbase.qtPluginPrefix}:${qtsvg.bin}/${qtbase.qtPluginPrefix}
|
||||
'';
|
||||
|
||||
meta = {
|
||||
|
|
Loading…
Reference in a new issue