mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-28 00:24:18 +00:00
4f0dadbf38
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
129 lines
2.8 KiB
Nix
129 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)
|
|
];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
cp -r 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}
|
|
)
|