summary refs log tree commit diff
path: root/pkgs/tools/graphics
diff options
context:
space:
mode:
authorNick Braga <nick.braga@bookbub.com>2021-11-03 15:57:08 -0400
committerYt <raphael@megzari.com>2022-03-18 23:14:41 -0400
commit06f09c3d3ffae1249b9ba29cf307c2b9cb6a95ea (patch)
tree9e06437f62c51566b50cf2a46932d3b420ad552a /pkgs/tools/graphics
parentc621d2cfdbd3c61e0343076ca96c9eaa72117788 (diff)
downloadnixpkgs-06f09c3d3ffae1249b9ba29cf307c2b9cb6a95ea.tar
nixpkgs-06f09c3d3ffae1249b9ba29cf307c2b9cb6a95ea.tar.gz
nixpkgs-06f09c3d3ffae1249b9ba29cf307c2b9cb6a95ea.tar.bz2
nixpkgs-06f09c3d3ffae1249b9ba29cf307c2b9cb6a95ea.tar.lz
nixpkgs-06f09c3d3ffae1249b9ba29cf307c2b9cb6a95ea.tar.xz
nixpkgs-06f09c3d3ffae1249b9ba29cf307c2b9cb6a95ea.tar.zst
nixpkgs-06f09c3d3ffae1249b9ba29cf307c2b9cb6a95ea.zip
wkhtmltopdf-bin: init at 0.12.6-1
Diffstat (limited to 'pkgs/tools/graphics')
-rw-r--r--pkgs/tools/graphics/wkhtmltopdf-bin/default.nix51
1 files changed, 51 insertions, 0 deletions
diff --git a/pkgs/tools/graphics/wkhtmltopdf-bin/default.nix b/pkgs/tools/graphics/wkhtmltopdf-bin/default.nix
new file mode 100644
index 00000000000..3c2b446a8e1
--- /dev/null
+++ b/pkgs/tools/graphics/wkhtmltopdf-bin/default.nix
@@ -0,0 +1,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" ];
+  };
+}