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