2018-03-14 20:15:06 +01: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
|
2016-12-19 11:24:59 +01:00
|
|
|
, introspectionSupport ? false, gobjectIntrospection ? null
|
2016-08-18 14:22:33 +02:00
|
|
|
, utils ? false
|
|
|
|
, 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
|
2018-03-23 10:21:28 +01:00
|
|
|
version = "0.63.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";
|
2018-03-23 10:21:28 +01:00
|
|
|
sha256 = "04d1z1ygyb3llzc6s6c99wxafvljj2sc5b76djif34f7mzfqmk17";
|
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
|
|
|
|
++ optional introspectionSupport gobjectIntrospection;
|
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.
|
2018-03-22 23:57:38 +01:00
|
|
|
CXXFLAGS = stdenv.lib.optionalString stdenv.cc.isClang "-std=c++11";
|
|
|
|
|
2017-12-20 06:53:09 +01:00
|
|
|
cmakeFlags = [
|
|
|
|
(mkFlag true "XPDF_HEADERS")
|
|
|
|
(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 = ''
|
|
|
|
Poppler is a PDF rendering library based on the xpdf-3.0 code base.
|
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
|
|
|
}
|