nixpkgs/pkgs/applications/misc/xpdf/default.nix

87 lines
2.9 KiB
Nix
Raw Permalink Normal View History

2019-09-12 20:40:16 +00:00
{ enableGUI ? true
, enablePDFtoPPM ? true
, enablePrinting ? true
, lib, stdenv, fetchzip, cmake, makeDesktopItem
2019-09-12 20:40:16 +00:00
, zlib, libpng, cups ? null, freetype ? null
, qtbase ? null, qtsvg ? null, wrapQtAppsHook
}:
assert enableGUI -> qtbase != null && qtsvg != null && freetype != null;
assert enablePDFtoPPM -> freetype != null;
2019-09-12 20:40:16 +00:00
assert enablePrinting -> cups != null;
2019-09-12 20:40:16 +00:00
stdenv.mkDerivation rec {
pname = "xpdf";
2021-02-09 10:46:10 +00:00
version = "4.03";
2019-09-12 20:40:16 +00:00
src = fetchzip {
2021-02-09 10:46:10 +00:00
url = "https://dl.xpdfreader.com/xpdf-${version}.tar.gz";
sha256 = "09yhvmh1vxjy763nnmawynygp5bh3j4i8ixqja64j11676yl77n6";
};
# 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
2021-01-15 05:42:41 +00:00
patches = lib.optional stdenv.isDarwin ./cmake_version.patch;
nativeBuildInputs =
[ cmake ]
2021-01-15 05:42:41 +00:00
++ lib.optional enableGUI wrapQtAppsHook;
2017-08-28 21:08:01 +00:00
2019-09-12 20:40:16 +00:00
cmakeFlags = ["-DSYSTEM_XPDFRC=/etc/xpdfrc" "-DA4_PAPER=ON" "-DOPI_SUPPORT=ON"]
2021-01-15 05:42:41 +00:00
++ lib.optional (!enablePrinting) "-DXPDFWIDGET_PRINTING=OFF";
2017-08-28 21:08:01 +00:00
buildInputs = [ zlib libpng ] ++
2021-01-15 05:42:41 +00:00
lib.optional enableGUI qtbase ++
lib.optional enablePrinting cups ++
lib.optional enablePDFtoPPM freetype;
2019-09-12 20:40:16 +00:00
desktopItem = makeDesktopItem {
name = "xpdf";
desktopName = "Xpdf";
comment = "Views Adobe PDF files";
icon = "xpdf";
exec = "xpdf %f";
categories = "Office;";
terminal = "false";
};
2021-02-09 10:46:10 +00:00
postInstall = lib.optionalString (!stdenv.isDarwin) ''
install -Dm644 ${desktopItem}/share/applications/xpdf.desktop -t $out/share/applications
2019-09-12 20:40:16 +00:00
install -Dm644 $src/xpdf-qt/xpdf-icon.svg $out/share/pixmaps/xpdf.svg
'';
2021-02-09 10:46:10 +00:00
# wrapQtAppsHook broken on macOS (https://github.com/NixOS/nixpkgs/issues/102044)
postFixup = lib.optionalString stdenv.isDarwin ''
wrapQtApp $out/bin/xpdf
'';
meta = with lib; {
2019-09-12 20:40:16 +00:00
homepage = "https://www.xpdfreader.com";
description = "Viewer for Portable Document Format (PDF) files";
longDescription = ''
XPDF includes multiple tools for viewing and processing PDF files.
xpdf: PDF viewer (with Graphical Interface)
pdftotext: converts PDF to text
pdftops: converts PDF to PostScript
pdftoppm: converts PDF pages to netpbm (PPM/PGM/PBM) image files
pdftopng: converts PDF pages to PNG image files
pdftohtml: converts PDF to HTML
pdfinfo: extracts PDF metadata
pdfimages: extracts raw images from PDF files
pdffonts: lists fonts used in PDF files
pdfdetach: extracts attached files from PDF files
'';
2021-02-09 10:46:10 +00:00
license = with licenses; [ gpl2Only gpl3Only ];
2018-09-01 12:34:00 +00:00
platforms = platforms.unix;
2019-09-12 20:40:16 +00:00
maintainers = with maintainers; [ sikmir ];
2019-11-12 18:44:35 +00:00
knownVulnerabilities = [
"CVE-2018-7453: loop in PDF objects"
"CVE-2018-16369: loop in PDF objects"
"CVE-2019-9587: loop in PDF objects"
"CVE-2019-9588: loop in PDF objects"
"CVE-2019-16088: loop in PDF objects"
];
};
}