mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
124 lines
2.8 KiB
Nix
124 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}
|
|
)
|