wkhtmltopdf: add myself as maintainer

This commit is contained in:
William Casarin 2015-10-27 17:20:26 -07:00
parent 9838265ab3
commit feb1e8f046
1 changed files with 4 additions and 3 deletions

View File

@ -74,7 +74,7 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true; enableParallelBuilding = true;
meta = { meta = with stdenv.lib; {
homepage = http://wkhtmltopdf.org/; homepage = http://wkhtmltopdf.org/;
description = "Tools for rendering web pages to PDF or images"; description = "Tools for rendering web pages to PDF or images";
longDescription = '' longDescription = ''
@ -85,6 +85,7 @@ stdenv.mkDerivation rec {
There is also a C library, if you're into that kind of thing. There is also a C library, if you're into that kind of thing.
''; '';
license = stdenv.lib.licenses.gpl3Plus; license = licenses.gpl3Plus;
maintainers = with maintainers; [ jb55 ];
}; };
} }