2015-04-01 21:33:55 +01:00
|
|
|
{ stdenv, fetchurl, fetchpatch, pkgconfig, libiconv, libintlOrEmpty
|
2013-06-29 15:07:15 +01:00
|
|
|
, zlib, curl, cairo, freetype, fontconfig, lcms, libjpeg, openjpeg
|
2015-04-02 15:50:37 +01:00
|
|
|
, qt4Support ? false, qt4 ? null, qt5Support ? false, qt5 ? null
|
|
|
|
, utils ? false, suffix ? "glib"
|
2011-07-11 14:04:38 +01:00
|
|
|
}:
|
2008-07-17 16:02:57 +01:00
|
|
|
|
2013-04-21 21:15:38 +01:00
|
|
|
let
|
2015-04-01 21:33:55 +01:00
|
|
|
version = "0.32.0"; # even major numbers are stable
|
|
|
|
sha256 = "162vfbvbz0frvqyk00ldsbl49h4bj8i8wn0ngfl30xg1lldy6qs9";
|
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-04-02 15:50:37 +01:00
|
|
|
patches = [ ./datadir_env.patch ];
|
2013-04-21 21:15:38 +01:00
|
|
|
|
2015-04-02 15:50:37 +01:00
|
|
|
propagatedBuildInputs = with stdenv.lib;
|
|
|
|
[ zlib cairo freetype fontconfig libjpeg lcms curl openjpeg ]
|
|
|
|
++ 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-04-02 15:50:37 +01:00
|
|
|
configureFlags =
|
|
|
|
[
|
2015-04-01 21:33:55 +01:00
|
|
|
"--enable-xpdf-headers"
|
|
|
|
"--enable-libcurl"
|
|
|
|
"--enable-zlib"
|
2015-04-02 15:50:37 +01:00
|
|
|
]
|
|
|
|
++ stdenv.lib.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-04-02 15:50:37 +01:00
|
|
|
meta = {
|
|
|
|
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-04-02 15:50:37 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ ttuegel ];
|
2015-01-19 17:12:04 +00:00
|
|
|
};
|
2015-04-02 15:50:37 +01:00
|
|
|
}
|