2015-09-17 16:54:32 +01:00
|
|
|
{ stdenv, lib, fetchurl, fetchpatch, pkgconfig, libiconv, libintlOrEmpty
|
2013-06-29 15:07:15 +01:00
|
|
|
, zlib, curl, cairo, freetype, fontconfig, lcms, libjpeg, openjpeg
|
2015-09-17 16:54:32 +01:00
|
|
|
, minimal ? false, qt4Support ? false, qt4 ? null, qt5Support ? false, qt5 ? null
|
2015-04-02 15:50:37 +01:00
|
|
|
, utils ? false, suffix ? "glib"
|
2011-07-11 14:04:38 +01:00
|
|
|
}:
|
2008-07-17 16:02:57 +01:00
|
|
|
|
2015-07-21 19:53:55 +01:00
|
|
|
let # beware: updates often break cups_filters build
|
2015-07-18 12:01:27 +01:00
|
|
|
version = "0.34.0"; # even major numbers are stable
|
|
|
|
sha256 = "1c2wa4pfzqmvzq1jpp3ps5nmzz745gcg8dnpwqpfdccy5ydbm90v";
|
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";
|
|
|
|
inherit sha256;
|
|
|
|
};
|
2013-04-21 21:15:38 +01:00
|
|
|
|
2015-09-17 16:54:32 +01:00
|
|
|
outputs = [ "out" ] ++ lib.optional (!minimal) "doc";
|
2015-07-26 12:43:49 +01:00
|
|
|
|
2015-04-02 15:50:37 +01:00
|
|
|
patches = [ ./datadir_env.patch ];
|
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;
|
|
|
|
[ zlib freetype fontconfig libjpeg lcms curl openjpeg ]
|
|
|
|
++ optional (!minimal) cairo
|
2015-04-02 15:50:37 +01:00
|
|
|
++ optional qt4Support qt4
|
|
|
|
++ optional qt5Support qt5.base;
|
2013-04-21 21:15:38 +01:00
|
|
|
|
2015-04-02 15:50:37 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig libiconv ] ++ libintlOrEmpty;
|
2013-04-18 19:54:47 +01:00
|
|
|
|
2015-09-17 16:54:32 +01:00
|
|
|
configureFlags = with lib;
|
2015-04-02 15:50:37 +01:00
|
|
|
[
|
2015-04-01 21:33:55 +01:00
|
|
|
"--enable-xpdf-headers"
|
|
|
|
"--enable-libcurl"
|
|
|
|
"--enable-zlib"
|
2015-04-02 15:50:37 +01:00
|
|
|
]
|
2015-09-17 16:54:32 +01:00
|
|
|
++ optionals minimal [ "--disable-poppler-glib" "--disable-poppler-cpp" ]
|
|
|
|
++ optional (!utils) "--disable-utils";
|
2008-07-17 16:02:57 +01:00
|
|
|
|
2015-04-02 15:50:37 +01:00
|
|
|
enableParallelBuilding = true;
|
2011-07-11 14:04:38 +01:00
|
|
|
|
2015-09-17 16:54:32 +01:00
|
|
|
meta = with lib; {
|
2015-04-02 15:50:37 +01:00
|
|
|
homepage = http://poppler.freedesktop.org/;
|
|
|
|
description = "A PDF rendering library";
|
2009-02-20 23:43:29 +00:00
|
|
|
|
2015-04-02 15:50:37 +01:00
|
|
|
longDescription = ''
|
|
|
|
Poppler is a PDF rendering library based on the xpdf-3.0 code base.
|
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
|
|
|
}
|