summary refs log tree commit diff
path: root/pkgs/development/tools
diff options
context:
space:
mode:
authorPascal Wittmann <mail@pascal-wittmann.de>2014-08-30 23:59:07 +0200
committerPascal Wittmann <mail@pascal-wittmann.de>2014-08-30 23:59:35 +0200
commit408832ac67ed9b6d517cc4395749cc488038f049 (patch)
tree745c31d5440fbd33fe7f59424fce3b5d4198d327 /pkgs/development/tools
parent3182cf00ff7da0a6102d981c14d750ddaff12a65 (diff)
downloadnixlib-408832ac67ed9b6d517cc4395749cc488038f049.tar
nixlib-408832ac67ed9b6d517cc4395749cc488038f049.tar.gz
nixlib-408832ac67ed9b6d517cc4395749cc488038f049.tar.bz2
nixlib-408832ac67ed9b6d517cc4395749cc488038f049.tar.lz
nixlib-408832ac67ed9b6d517cc4395749cc488038f049.tar.xz
nixlib-408832ac67ed9b6d517cc4395749cc488038f049.tar.zst
nixlib-408832ac67ed9b6d517cc4395749cc488038f049.zip
help2man: update from 1.44.1 to 1.46.1 and add myself as a maintainer
Diffstat (limited to 'pkgs/development/tools')
-rw-r--r--pkgs/development/tools/misc/help2man/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/development/tools/misc/help2man/default.nix b/pkgs/development/tools/misc/help2man/default.nix
index c4ba7073889d..c8cff1162821 100644
--- a/pkgs/development/tools/misc/help2man/default.nix
+++ b/pkgs/development/tools/misc/help2man/default.nix
@@ -1,11 +1,11 @@
 { stdenv, fetchurl, perl, gettext, LocaleGettext, makeWrapper }:
 
 stdenv.mkDerivation rec {
-  name = "help2man-1.44.1";
+  name = "help2man-1.46.1";
 
   src = fetchurl {
     url = "mirror://gnu/help2man/${name}.tar.xz";
-    sha256 = "1yyyfw9zrfdvslnv91bnhyqmazwx243wmkc9wdaz888rfx36ipi2";
+    sha256 = "0iqwb3qirl7rp1wwpbh01q89qxvi4h3bc73wi03av6hl4sh05z9x";
   };
 
   buildInputs = [ makeWrapper perl gettext LocaleGettext ];
@@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
     '';
 
 
-  meta = {
+  meta = with stdenv.lib; {
     description = "Generate man pages from `--help' output";
 
     longDescription =
@@ -28,8 +28,8 @@ stdenv.mkDerivation rec {
 
     homepage = http://www.gnu.org/software/help2man/;
 
-    license = stdenv.lib.licenses.gpl3Plus;
-    platforms = stdenv.lib.platforms.gnu;         # arbitrary choice
-    maintainers = [ stdenv.lib.maintainers.ludo ];
+    license = licenses.gpl3Plus;
+    platforms = platforms.gnu;         # arbitrary choice
+    maintainers = with maintainers; [ ludo pSub ];
   };
 }