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
|
|
|
|
, cmake, qtbase ? null
|
2005-12-02 22:49:51 +00:00
|
|
|
}:
|
|
|
|
|
2017-08-28 21:08:01 +00:00
|
|
|
assert enableGUI -> qtbase != 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
|
|
|
|
2017-08-28 21:08:01 +00:00
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
|
|
|
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" ];
|
|
|
|
|
2010-10-07 13:14:13 +00:00
|
|
|
meta = {
|
2017-08-01 20:03:30 +00:00
|
|
|
homepage = http://www.foolabs.com/xpdf/;
|
2016-06-20 10:53:46 +00:00
|
|
|
description = "Viewer for Portable Document Format (PDF) files";
|
2010-10-07 13:14:13 +00:00
|
|
|
|
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2016-05-16 20:30:20 +00:00
|
|
|
maintainers = [ stdenv.lib.maintainers.peti ];
|
2010-10-07 13:14:13 +00:00
|
|
|
};
|
2005-11-27 21:06:08 +00:00
|
|
|
}
|