summary refs log tree commit diff
path: root/pkgs/tools/graphics/wkhtmltopdf-bin/default.nix
blob: 3c2b446a8e1c7432e45431791ea647caee1b294d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{ stdenv, lib, fetchurl, wkhtmltopdf, xar, cpio }:

stdenv.mkDerivation rec {

  pname = "wkhtmltopdf-bin";
  version = "0.12.6-1";
  sha256 = "1db59kdprzpmvdj1bg47lmfgi3zlvzvqif11sbym9hw61xy6gp3d";
  src = fetchurl {
    url =
      "https://github.com/wkhtmltopdf/packaging/releases/download/${version}/wkhtmltox-${version}.macos-cocoa.pkg";
    inherit sha256;
  };

  buildInputs = [ xar cpio ];

  unpackPhase = ''
    xar -xf $src
    zcat Payload | cpio -i
    tar -xf usr/local/share/wkhtmltox-installer/wkhtmltox.tar.gz
  '';

  installPhase = ''
    mkdir -p $out
    cp -r bin include lib share $out/
  '';

  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 ];
    platforms = [ "x86_64-darwin" ];
  };
}