2012-08-16 20:31:44 +00:00
|
|
|
{ enableGUI ? true, enablePDFtoPPM ? true, useT1Lib ? false
|
2015-09-15 09:13:22 +00:00
|
|
|
, stdenv, fetchurl, zlib, libpng, xlibsWrapper ? null, motif ? null, freetype ? null, t1lib ? null
|
2007-10-03 12:16:48 +00:00
|
|
|
, base14Fonts ? null
|
2005-12-02 22:49:51 +00:00
|
|
|
}:
|
|
|
|
|
2015-09-15 09:13:22 +00:00
|
|
|
assert enableGUI -> xlibsWrapper != null && motif != 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 {
|
2014-12-09 13:35:54 +00:00
|
|
|
name = "xpdf-3.04";
|
2005-12-02 22:49:51 +00:00
|
|
|
|
2005-11-27 21:06:08 +00:00
|
|
|
src = fetchurl {
|
2014-12-09 13:35:54 +00:00
|
|
|
url = ftp://ftp.foolabs.com/pub/xpdf/xpdf-3.04.tar.gz;
|
|
|
|
sha256 = "1rbp54mr3z2x3a3a1qmz8byzygzi223vckfam9ib5g1sfds0qf8i";
|
2005-11-27 21:06:08 +00:00
|
|
|
};
|
2010-10-07 13:14:29 +00:00
|
|
|
|
2014-12-09 13:35:54 +00:00
|
|
|
buildInputs = [ zlib libpng ] ++
|
2015-09-15 09:13:22 +00:00
|
|
|
stdenv.lib.optionals enableGUI [xlibsWrapper motif] ++
|
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
|
|
|
|
2013-10-22 11:01:41 +00:00
|
|
|
configureFlags = "--enable-a4-paper";
|
|
|
|
|
|
|
|
postInstall = stdenv.lib.optionalString (base14Fonts != null) ''
|
|
|
|
substituteInPlace $out/etc/xpdfrc \
|
|
|
|
--replace /usr/local/share/ghostscript/fonts ${base14Fonts} \
|
|
|
|
--replace '#fontFile' fontFile
|
|
|
|
'';
|
2010-10-07 13:14:13 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
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
|
|
|
}
|