2018-07-30 23:12:57 +02:00
|
|
|
{ stdenv, lib, fetchurl, cmake, ninja, pkgconfig, libiconv, libintl
|
2013-06-29 16:07:15 +02:00
|
|
|
, zlib, curl, cairo, freetype, fontconfig, lcms, libjpeg, openjpeg
|
2017-05-26 03:09:22 +02:00
|
|
|
, withData ? true, poppler_data
|
2016-08-02 01:06:10 +02:00
|
|
|
, qt5Support ? false, qtbase ? null
|
2018-12-02 12:41:15 +01:00
|
|
|
, introspectionSupport ? false, gobject-introspection ? null
|
2017-10-02 23:19:29 +02:00
|
|
|
, utils ? false, nss ? null
|
2016-08-18 14:22:33 +02:00
|
|
|
, minimal ? false, suffix ? "glib"
|
2011-07-11 15:04:38 +02:00
|
|
|
}:
|
2008-07-17 17:02:57 +02:00
|
|
|
|
2016-08-25 17:48:35 +02:00
|
|
|
let # beware: updates often break cups-filters build
|
2019-01-08 19:11:10 +01:00
|
|
|
version = "0.73.0";
|
2017-12-20 06:53:09 +01:00
|
|
|
mkFlag = optset: flag: "-DENABLE_${flag}=${if optset then "on" else "off"}";
|
2015-04-02 16:50:37 +02:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "poppler-${suffix}-${version}";
|
2013-04-18 20:54:47 +02:00
|
|
|
|
2015-04-02 16:50:37 +02:00
|
|
|
src = fetchurl {
|
|
|
|
url = "${meta.homepage}/poppler-${version}.tar.xz";
|
2019-01-08 19:11:10 +01:00
|
|
|
sha256 = "00yv7011y40jc5iw9b7zjyg8ij5wsfbjm32kli5qha1ij11majz4";
|
2015-04-02 16:50:37 +02:00
|
|
|
};
|
2013-04-21 22:15:38 +02:00
|
|
|
|
2016-08-29 02:30:01 +02:00
|
|
|
outputs = [ "out" "dev" ];
|
2015-07-26 13:43:49 +02:00
|
|
|
|
2018-03-14 20:15:06 +01:00
|
|
|
buildInputs = [ libiconv libintl ] ++ lib.optional withData poppler_data;
|
2013-04-21 22:15:38 +02:00
|
|
|
|
2015-09-17 17:54:32 +02:00
|
|
|
# TODO: reduce propagation to necessary libs
|
|
|
|
propagatedBuildInputs = with lib;
|
2016-08-18 11:46:38 +02:00
|
|
|
[ zlib freetype fontconfig libjpeg openjpeg ]
|
|
|
|
++ optionals (!minimal) [ cairo lcms curl ]
|
2016-12-19 11:24:59 +01:00
|
|
|
++ optional qt5Support qtbase
|
2017-10-02 23:19:29 +02:00
|
|
|
++ optional utils nss
|
2018-12-02 12:41:15 +01:00
|
|
|
++ optional introspectionSupport gobject-introspection;
|
2013-04-21 22:15:38 +02:00
|
|
|
|
2017-12-20 06:53:09 +01:00
|
|
|
nativeBuildInputs = [ cmake ninja pkgconfig ];
|
2013-04-18 20:54:47 +02:00
|
|
|
|
2018-03-24 14:56:15 +01:00
|
|
|
# Not sure when and how to pass it. It seems an upstream bug anyway.
|
2019-01-09 03:45:23 +01:00
|
|
|
CXXFLAGS = stdenv.lib.optionalString stdenv.cc.isClang "-std=c++14";
|
2018-03-22 23:57:38 +01:00
|
|
|
|
2017-12-20 06:53:09 +01:00
|
|
|
cmakeFlags = [
|
2019-01-08 19:11:10 +01:00
|
|
|
(mkFlag true "UNSTABLE_API_ABI_HEADERS") # previously "XPDF_HEADERS"
|
2017-12-20 06:53:09 +01:00
|
|
|
(mkFlag (!minimal) "GLIB")
|
|
|
|
(mkFlag (!minimal) "CPP")
|
|
|
|
(mkFlag (!minimal) "LIBCURL")
|
|
|
|
(mkFlag utils "UTILS")
|
|
|
|
(mkFlag qt5Support "QT5")
|
|
|
|
];
|
2016-02-10 12:08:23 +01:00
|
|
|
|
2015-09-17 17:54:32 +02:00
|
|
|
meta = with lib; {
|
2017-08-18 00:02:38 +02:00
|
|
|
homepage = https://poppler.freedesktop.org/;
|
2015-04-02 16:50:37 +02:00
|
|
|
description = "A PDF rendering library";
|
2009-02-21 00:43:29 +01:00
|
|
|
|
2015-04-02 16:50:37 +02:00
|
|
|
longDescription = ''
|
2017-10-02 23:19:29 +02: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 10:52:42 +02:00
|
|
|
'';
|
2013-10-24 18:08:48 +02:00
|
|
|
|
2015-09-17 17:54:32 +02:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = with maintainers; [ ttuegel ];
|
2015-01-19 18:12:04 +01:00
|
|
|
};
|
2015-04-02 16:50:37 +02:00
|
|
|
}
|