nixpkgs/pkgs/tools/graphics/wkhtmltopdf/default.nix
Orivej Desh 7375e49f58 wkhtmltopdf: fix build
by not appling parallel-build.patch from
a88146d308
2017-11-29 10:19:00 +00:00

148 lines
3.7 KiB
Nix

{ stdenv, fetchFromGitHub, fetchpatch, qt4, fontconfig, freetype, libpng, zlib, libjpeg
, openssl, libX11, libXext, libXrender, overrideDerivation }:
stdenv.mkDerivation rec {
version = "0.12.4";
name = "wkhtmltopdf-${version}";
src = fetchFromGitHub {
owner = "wkhtmltopdf";
repo = "wkhtmltopdf";
rev = version;
sha256 = "09yzj9ylc6ci4a1qlhz60cgxi1nm9afwjrjxfikf8wwjd3i24vp2";
};
wkQt = overrideDerivation qt4 (deriv: {
name = "qt-mod-4.8.7";
enableParallelBuilding = true;
src = fetchFromGitHub {
owner = "wkhtmltopdf";
repo = "qt";
rev = "fe194f9dac0b515757392a18f7fc9527c91d45ab"; # From git submodule spec in wkhtml repo.
sha256 = "1j2ld2bfacnn3vm2l1870v55sj82bq4y8zkawmlx2y5j63d8vr23";
};
postConfigure = ""; # The patch "parallel-build.patch" does not apply.
configureFlags =
''
-dbus-linked
-glib
-no-separate-debug-info
-openssl-linked
-qdbus
-v
''
+ # This is taken from the wkhtml build script that we don't run
''
-confirm-license
-exceptions
-fast
-graphicssystem raster
-iconv
-largefile
-no-3dnow
-no-accessibility
-no-audio-backend
-no-avx
-no-cups
-no-dbus
-no-declarative
-no-glib
-no-gstreamer
-no-gtkstyle
-no-icu
-no-javascript-jit
-no-libmng
-no-libtiff
-nomake demos
-nomake docs
-nomake examples
-nomake tests
-nomake tools
-nomake translations
-no-mitshm
-no-mmx
-no-multimedia
-no-nas-sound
-no-neon
-no-nis
-no-opengl
-no-openvg
-no-pch
-no-phonon
-no-phonon-backend
-no-qt3support
-no-rpath
-no-scripttools
-no-sm
-no-sql-ibase
-no-sql-mysql
-no-sql-odbc
-no-sql-psql
-no-sql-sqlite
-no-sql-sqlite2
-no-sse
-no-sse2
-no-sse3
-no-sse4.1
-no-sse4.2
-no-ssse3
-no-stl
-no-xcursor
-no-xfixes
-no-xinerama
-no-xinput
-no-xkb
-no-xrandr
-no-xshape
-no-xsync
-opensource
-release
-static
-system-libjpeg
-system-libpng
-system-zlib
-webkit
-xmlpatterns
'';
});
buildInputs = [
wkQt fontconfig freetype libpng zlib libjpeg openssl
libX11 libXext libXrender
];
prePatch = ''
for f in src/image/image.pro src/pdf/pdf.pro ; do
substituteInPlace $f --replace '$(INSTALL_ROOT)' ""
done
'';
patches = [
(fetchpatch {
name = "make-0.12.4-compile.patch";
url = "https://github.com/efx/aports/raw/eb9f8e6bb9a488460929db747b15b8fceddd7abd/testing/wkhtmltopdf/10-patch1.patch";
sha256 = "1c136jz0klr2rmhmy13gdbgsgkpjfdp2sif8bnw8d23mr9pym3s1";
})
];
configurePhase = "qmake wkhtmltopdf.pro INSTALLBASE=$out";
enableParallelBuilding = true;
meta = with stdenv.lib; {
homepage = http://wkhtmltopdf.org/;
description = "Tools for rendering web pages to PDF or images";
longDescription = ''
wkhtmltopdf and wkhtmltoimage are open source (LGPL) command line tools
to render HTML into PDF and various image formats using the QT Webkit
rendering engine. These run entirely "headless" and do not require a
display or display service.
There is also a C library, if you're into that kind of thing.
'';
license = licenses.gpl3Plus;
maintainers = with maintainers; [ jb55 ];
platforms = with platforms; linux;
};
}