2015-09-17 17:54:32 +02:00
|
|
|
{ stdenv, lib, fetchurl, fetchpatch, pkgconfig, libiconv, libintlOrEmpty
|
2013-06-29 16:07:15 +02:00
|
|
|
, zlib, curl, cairo, freetype, fontconfig, lcms, libjpeg, openjpeg
|
2015-09-27 16:59:32 +02:00
|
|
|
, minimal ? false, qt4Support ? false, qt4 ? null, qt5Support ? false, qtbase ? null
|
2015-04-02 16:50:37 +02:00
|
|
|
, utils ? false, suffix ? "glib"
|
2011-07-11 15:04:38 +02:00
|
|
|
}:
|
2008-07-17 17:02:57 +02:00
|
|
|
|
2015-07-21 20:53:55 +02:00
|
|
|
let # beware: updates often break cups_filters build
|
2015-10-03 01:08:52 +02:00
|
|
|
version = "0.36.0"; # even major numbers are stable
|
|
|
|
sha256 = "13i440kv873wgmw50rs4d1v05cj0r7bqnghd70hp9vy44dxhdk4k";
|
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";
|
|
|
|
inherit sha256;
|
|
|
|
};
|
2013-04-21 22:15:38 +02:00
|
|
|
|
2015-10-28 18:56:00 +01:00
|
|
|
outputs = [ "dev" "out" ];
|
2015-07-26 13:43:49 +02:00
|
|
|
|
2015-04-02 16:50:37 +02:00
|
|
|
patches = [ ./datadir_env.patch ];
|
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-02-10 12:07:15 +01:00
|
|
|
[ zlib freetype fontconfig libjpeg ]
|
|
|
|
++ optionals (!minimal) [ cairo lcms curl openjpeg ]
|
2015-04-02 16:50:37 +02:00
|
|
|
++ optional qt4Support qt4
|
2015-09-27 16:59:32 +02:00
|
|
|
++ optional qt5Support qtbase;
|
2013-04-21 22:15:38 +02:00
|
|
|
|
2015-04-02 16:50:37 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig libiconv ] ++ libintlOrEmpty;
|
2013-04-18 20:54:47 +02:00
|
|
|
|
2015-09-17 17:54:32 +02:00
|
|
|
configureFlags = with lib;
|
2015-04-02 16:50:37 +02:00
|
|
|
[
|
2015-04-01 22:33:55 +02:00
|
|
|
"--enable-xpdf-headers"
|
|
|
|
"--enable-libcurl"
|
|
|
|
"--enable-zlib"
|
2015-04-02 16:50:37 +02:00
|
|
|
]
|
2016-02-10 12:07:15 +01:00
|
|
|
++ optionals minimal [
|
|
|
|
"--disable-poppler-glib" "--disable-poppler-cpp"
|
|
|
|
"--disable-libopenjpeg" "--disable-libcurl"
|
|
|
|
]
|
|
|
|
++ optional (!utils) "--disable-utils" ;
|
2008-07-17 17:02:57 +02:00
|
|
|
|
2015-04-02 16:50:37 +02:00
|
|
|
enableParallelBuilding = true;
|
2011-07-11 15:04:38 +02:00
|
|
|
|
2015-09-17 17:54:32 +02:00
|
|
|
meta = with lib; {
|
2015-04-02 16:50:37 +02:00
|
|
|
homepage = http://poppler.freedesktop.org/;
|
|
|
|
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
|
|
|
}
|