Merge #34541: poppler: 0.56.0 -> 0.62.0
This commit is contained in:
commit
2dd10ea013
@ -1,18 +1,14 @@
|
|||||||
{ fetchurl, stdenv }:
|
{ fetchurl, stdenv, cmake, ninja }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "poppler-data-0.4.7";
|
name = "poppler-data-0.4.8";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://poppler.freedesktop.org/${name}.tar.gz";
|
url = "http://poppler.freedesktop.org/${name}.tar.gz";
|
||||||
sha256 = "1pm7wg6xqj4sppb5az4pa7psfdk4yxxkw52j85bm9fksibcb0lp7";
|
sha256 = "0wi8yyynladny51r4q53z7ygh7y491ayp8nqqv6wqqzjc60s35hh";
|
||||||
};
|
};
|
||||||
|
|
||||||
postPatch = ''
|
nativeBuildInputs = [ cmake ninja ];
|
||||||
sed -i 's,$(datadir)/pkgconfig,$(prefix)/lib/pkgconfig,g' Makefile
|
|
||||||
'';
|
|
||||||
|
|
||||||
installFlags = [ "prefix=$(out)" ];
|
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = https://poppler.freedesktop.org/;
|
homepage = https://poppler.freedesktop.org/;
|
||||||
|
@ -1,24 +1,22 @@
|
|||||||
{ stdenv, lib, fetchurl, fetchpatch, pkgconfig, libiconv, libintlOrEmpty
|
{ stdenv, lib, fetchurl, cmake, ninja, pkgconfig, libiconv, libintlOrEmpty
|
||||||
, zlib, curl, cairo, freetype, fontconfig, lcms, libjpeg, openjpeg
|
, zlib, curl, cairo, freetype, fontconfig, lcms, libjpeg, openjpeg
|
||||||
, withData ? true, poppler_data
|
, withData ? true, poppler_data
|
||||||
, qt4Support ? false, qt4 ? null
|
|
||||||
, qt5Support ? false, qtbase ? null
|
, qt5Support ? false, qtbase ? null
|
||||||
, introspectionSupport ? false, gobjectIntrospection ? null
|
, introspectionSupport ? false, gobjectIntrospection ? null
|
||||||
, utils ? false
|
, utils ? false
|
||||||
, minimal ? false, suffix ? "glib"
|
, minimal ? false, suffix ? "glib"
|
||||||
, hostPlatform
|
|
||||||
}:
|
}:
|
||||||
|
|
||||||
let # beware: updates often break cups-filters build
|
let # beware: updates often break cups-filters build
|
||||||
version = "0.56.0";
|
version = "0.62.0";
|
||||||
sha256 = "0wviayidfv2ix2ql0d4nl9r1ia6qi5kc1nybd9vjx27dk7gvm7c6";
|
mkFlag = optset: flag: "-DENABLE_${flag}=${if optset then "on" else "off"}";
|
||||||
in
|
in
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "poppler-${suffix}-${version}";
|
name = "poppler-${suffix}-${version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "${meta.homepage}/poppler-${version}.tar.xz";
|
url = "${meta.homepage}/poppler-${version}.tar.xz";
|
||||||
inherit sha256;
|
sha256 = "1ii9ly1pngyvs0aiq2wxpya08hidpl54y7nsb8b1vxnnskgp76jv";
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = [ "out" "dev" ];
|
outputs = [ "out" "dev" ];
|
||||||
@ -29,36 +27,19 @@ stdenv.mkDerivation rec {
|
|||||||
propagatedBuildInputs = with lib;
|
propagatedBuildInputs = with lib;
|
||||||
[ zlib freetype fontconfig libjpeg openjpeg ]
|
[ zlib freetype fontconfig libjpeg openjpeg ]
|
||||||
++ optionals (!minimal) [ cairo lcms curl ]
|
++ optionals (!minimal) [ cairo lcms curl ]
|
||||||
++ optional qt4Support qt4
|
|
||||||
++ optional qt5Support qtbase
|
++ optional qt5Support qtbase
|
||||||
++ optional introspectionSupport gobjectIntrospection;
|
++ optional introspectionSupport gobjectIntrospection;
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ cmake ninja pkgconfig ];
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [ "-DQT_NO_DEBUG" ];
|
cmakeFlags = [
|
||||||
|
(mkFlag true "XPDF_HEADERS")
|
||||||
CXXFLAGS = lib.optional qt5Support "-std=c++11";
|
(mkFlag (!minimal) "GLIB")
|
||||||
|
(mkFlag (!minimal) "CPP")
|
||||||
configureFlags = with lib;
|
(mkFlag (!minimal) "LIBCURL")
|
||||||
[
|
(mkFlag utils "UTILS")
|
||||||
"--enable-xpdf-headers"
|
(mkFlag qt5Support "QT5")
|
||||||
"--enable-libcurl"
|
];
|
||||||
"--enable-zlib"
|
|
||||||
"--enable-build-type=release"
|
|
||||||
]
|
|
||||||
++ optionals minimal [
|
|
||||||
"--disable-poppler-glib" "--disable-poppler-cpp"
|
|
||||||
"--disable-libcurl"
|
|
||||||
]
|
|
||||||
++ optional (!utils) "--disable-utils"
|
|
||||||
++ optional introspectionSupport "--enable-introspection";
|
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
|
||||||
|
|
||||||
crossAttrs.postPatch =
|
|
||||||
# there are tests using `strXXX_s` functions that are missing apparently
|
|
||||||
stdenv.lib.optionalString (hostPlatform.libc or null == "msvcrt")
|
|
||||||
"sed '/^SUBDIRS =/s/ test / /' -i Makefile.in";
|
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = https://poppler.freedesktop.org/;
|
homepage = https://poppler.freedesktop.org/;
|
||||||
|
44
pkgs/development/libraries/poppler/qt4.nix
Normal file
44
pkgs/development/libraries/poppler/qt4.nix
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
# TODO: get rid of this (https://github.com/NixOS/nixpkgs/issues/32883)
|
||||||
|
{ stdenv, lib, fetchurl, cmake, ninja, pkgconfig, libiconv, libintlOrEmpty
|
||||||
|
, zlib, curl, cairo, freetype, fontconfig, lcms2, libjpeg, openjpeg
|
||||||
|
, poppler_data, qt4
|
||||||
|
}:
|
||||||
|
|
||||||
|
let
|
||||||
|
# Last version supporting QT4
|
||||||
|
version = "0.61.1";
|
||||||
|
in
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "poppler-qt4-${version}";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "${meta.homepage}/poppler-${version}.tar.xz";
|
||||||
|
sha256 = "1afdrxxkaivvviazxkg5blsf2x24sjkfj92ib0d3q5pm8dihjrhj";
|
||||||
|
};
|
||||||
|
|
||||||
|
outputs = [ "out" "dev" ];
|
||||||
|
|
||||||
|
buildInputs = [ libiconv poppler_data ] ++ libintlOrEmpty;
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ zlib freetype fontconfig libjpeg openjpeg cairo lcms2 curl qt4 ];
|
||||||
|
|
||||||
|
nativeBuildInputs = [ cmake ninja pkgconfig ];
|
||||||
|
|
||||||
|
cmakeFlags = [
|
||||||
|
"-DENABLE_XPDF_HEADERS=on"
|
||||||
|
"-DENABLE_UTILS=off"
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = https://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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -10739,10 +10739,7 @@ with pkgs;
|
|||||||
suffix = "min";
|
suffix = "min";
|
||||||
};
|
};
|
||||||
|
|
||||||
poppler_qt4 = poppler.override {
|
poppler_qt4 = callPackage ../development/libraries/poppler/qt4.nix { };
|
||||||
qt4Support = true;
|
|
||||||
suffix = "qt4";
|
|
||||||
};
|
|
||||||
|
|
||||||
poppler_utils = poppler.override { suffix = "utils"; utils = true; };
|
poppler_utils = poppler.override { suffix = "utils"; utils = true; };
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user