summary refs log tree commit diff
path: root/pkgs/tools/graphics/wkhtmltopdf
diff options
context:
space:
mode:
authorWilliam Casarin <bill@casarin.me>2015-10-27 17:20:26 -0700
committerWilliam Casarin <bill@casarin.me>2015-10-27 17:20:26 -0700
commitfeb1e8f0464f58da2e1f54e97bf08cfcaab70e40 (patch)
tree39c2e16c777f1fe257ed00e161ba2d3f473ac718 /pkgs/tools/graphics/wkhtmltopdf
parent9838265ab359ac3ac0f6a5dbcbf414369178c23e (diff)
downloadnixpkgs-feb1e8f0464f58da2e1f54e97bf08cfcaab70e40.tar
nixpkgs-feb1e8f0464f58da2e1f54e97bf08cfcaab70e40.tar.gz
nixpkgs-feb1e8f0464f58da2e1f54e97bf08cfcaab70e40.tar.bz2
nixpkgs-feb1e8f0464f58da2e1f54e97bf08cfcaab70e40.tar.lz
nixpkgs-feb1e8f0464f58da2e1f54e97bf08cfcaab70e40.tar.xz
nixpkgs-feb1e8f0464f58da2e1f54e97bf08cfcaab70e40.tar.zst
nixpkgs-feb1e8f0464f58da2e1f54e97bf08cfcaab70e40.zip
wkhtmltopdf: add myself as maintainer
Diffstat (limited to 'pkgs/tools/graphics/wkhtmltopdf')
-rw-r--r--pkgs/tools/graphics/wkhtmltopdf/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/tools/graphics/wkhtmltopdf/default.nix b/pkgs/tools/graphics/wkhtmltopdf/default.nix
index 295bea4517f..89ea0e94444 100644
--- a/pkgs/tools/graphics/wkhtmltopdf/default.nix
+++ b/pkgs/tools/graphics/wkhtmltopdf/default.nix
@@ -69,12 +69,12 @@ stdenv.mkDerivation rec {
     ];
 
   configurePhase = "qmake wkhtmltopdf.pro INSTALLBASE=$out";
-  
+
   patches = [ ./makefix.patch ];
 
   enableParallelBuilding = true;
 
-  meta = {
+  meta = with stdenv.lib; {
     homepage = http://wkhtmltopdf.org/;
     description = "Tools for rendering web pages to PDF or images";
     longDescription = ''
@@ -85,6 +85,7 @@ stdenv.mkDerivation rec {
 
       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 ];
   };
 }