2012-08-16 22:31:44 +02:00
|
|
|
{ enableGUI ? true, enablePDFtoPPM ? true, useT1Lib ? false
|
2017-08-28 23:08:01 +02:00
|
|
|
, stdenv, fetchurl, zlib, libpng, freetype ? null, t1lib ? null
|
|
|
|
, cmake, qtbase ? null
|
2005-12-02 23:49:51 +01:00
|
|
|
}:
|
|
|
|
|
2017-08-28 23:08:01 +02:00
|
|
|
assert enableGUI -> qtbase != null && freetype != null;
|
2005-12-02 23:49:51 +01:00
|
|
|
assert enablePDFtoPPM -> freetype != null;
|
2005-12-03 00:21:40 +01:00
|
|
|
assert useT1Lib -> t1lib != null;
|
2005-11-27 22:06:08 +01:00
|
|
|
|
2012-08-16 22:31:44 +02:00
|
|
|
assert !useT1Lib; # t1lib has multiple unpatched security vulnerabilities
|
|
|
|
|
2005-11-27 22:06:08 +01:00
|
|
|
stdenv.mkDerivation {
|
2017-08-26 01:07:31 +02:00
|
|
|
name = "xpdf-4.00";
|
2005-12-02 23:49:51 +01:00
|
|
|
|
2017-08-26 01:07:31 +02:00
|
|
|
src = fetchurl {
|
|
|
|
url = http://www.xpdfreader.com/dl/xpdf-4.00.tar.gz;
|
|
|
|
sha256 = "1mhn89738vjva14xr5gblc2zrdgzmpqbbjdflqdmpqv647294ggz";
|
2005-11-27 22:06:08 +01:00
|
|
|
};
|
2010-10-07 15:14:29 +02:00
|
|
|
|
2017-08-28 23:08:01 +02:00
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
|
|
|
cmakeFlags = ["-DSYSTEM_XPDFRC=/etc/xpdfrc" "-DA4_PAPER=ON"];
|
|
|
|
|
2014-12-09 14:35:54 +01:00
|
|
|
buildInputs = [ zlib libpng ] ++
|
2017-08-28 23:08:01 +02:00
|
|
|
stdenv.lib.optional enableGUI qtbase ++
|
2013-10-22 13:01:41 +02:00
|
|
|
stdenv.lib.optional useT1Lib t1lib ++
|
|
|
|
stdenv.lib.optional enablePDFtoPPM freetype;
|
2007-10-03 14:16:48 +02:00
|
|
|
|
2011-10-31 22:38:30 +01:00
|
|
|
# Debian uses '-fpermissive' to bypass some errors on char* constantness.
|
|
|
|
CXXFLAGS = "-O2 -fpermissive";
|
2010-10-07 15:14:29 +02:00
|
|
|
|
2016-07-28 03:42:58 +02:00
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
|
2010-10-07 15:14:13 +02:00
|
|
|
meta = {
|
2017-08-01 22:03:30 +02:00
|
|
|
homepage = http://www.foolabs.com/xpdf/;
|
2016-06-20 12:53:46 +02:00
|
|
|
description = "Viewer for Portable Document Format (PDF) files";
|
2010-10-07 15:14:13 +02:00
|
|
|
|
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2016-05-16 22:30:20 +02:00
|
|
|
maintainers = [ stdenv.lib.maintainers.peti ];
|
2010-10-07 15:14:13 +02:00
|
|
|
};
|
2005-11-27 22:06:08 +01:00
|
|
|
}
|