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

48 lines
1.4 KiB
Nix
Raw Normal View History

{ mkDerivation, lib, fetchFromGitHub, qtwebkit, qtsvg, qtxmlpatterns
, fontconfig, freetype, libpng, zlib, libjpeg
2018-09-08 20:32:24 +00:00
, openssl, libX11, libXext, libXrender }:
mkDerivation rec {
2018-09-08 20:32:24 +00:00
version = "0.12.5";
pname = "wkhtmltopdf";
2016-04-07 05:12:08 +00:00
src = fetchFromGitHub {
owner = "wkhtmltopdf";
repo = "wkhtmltopdf";
2017-05-11 05:16:01 +00:00
rev = version;
2018-09-08 20:32:24 +00:00
sha256 = "0i6b6z3f4szspbbi23qr3hv22j9bhmcj7c1jizr7y0ra43mrgws1";
};
2017-05-11 05:16:01 +00:00
buildInputs = [
2018-09-08 20:32:24 +00:00
fontconfig freetype libpng zlib libjpeg openssl
2017-05-11 05:16:01 +00:00
libX11 libXext libXrender
qtwebkit qtsvg qtxmlpatterns
2017-05-11 05:16:01 +00:00
];
2017-05-11 05:16:01 +00:00
prePatch = ''
for f in src/image/image.pro src/pdf/pdf.pro ; do
substituteInPlace $f --replace '$(INSTALL_ROOT)' ""
done
'';
configurePhase = "qmake wkhtmltopdf.pro INSTALLBASE=$out";
enableParallelBuilding = true;
meta = with lib; {
homepage = https://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;
};
}