xpdf: fix a runtime error
'This application failed to start because it could not find or load the Qt platform plugin "cocoa" in "".'
This commit is contained in:
parent
f5892d0718
commit
ea66292a16
1 changed files with 7 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
|||
{ enableGUI ? true, enablePDFtoPPM ? true, useT1Lib ? false
|
||||
, stdenv, fetchurl, zlib, libpng, freetype ? null, t1lib ? null
|
||||
, cmake, qtbase ? null
|
||||
, cmake, qtbase ? null, makeWrapper
|
||||
}:
|
||||
|
||||
assert enableGUI -> qtbase != null && freetype != null;
|
||||
|
@ -22,7 +22,7 @@ stdenv.mkDerivation {
|
|||
# https://cmake.org/cmake/help/v3.10/command/cmake_minimum_required.html
|
||||
patches = stdenv.lib.optional stdenv.isDarwin ./cmake_version.patch;
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
nativeBuildInputs = [ cmake makeWrapper ];
|
||||
|
||||
cmakeFlags = ["-DSYSTEM_XPDFRC=/etc/xpdfrc" "-DA4_PAPER=ON"];
|
||||
|
||||
|
@ -36,6 +36,11 @@ stdenv.mkDerivation {
|
|||
|
||||
hardeningDisable = [ "format" ];
|
||||
|
||||
postInstall = stdenv.lib.optionalString stdenv.isDarwin ''
|
||||
wrapProgram $out/bin/xpdf \
|
||||
--set QT_QPA_PLATFORM_PLUGIN_PATH ${qtbase.bin}/lib/qt-*/plugins/platforms
|
||||
'';
|
||||
|
||||
meta = {
|
||||
homepage = http://www.foolabs.com/xpdf/;
|
||||
description = "Viewer for Portable Document Format (PDF) files";
|
||||
|
|
Loading…
Reference in a new issue