2018-07-30 22:12:57 +01:00
|
|
|
{ stdenv, lib, fetchurl, 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
|
|
|
|
2016-08-25 16:48:35 +01:00
|
|
|
let # beware: updates often break cups-filters build
|
2019-01-08 18:11:10 +00:00
|
|
|
version = "0.73.0";
|
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}";
|
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";
|
2019-01-08 18:11:10 +00:00
|
|
|
sha256 = "00yv7011y40jc5iw9b7zjyg8ij5wsfbjm32kli5qha1ij11majz4";
|
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
|
|
|
|
2018-03-24 13:56:15 +00:00
|
|
|
# Not sure when and how to pass it. It seems an upstream bug anyway.
|
2019-01-09 02:45:23 +00:00
|
|
|
CXXFLAGS = stdenv.lib.optionalString stdenv.cc.isClang "-std=c++14";
|
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; {
|
2017-08-17 23:02:38 +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;
|
|
|
|
maintainers = with maintainers; [ ttuegel ];
|
2015-01-19 17:12:04 +00:00
|
|
|
};
|
2015-04-02 15:50:37 +01:00
|
|
|
}
|