2019-10-12 18:34:13 +01:00
|
|
|
{ stdenv, lib, fetchurl, fetchpatch, cmake, ninja, pkgconfig, libiconv, libintl
|
2013-06-29 15:07:15 +01:00
|
|
|
, zlib, curl, cairo, freetype, fontconfig, lcms, libjpeg, openjpeg
|
2017-05-26 02:09:22 +01:00
|
|
|
, withData ? true, poppler_data
|
2016-08-02 00:06:10 +01:00
|
|
|
, qt5Support ? false, qtbase ? null
|
2018-12-02 11:41:15 +00:00
|
|
|
, introspectionSupport ? false, gobject-introspection ? null
|
2017-10-02 22:19:29 +01:00
|
|
|
, utils ? false, nss ? null
|
2016-08-18 13:22:33 +01:00
|
|
|
, minimal ? false, suffix ? "glib"
|
2011-07-11 14:04:38 +01:00
|
|
|
}:
|
2008-07-17 16:02:57 +01:00
|
|
|
|
2019-10-24 08:49:35 +01:00
|
|
|
let
|
2017-12-20 05:53:09 +00:00
|
|
|
mkFlag = optset: flag: "-DENABLE_${flag}=${if optset then "on" else "off"}";
|
2015-04-02 15:50:37 +01:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "poppler-${suffix}-${version}";
|
2020-08-16 04:50:13 +01:00
|
|
|
version = "20.08.0"; # beware: updates often break cups-filters build, check texlive and scribusUnstable too!
|
2013-04-18 19:54:47 +01:00
|
|
|
|
2015-04-02 15:50:37 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "${meta.homepage}/poppler-${version}.tar.xz";
|
2020-08-16 04:50:13 +01:00
|
|
|
sha256 = "19gchq6fpa00ic5rn1zmjzxx85cif4hbdrsjcfd2aqxz9gqgwrdf";
|
2015-04-02 15:50:37 +01:00
|
|
|
};
|
2013-04-21 21:15:38 +01:00
|
|
|
|
2016-08-29 01:30:01 +01:00
|
|
|
outputs = [ "out" "dev" ];
|
2015-07-26 12:43:49 +01:00
|
|
|
|
2018-03-14 19:15:06 +00:00
|
|
|
buildInputs = [ libiconv libintl ] ++ lib.optional withData poppler_data;
|
2013-04-21 21:15:38 +01:00
|
|
|
|
2015-09-17 16:54:32 +01:00
|
|
|
# TODO: reduce propagation to necessary libs
|
|
|
|
propagatedBuildInputs = with lib;
|
2016-08-18 10:46:38 +01:00
|
|
|
[ zlib freetype fontconfig libjpeg openjpeg ]
|
|
|
|
++ optionals (!minimal) [ cairo lcms curl ]
|
2016-12-19 10:24:59 +00:00
|
|
|
++ optional qt5Support qtbase
|
2017-10-02 22:19:29 +01:00
|
|
|
++ optional utils nss
|
2018-12-02 11:41:15 +00:00
|
|
|
++ optional introspectionSupport gobject-introspection;
|
2013-04-21 21:15:38 +01:00
|
|
|
|
2017-12-20 05:53:09 +00:00
|
|
|
nativeBuildInputs = [ cmake ninja pkgconfig ];
|
2013-04-18 19:54:47 +01:00
|
|
|
|
2019-01-26 04:30:37 +00:00
|
|
|
# Workaround #54606
|
|
|
|
preConfigure = stdenv.lib.optionalString stdenv.isDarwin ''
|
|
|
|
sed -i -e '1i cmake_policy(SET CMP0025 NEW)' CMakeLists.txt
|
|
|
|
'';
|
2018-03-22 22:57:38 +00:00
|
|
|
|
2017-12-20 05:53:09 +00:00
|
|
|
cmakeFlags = [
|
2019-01-08 18:11:10 +00:00
|
|
|
(mkFlag true "UNSTABLE_API_ABI_HEADERS") # previously "XPDF_HEADERS"
|
2017-12-20 05:53:09 +00:00
|
|
|
(mkFlag (!minimal) "GLIB")
|
|
|
|
(mkFlag (!minimal) "CPP")
|
|
|
|
(mkFlag (!minimal) "LIBCURL")
|
|
|
|
(mkFlag utils "UTILS")
|
|
|
|
(mkFlag qt5Support "QT5")
|
|
|
|
];
|
2016-02-10 11:08:23 +00:00
|
|
|
|
2015-09-17 16:54:32 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://poppler.freedesktop.org/";
|
2015-04-02 15:50:37 +01:00
|
|
|
description = "A PDF rendering library";
|
2009-02-20 23:43:29 +00:00
|
|
|
|
2015-04-02 15:50:37 +01:00
|
|
|
longDescription = ''
|
2017-10-02 22:19:29 +01: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 09:52:42 +01:00
|
|
|
'';
|
2013-10-24 17:08:48 +01:00
|
|
|
|
2015-09-17 16:54:32 +01:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.all;
|
2020-04-16 03:54:58 +01:00
|
|
|
maintainers = with maintainers; [ ttuegel ] ++ teams.freedesktop.members;
|
2015-01-19 17:12:04 +00:00
|
|
|
};
|
2015-04-02 15:50:37 +01:00
|
|
|
}
|