texinfo: 6.0 -> 6.1

This commit is contained in:
Rahul Gopinath 2016-07-04 01:13:08 -07:00 committed by Vladimír Čunát
parent cd04b83605
commit cf5ebca53e
2 changed files with 4 additions and 3 deletions

View file

@ -3,11 +3,11 @@
with stdenv.lib;
stdenv.mkDerivation rec {
name = "texinfo-6.0";
name = "texinfo-6.1";
src = fetchurl {
url = "mirror://gnu/texinfo/${name}.tar.xz";
sha256 = "1r3i6jyynn6ab45fxw5bms8mflk9ry4qpj6gqyry72vfd5c47fhi";
sha256 = "1ll3d0l8izygdxqz96wfr2631kxahifwdknpgsx2090vw963js5c";
};
buildInputs = [ perl xz ]
@ -30,6 +30,7 @@ stdenv.mkDerivation rec {
description = "The GNU documentation system";
license = licenses.gpl3Plus;
platforms = platforms.all;
maintainers = [ maintainers.vrthra ];
longDescription = ''
Texinfo is the official documentation format of the GNU project.

View file

@ -6625,7 +6625,7 @@ in
texinfo413 = callPackage ../development/tools/misc/texinfo/4.13a.nix { };
texinfo4 = texinfo413;
texinfo5 = callPackage ../development/tools/misc/texinfo/5.2.nix { };
texinfo6 = callPackage ../development/tools/misc/texinfo/6.0.nix { };
texinfo6 = callPackage ../development/tools/misc/texinfo/6.1.nix { };
texinfo = texinfo6;
texinfoInteractive = appendToName "interactive" (
texinfo.override { interactive = true; }