2015-09-17 18:54:32 +03:00
|
|
|
{ stdenv, lib, fetchurl, fetchpatch, pkgconfig, libiconv, libintlOrEmpty
|
2013-06-29 18:07:15 +04:00
|
|
|
, zlib, curl, cairo, freetype, fontconfig, lcms, libjpeg, openjpeg
|
2016-08-02 02:06:10 +03:00
|
|
|
, minimal ? false
|
|
|
|
, qt4Support ? false, qt4 ? null
|
|
|
|
, qt5Support ? false, qtbase ? null
|
2015-04-02 17:50:37 +03:00
|
|
|
, utils ? false, suffix ? "glib"
|
2011-07-11 17:04:38 +04:00
|
|
|
}:
|
2008-07-17 19:02:57 +04:00
|
|
|
|
2015-07-21 21:53:55 +03:00
|
|
|
let # beware: updates often break cups_filters build
|
2016-05-04 00:40:55 +03:00
|
|
|
version = "0.43.0"; # even major numbers are stable
|
|
|
|
sha256 = "0mi4zf0pz3x3fx3ir7szz1n57nywgbpd4mp2r7mvf47f4rmf4867";
|
2015-04-02 17:50:37 +03:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "poppler-${suffix}-${version}";
|
2013-04-18 22:54:47 +04:00
|
|
|
|
2015-04-02 17:50:37 +03:00
|
|
|
src = fetchurl {
|
|
|
|
url = "${meta.homepage}/poppler-${version}.tar.xz";
|
|
|
|
inherit sha256;
|
|
|
|
};
|
2013-04-22 00:15:38 +04:00
|
|
|
|
2015-10-28 20:56:00 +03:00
|
|
|
outputs = [ "dev" "out" ];
|
2015-07-26 14:43:49 +03:00
|
|
|
|
2015-04-02 17:50:37 +03:00
|
|
|
patches = [ ./datadir_env.patch ];
|
2013-04-22 00:15:38 +04:00
|
|
|
|
2015-09-17 18:54:32 +03:00
|
|
|
# TODO: reduce propagation to necessary libs
|
|
|
|
propagatedBuildInputs = with lib;
|
2016-02-10 14:07:15 +03:00
|
|
|
[ zlib freetype fontconfig libjpeg ]
|
|
|
|
++ optionals (!minimal) [ cairo lcms curl openjpeg ]
|
2015-04-02 17:50:37 +03:00
|
|
|
++ optional qt4Support qt4
|
2015-09-27 17:59:32 +03:00
|
|
|
++ optional qt5Support qtbase;
|
2013-04-22 00:15:38 +04:00
|
|
|
|
2015-04-02 17:50:37 +03:00
|
|
|
nativeBuildInputs = [ pkgconfig libiconv ] ++ libintlOrEmpty;
|
2013-04-18 22:54:47 +04:00
|
|
|
|
2016-04-28 19:51:08 +03:00
|
|
|
NIX_CFLAGS_COMPILE = [ "-DQT_NO_DEBUG" ];
|
|
|
|
|
2016-08-02 02:06:10 +03:00
|
|
|
# Any package depending on Qt >= 5.7 must build using the C++11 standard.
|
|
|
|
CXXFLAGS = lib.optional qt5Support "-std=c++11";
|
|
|
|
|
2015-09-17 18:54:32 +03:00
|
|
|
configureFlags = with lib;
|
2015-04-02 17:50:37 +03:00
|
|
|
[
|
2015-04-01 23:33:55 +03:00
|
|
|
"--enable-xpdf-headers"
|
|
|
|
"--enable-libcurl"
|
|
|
|
"--enable-zlib"
|
2016-04-28 19:51:08 +03:00
|
|
|
"--enable-build-type=release"
|
2015-04-02 17:50:37 +03:00
|
|
|
]
|
2016-02-10 14:07:15 +03:00
|
|
|
++ optionals minimal [
|
|
|
|
"--disable-poppler-glib" "--disable-poppler-cpp"
|
|
|
|
"--disable-libopenjpeg" "--disable-libcurl"
|
|
|
|
]
|
|
|
|
++ optional (!utils) "--disable-utils" ;
|
2008-07-17 19:02:57 +04:00
|
|
|
|
2015-04-02 17:50:37 +03:00
|
|
|
enableParallelBuilding = true;
|
2011-07-11 17:04:38 +04:00
|
|
|
|
2016-02-10 14:08:23 +03:00
|
|
|
crossAttrs.postPatch =
|
|
|
|
# there are tests using `strXXX_s` functions that are missing apparently
|
|
|
|
stdenv.lib.optionalString (stdenv.cross.libc or null == "msvcrt")
|
|
|
|
"sed '/^SUBDIRS =/s/ test / /' -i Makefile.in";
|
|
|
|
|
2015-09-17 18:54:32 +03:00
|
|
|
meta = with lib; {
|
2015-04-02 17:50:37 +03:00
|
|
|
homepage = http://poppler.freedesktop.org/;
|
|
|
|
description = "A PDF rendering library";
|
2009-02-21 02:43:29 +03:00
|
|
|
|
2015-04-02 17:50:37 +03:00
|
|
|
longDescription = ''
|
|
|
|
Poppler is a PDF rendering library based on the xpdf-3.0 code base.
|
2014-04-24 12:52:42 +04:00
|
|
|
'';
|
2013-10-24 20:08:48 +04:00
|
|
|
|
2015-09-17 18:54:32 +03:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = with maintainers; [ ttuegel ];
|
2015-01-19 20:12:04 +03:00
|
|
|
};
|
2015-04-02 17:50:37 +03:00
|
|
|
}
|