2019-10-12 10:34:13 -07:00
|
|
|
{ stdenv, lib, fetchurl, fetchpatch, cmake, ninja, pkgconfig, libiconv, libintl
|
2013-06-29 07:07:15 -07:00
|
|
|
, zlib, curl, cairo, freetype, fontconfig, lcms, libjpeg, openjpeg
|
2017-05-25 18:09:22 -07:00
|
|
|
, withData ? true, poppler_data
|
2016-08-01 16:06:10 -07:00
|
|
|
, qt5Support ? false, qtbase ? null
|
2018-12-02 03:41:15 -08:00
|
|
|
, introspectionSupport ? false, gobject-introspection ? null
|
2017-10-02 14:19:29 -07:00
|
|
|
, utils ? false, nss ? null
|
2016-08-18 05:22:33 -07:00
|
|
|
, minimal ? false, suffix ? "glib"
|
2011-07-11 06:04:38 -07:00
|
|
|
}:
|
2008-07-17 08:02:57 -07:00
|
|
|
|
2016-08-25 08:48:35 -07:00
|
|
|
let # beware: updates often break cups-filters build
|
2019-03-11 04:37:44 -07:00
|
|
|
version = "0.74.0";
|
2017-12-19 21:53:09 -08:00
|
|
|
mkFlag = optset: flag: "-DENABLE_${flag}=${if optset then "on" else "off"}";
|
2015-04-02 07:50:37 -07:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "poppler-${suffix}-${version}";
|
2013-04-18 11:54:47 -07:00
|
|
|
|
2015-04-02 07:50:37 -07:00
|
|
|
src = fetchurl {
|
|
|
|
url = "${meta.homepage}/poppler-${version}.tar.xz";
|
2019-03-11 04:37:44 -07:00
|
|
|
sha256 = "0bvb0yq9zsl2b811j4l4x0vf8g5lgmqbndkb2hvgsrr5639rzq4j";
|
2015-04-02 07:50:37 -07:00
|
|
|
};
|
2013-04-21 13:15:38 -07:00
|
|
|
|
2016-08-28 17:30:01 -07:00
|
|
|
outputs = [ "out" "dev" ];
|
2015-07-26 04:43:49 -07:00
|
|
|
|
2019-10-12 10:34:13 -07:00
|
|
|
patches = [
|
|
|
|
(fetchpatch {
|
|
|
|
name = "CVE-2019-9959.patch";
|
|
|
|
url = "https://gitlab.freedesktop.org/poppler/poppler/commit/68ef84e5968a4249c2162b839ca6d7975048a557.patch";
|
|
|
|
sha256 = "17a3qs74fnnrhjys23f4aw5y7yfsk5d507jcj4hh1bndqv6dpwg1";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2018-03-14 12:15:06 -07:00
|
|
|
buildInputs = [ libiconv libintl ] ++ lib.optional withData poppler_data;
|
2013-04-21 13:15:38 -07:00
|
|
|
|
2015-09-17 08:54:32 -07:00
|
|
|
# TODO: reduce propagation to necessary libs
|
|
|
|
propagatedBuildInputs = with lib;
|
2016-08-18 02:46:38 -07:00
|
|
|
[ zlib freetype fontconfig libjpeg openjpeg ]
|
|
|
|
++ optionals (!minimal) [ cairo lcms curl ]
|
2016-12-19 02:24:59 -08:00
|
|
|
++ optional qt5Support qtbase
|
2017-10-02 14:19:29 -07:00
|
|
|
++ optional utils nss
|
2018-12-02 03:41:15 -08:00
|
|
|
++ optional introspectionSupport gobject-introspection;
|
2013-04-21 13:15:38 -07:00
|
|
|
|
2017-12-19 21:53:09 -08:00
|
|
|
nativeBuildInputs = [ cmake ninja pkgconfig ];
|
2013-04-18 11:54:47 -07:00
|
|
|
|
2019-01-25 20:30:37 -08:00
|
|
|
# Workaround #54606
|
|
|
|
preConfigure = stdenv.lib.optionalString stdenv.isDarwin ''
|
|
|
|
sed -i -e '1i cmake_policy(SET CMP0025 NEW)' CMakeLists.txt
|
|
|
|
'';
|
2018-03-22 15:57:38 -07:00
|
|
|
|
2017-12-19 21:53:09 -08:00
|
|
|
cmakeFlags = [
|
2019-01-08 10:11:10 -08:00
|
|
|
(mkFlag true "UNSTABLE_API_ABI_HEADERS") # previously "XPDF_HEADERS"
|
2017-12-19 21:53:09 -08:00
|
|
|
(mkFlag (!minimal) "GLIB")
|
|
|
|
(mkFlag (!minimal) "CPP")
|
|
|
|
(mkFlag (!minimal) "LIBCURL")
|
|
|
|
(mkFlag utils "UTILS")
|
|
|
|
(mkFlag qt5Support "QT5")
|
|
|
|
];
|
2016-02-10 03:08:23 -08:00
|
|
|
|
2015-09-17 08:54:32 -07:00
|
|
|
meta = with lib; {
|
2017-08-17 15:02:38 -07:00
|
|
|
homepage = https://poppler.freedesktop.org/;
|
2015-04-02 07:50:37 -07:00
|
|
|
description = "A PDF rendering library";
|
2009-02-20 15:43:29 -08:00
|
|
|
|
2015-04-02 07:50:37 -07:00
|
|
|
longDescription = ''
|
2017-10-02 14:19:29 -07:00
|
|
|
Poppler is a PDF rendering library based on the xpdf-3.0 code
|
|
|
|
base. In addition it provides a number of tools that can be
|
|
|
|
installed separately.
|
2014-04-24 01:52:42 -07:00
|
|
|
'';
|
2013-10-24 09:08:48 -07:00
|
|
|
|
2015-09-17 08:54:32 -07:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = with maintainers; [ ttuegel ];
|
2015-01-19 09:12:04 -08:00
|
|
|
};
|
2015-04-02 07:50:37 -07:00
|
|
|
}
|