2018-03-14 12:15:06 -07:00
|
|
|
{ stdenv, lib, fetchurl, 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
|
2016-12-19 02:24:59 -08:00
|
|
|
, introspectionSupport ? false, gobjectIntrospection ? null
|
2016-08-18 05:22:33 -07:00
|
|
|
, utils ? false
|
|
|
|
, 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
|
2018-03-23 02:21:28 -07:00
|
|
|
version = "0.63.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";
|
2018-03-23 02:21:28 -07:00
|
|
|
sha256 = "04d1z1ygyb3llzc6s6c99wxafvljj2sc5b76djif34f7mzfqmk17";
|
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
|
|
|
|
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
|
|
|
|
++ optional introspectionSupport gobjectIntrospection;
|
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
|
|
|
|
2018-03-22 15:57:38 -07:00
|
|
|
CXXFLAGS = stdenv.lib.optionalString stdenv.cc.isClang "-std=c++11";
|
|
|
|
|
2017-12-19 21:53:09 -08:00
|
|
|
cmakeFlags = [
|
|
|
|
(mkFlag true "XPDF_HEADERS")
|
|
|
|
(mkFlag (!minimal) "GLIB")
|
|
|
|
(mkFlag (!minimal) "CPP")
|
|
|
|
(mkFlag (!minimal) "LIBCURL")
|
|
|
|
(mkFlag utils "UTILS")
|
|
|
|
(mkFlag qt5Support "QT5")
|
|
|
|
];
|
2016-02-10 03:08:23 -08:00
|
|
|
|
2018-02-26 03:49:36 -08:00
|
|
|
# Not sure when and how to pass it. It seems an upstream bug anyway.
|
|
|
|
CXXFLAGS = if stdenv.cc.isClang then [ "-std=c++11" ] else null;
|
|
|
|
|
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 = ''
|
|
|
|
Poppler is a PDF rendering library based on the xpdf-3.0 code base.
|
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
|
|
|
}
|