2012-08-16 20:31:44 +00:00
|
|
|
{ enableGUI ? true, enablePDFtoPPM ? true, useT1Lib ? false
|
2017-08-28 21:08:01 +00:00
|
|
|
, stdenv, fetchurl, zlib, libpng, freetype ? null, t1lib ? null
|
2018-03-01 21:40:10 +00:00
|
|
|
, cmake, qtbase ? null, qtsvg ? null, makeWrapper
|
2005-12-02 22:49:51 +00:00
|
|
|
}:
|
|
|
|
|
2018-03-01 21:40:10 +00:00
|
|
|
assert enableGUI -> qtbase != null && qtsvg != null && freetype != null;
|
2005-12-02 22:49:51 +00:00
|
|
|
assert enablePDFtoPPM -> freetype != null;
|
2005-12-02 23:21:40 +00:00
|
|
|
assert useT1Lib -> t1lib != null;
|
2005-11-27 21:06:08 +00:00
|
|
|
|
2012-08-16 20:31:44 +00:00
|
|
|
assert !useT1Lib; # t1lib has multiple unpatched security vulnerabilities
|
|
|
|
|
2005-11-27 21:06:08 +00:00
|
|
|
stdenv.mkDerivation {
|
2017-08-25 23:07:31 +00:00
|
|
|
name = "xpdf-4.00";
|
2005-12-02 22:49:51 +00:00
|
|
|
|
2017-08-25 23:07:31 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = http://www.xpdfreader.com/dl/xpdf-4.00.tar.gz;
|
|
|
|
sha256 = "1mhn89738vjva14xr5gblc2zrdgzmpqbbjdflqdmpqv647294ggz";
|
2005-11-27 21:06:08 +00:00
|
|
|
};
|
2010-10-07 13:14:29 +00:00
|
|
|
|
2018-03-01 15:32:31 +00:00
|
|
|
# Fix "No known features for CXX compiler", see
|
|
|
|
# https://cmake.org/pipermail/cmake/2016-December/064733.html and the note at
|
|
|
|
# https://cmake.org/cmake/help/v3.10/command/cmake_minimum_required.html
|
|
|
|
patches = stdenv.lib.optional stdenv.isDarwin ./cmake_version.patch;
|
|
|
|
|
2018-03-01 15:50:56 +00:00
|
|
|
nativeBuildInputs = [ cmake makeWrapper ];
|
2017-08-28 21:08:01 +00:00
|
|
|
|
|
|
|
cmakeFlags = ["-DSYSTEM_XPDFRC=/etc/xpdfrc" "-DA4_PAPER=ON"];
|
|
|
|
|
2014-12-09 13:35:54 +00:00
|
|
|
buildInputs = [ zlib libpng ] ++
|
2017-08-28 21:08:01 +00:00
|
|
|
stdenv.lib.optional enableGUI qtbase ++
|
2013-10-22 11:01:41 +00:00
|
|
|
stdenv.lib.optional useT1Lib t1lib ++
|
|
|
|
stdenv.lib.optional enablePDFtoPPM freetype;
|
2007-10-03 12:16:48 +00:00
|
|
|
|
2011-10-31 21:38:30 +00:00
|
|
|
# Debian uses '-fpermissive' to bypass some errors on char* constantness.
|
|
|
|
CXXFLAGS = "-O2 -fpermissive";
|
2010-10-07 13:14:29 +00:00
|
|
|
|
2016-07-28 01:42:58 +00:00
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
|
2018-03-22 17:21:12 +00:00
|
|
|
postInstall = stdenv.lib.optionalString (stdenv.isDarwin && enableGUI) ''
|
2018-03-01 15:50:56 +00:00
|
|
|
wrapProgram $out/bin/xpdf \
|
2018-03-01 21:40:10 +00:00
|
|
|
--set QT_PLUGIN_PATH ${qtbase.bin}/${qtbase.qtPluginPrefix}:${qtsvg.bin}/${qtbase.qtPluginPrefix}
|
2018-03-01 15:50:56 +00:00
|
|
|
'';
|
|
|
|
|
2018-09-01 12:34:00 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://www.xpdfreader.com;
|
2016-06-20 10:53:46 +00:00
|
|
|
description = "Viewer for Portable Document Format (PDF) files";
|
2018-09-01 12:34:00 +00:00
|
|
|
license = with licenses; [ gpl2 gpl3 ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = [ maintainers.peti ];
|
2010-10-07 13:14:13 +00:00
|
|
|
};
|
2005-11-27 21:06:08 +00:00
|
|
|
}
|