diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2020-04-05 02:04:39 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2020-04-05 02:04:39 +0200 |
commit | f9f3ac4eda0206b3d42a1e907c59723b69ffe7a8 (patch) | |
tree | 11b9b5f3adcadad50b5eff00aa89f2c2b4d95a87 | |
parent | 376ba0ce570993cf6cdbed19596a245826308382 (diff) | |
download | guix-f9f3ac4eda0206b3d42a1e907c59723b69ffe7a8.tar guix-f9f3ac4eda0206b3d42a1e907c59723b69ffe7a8.tar.gz |
gnu: Add texi2html-1.82.
* gnu/packages/texinfo.scm (texi2html-1.82): New variable.
-rw-r--r-- | gnu/packages/texinfo.scm | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/gnu/packages/texinfo.scm b/gnu/packages/texinfo.scm index 24ad1d3b4f..4042353a2d 100644 --- a/gnu/packages/texinfo.scm +++ b/gnu/packages/texinfo.scm @@ -4,6 +4,7 @@ ;;; Copyright © 2015 Mark H Weaver <mhw@netris.org> ;;; Copyright © 2017, 2019 Efraim Flashner <efraim@flashner.co.il> ;;; Copyright © 2019 Ricardo Wurmus <rekado@elephly.net> +;;; Copyright © 2020 Nicolas Goaziou <mail@nicolasgoaziou.fr> ;;; ;;; This file is part of GNU Guix. ;;; @@ -188,6 +189,18 @@ Texi2HTML.") ;; Files in /lib under lgpl2.1+ and x11 (license gpl2+))) +(define-public texi2html-1.82 + (package + (inherit texi2html) + (version "1.82") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://savannah/texi2html/" + "texi2html-" version ".tar.bz2")) + (sha256 + (base32 "1wdli2szkgm3l0vx8rf6lylw0b0m47dlz9iy004n928nqkzix76n")))))) + (define-public pinfo (package (name "pinfo") |