3445ab79a2
Packages that depend on Qt >= 5.7 must build using the C++11 standard.
72 lines
2.1 KiB
Nix
72 lines
2.1 KiB
Nix
{ stdenv, lib, fetchurl, fetchpatch, pkgconfig, libiconv, libintlOrEmpty
|
|
, zlib, curl, cairo, freetype, fontconfig, lcms, libjpeg, openjpeg
|
|
, minimal ? false
|
|
, qt4Support ? false, qt4 ? null
|
|
, qt5Support ? false, qtbase ? null
|
|
, utils ? false, suffix ? "glib"
|
|
}:
|
|
|
|
let # beware: updates often break cups_filters build
|
|
version = "0.43.0"; # even major numbers are stable
|
|
sha256 = "0mi4zf0pz3x3fx3ir7szz1n57nywgbpd4mp2r7mvf47f4rmf4867";
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
name = "poppler-${suffix}-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "${meta.homepage}/poppler-${version}.tar.xz";
|
|
inherit sha256;
|
|
};
|
|
|
|
outputs = [ "dev" "out" ];
|
|
|
|
patches = [ ./datadir_env.patch ];
|
|
|
|
# TODO: reduce propagation to necessary libs
|
|
propagatedBuildInputs = with lib;
|
|
[ zlib freetype fontconfig libjpeg ]
|
|
++ optionals (!minimal) [ cairo lcms curl openjpeg ]
|
|
++ optional qt4Support qt4
|
|
++ optional qt5Support qtbase;
|
|
|
|
nativeBuildInputs = [ pkgconfig libiconv ] ++ libintlOrEmpty;
|
|
|
|
NIX_CFLAGS_COMPILE = [ "-DQT_NO_DEBUG" ];
|
|
|
|
# Any package depending on Qt >= 5.7 must build using the C++11 standard.
|
|
CXXFLAGS = lib.optional qt5Support "-std=c++11";
|
|
|
|
configureFlags = with lib;
|
|
[
|
|
"--enable-xpdf-headers"
|
|
"--enable-libcurl"
|
|
"--enable-zlib"
|
|
"--enable-build-type=release"
|
|
]
|
|
++ optionals minimal [
|
|
"--disable-poppler-glib" "--disable-poppler-cpp"
|
|
"--disable-libopenjpeg" "--disable-libcurl"
|
|
]
|
|
++ optional (!utils) "--disable-utils" ;
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
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";
|
|
|
|
meta = with lib; {
|
|
homepage = http://poppler.freedesktop.org/;
|
|
description = "A PDF rendering library";
|
|
|
|
longDescription = ''
|
|
Poppler is a PDF rendering library based on the xpdf-3.0 code base.
|
|
'';
|
|
|
|
license = licenses.gpl2;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ ttuegel ];
|
|
};
|
|
}
|