depot/third_party/nixpkgs/pkgs/tools/graphics/wkhtmltopdf/default.nix
Default email 159e378cbb Project import generated by Copybara.
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
2024-09-19 17:19:46 +03:00

123 lines
2.8 KiB
Nix

{ lib
, autoPatchelfHook
, cpio
, freetype
, zlib
, openssl
, fetchurl
, dpkg
, gcc-unwrapped
, libjpeg
, libpng
, fontconfig
, stdenv
, xar
, xorg
}:
let
darwinAttrs = rec {
version = "0.12.6-2";
src = fetchurl {
url = "https://github.com/wkhtmltopdf/packaging/releases/download/${version}/wkhtmltox-${version}.macos-cocoa.pkg";
sha256 = "sha256-gaZrd7UI/t6NvKpnEnIDdIN2Vos2c6F/ZhG21R6YlPg=";
};
nativeBuildInputs = [ xar cpio ];
unpackPhase = ''
xar -xf $src
zcat Payload | cpio -i
tar -xf usr/local/share/wkhtmltox-installer/wkhtmltox.tar.gz
'';
installPhase = ''
runHook preInstall
mkdir -p $out
cp -r bin include lib share $out/
runHook postInstall
'';
};
_linuxAttrs = {
nativeBuildInputs = [ dpkg autoPatchelfHook ];
buildInputs = [
xorg.libXext
xorg.libXrender
freetype
openssl
zlib
(lib.getLib fontconfig)
(lib.getLib gcc-unwrapped)
(lib.getLib libjpeg)
(lib.getLib libpng)
];
unpackPhase = ''
runHook preUnpack
mkdir pkg
dpkg-deb -x $src pkg
runHook postUnpack
'';
installPhase = ''
runHook preInstall
cp -r pkg/usr/local $out
runHook postInstall
'';
};
linuxAttrs.aarch64-linux = rec {
version = "0.12.6.1-3";
src = fetchurl {
url = "https://github.com/wkhtmltopdf/packaging/releases/download/${version}/wkhtmltox_${version}.bookworm_arm64.deb";
hash = "sha256-tmBhV7J8E+BE0Ku+ZwMB+I3k4Xgq/KT5wGpYF/PgOpw=";
};
} // _linuxAttrs;
linuxAttrs.x86_64-linux = rec {
version = "0.12.6.1-3";
src = fetchurl {
url = "https://github.com/wkhtmltopdf/packaging/releases/download/${version}/wkhtmltox_${version}.bookworm_amd64.deb";
hash = "sha256-mLoNFXtQ028jvQ3t9MCqKMewxQ/NzcVKpba7uoGjlB0=";
};
} // _linuxAttrs;
in
stdenv.mkDerivation ({
pname = "wkhtmltopdf";
dontStrip = true;
doInstallCheck = true;
installCheckPhase = ''
$out/bin/wkhtmltopdf --version
'';
meta = with lib; {
homepage = "https://wkhtmltopdf.org/";
description =
"Tools for rendering web pages to PDF or images (binary package)";
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; [ nbr kalbasit ];
platforms = [ "x86_64-darwin" "x86_64-linux" "aarch64-linux" ];
};
}
// lib.optionalAttrs (stdenv.hostPlatform.isDarwin) darwinAttrs
// lib.optionalAttrs (stdenv.hostPlatform.isLinux) linuxAttrs.${stdenv.system}
)