* Added wkhtmltopdf.

svn path=/nixpkgs/trunk/; revision=31604
This commit is contained in:
Eelco Dolstra 2012-01-17 11:04:14 +00:00
parent 729aea56b5
commit dc9830111b
2 changed files with 24 additions and 1 deletions

View file

@ -0,0 +1,22 @@
{ stdenv, fetchurl, qt4 }:
stdenv.mkDerivation rec {
name = "wkhtmltopdf-0.11.0_rc1";
src = fetchurl {
url = "http://wkhtmltopdf.googlecode.com/files/${name}.tar.bz2";
sha1 = "db03922d281856e503b3d562614e3936285728c7";
};
buildInputs = [ qt4 ];
configurePhase = "qmake wkhtmltopdf.pro INSTALLBASE=$out";
enableParallelBuilding = true;
meta = {
homepage = http://code.google.com/p/wkhtmltopdf/;
description = "Tools for rendering web pages to PDF or images";
license = stdenv.lib.licenses.gpl3Plus;
};
}

View file

@ -1287,7 +1287,6 @@ let
ripmime = callPackage ../tools/networking/ripmime {};
rsnapshot = callPackage ../tools/backup/rsnapshot {
# For the `logger' command, we can use either `utillinux' or
# GNU Inetutils. The latter is more portable.
logger = inetutils;
@ -1557,6 +1556,8 @@ let
wicd = callPackage ../tools/networking/wicd { };
wkhtmltopdf = callPackage ../tools/graphics/wkhtmltopdf { };
wv = callPackage ../tools/misc/wv { };
wv2 = callPackage ../tools/misc/wv2 { };