help2man: update from 1.44.1 to 1.46.1 and add myself as a maintainer

This commit is contained in:
Pascal Wittmann 2014-08-30 23:59:07 +02:00
parent 3182cf00ff
commit 408832ac67

View File

@ -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 ];
};
}