nixpkgs/pkgs/tools/graphics/wkhtmltopdf/default.nix

134 lines
3.2 KiB
Nix
Raw Normal View History

2016-04-07 05:12:08 +00:00
{ stdenv, fetchFromGitHub, qt4, fontconfig, freetype, libpng, zlib, libjpeg
, openssl, libX11, libXext, libXrender, overrideDerivation }:
stdenv.mkDerivation rec {
2016-04-07 05:12:08 +00:00
version = "0.12.3.2";
name = "wkhtmltopdf-${version}";
2016-04-07 05:12:08 +00:00
src = fetchFromGitHub {
owner = "wkhtmltopdf";
repo = "wkhtmltopdf";
rev = "${version}";
sha256 = "1yyqjhxv4dvpkad79scs7xdx4iz8jpyidr9ya86k3zpfyvh4gq3s";
};
wkQt = overrideDerivation qt4 (deriv: {
2016-04-07 05:12:08 +00:00
name = "qt-mod-4.8.7";
2015-10-28 00:13:55 +00:00
enableParallelBuilding = true;
2016-04-07 05:12:08 +00:00
src = fetchFromGitHub {
owner = "wkhtmltopdf";
repo = "qt";
rev = "fe194f9dac0b515757392a18f7fc9527c91d45ab"; # From git submodule spec in wkhtml repo.
sha256 = "1j2ld2bfacnn3vm2l1870v55sj82bq4y8zkawmlx2y5j63d8vr23";
};
configureFlags =
''
2016-04-07 05:12:08 +00:00
-dbus-linked
-glib
-no-separate-debug-info
-openssl-linked
-qdbus
-v
''
+ # This is taken from the wkhtml build script that we don't run
''
2016-04-07 05:12:08 +00:00
-confirm-license
-exceptions
2016-04-07 05:12:08 +00:00
-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
2016-04-07 05:12:08 +00:00
-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
2016-04-07 05:12:08 +00:00
-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
2016-04-07 05:12:08 +00:00
-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
2016-04-07 05:12:08 +00:00
libX11 libXext libXrender
];
configurePhase = "qmake wkhtmltopdf.pro INSTALLBASE=$out";
2015-10-28 00:20:26 +00:00
patches = [ ./makefix.patch ];
enableParallelBuilding = true;
2015-10-28 00:20:26 +00:00
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.
'';
2015-10-28 00:20:26 +00:00
license = licenses.gpl3Plus;
maintainers = with maintainers; [ jb55 ];
platforms = with platforms; linux;
};
}