summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2022-11-09 16:18:34 +0100
committerLudovic Courtès <ludo@gnu.org>2022-11-09 23:59:41 +0100
commit26e39b1258801051352fcfb97313cf1541e80c2c (patch)
treed1afe0121233911586dea9fd94059b0e8e7dbfe4 /gnu
parenta827905302705ac2d7e75a24e9b796a59889403b (diff)
gnu: texinfo: Add version 7.0.
* gnu/packages/texinfo.scm (texinfo-7): New variable.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/texinfo.scm14
1 files changed, 13 insertions, 1 deletions
diff --git a/gnu/packages/texinfo.scm b/gnu/packages/texinfo.scm
index 8cf90855a38..0deec8fb3ac 100644
--- a/gnu/packages/texinfo.scm
+++ b/gnu/packages/texinfo.scm
@@ -1,5 +1,5 @@
1;;; GNU Guix --- Functional package management for GNU 1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2012, 2013, 2015, 2016, 2017, 2019 Ludovic Courtès <ludo@gnu.org> 2;;; Copyright © 2012, 2013, 2015, 2016, 2017, 2019, 2022 Ludovic Courtès <ludo@gnu.org>
3;;; Copyright © 2014, 2016 Eric Bavier <bavier@member.fsf.org> 3;;; Copyright © 2014, 2016 Eric Bavier <bavier@member.fsf.org>
4;;; Copyright © 2015 Mark H Weaver <mhw@netris.org> 4;;; Copyright © 2015 Mark H Weaver <mhw@netris.org>
5;;; Copyright © 2017, 2019 Efraim Flashner <efraim@flashner.co.il> 5;;; Copyright © 2017, 2019 Efraim Flashner <efraim@flashner.co.il>
@@ -95,6 +95,18 @@ their source and the command-line Info reader. The emphasis of the language
95is on expressing the content semantically, avoiding physical markup commands.") 95is on expressing the content semantically, avoiding physical markup commands.")
96 (license gpl3+))) 96 (license gpl3+)))
97 97
98(define-public texinfo-7
99 (package
100 (inherit texinfo)
101 (version "7.0")
102 (source (origin
103 (method url-fetch)
104 (uri (string-append "mirror://gnu/texinfo/texinfo-"
105 version ".tar.xz"))
106 (sha256
107 (base32
108 "1q73zd0bm7zjamc5ssf329v7fndd8dqv0d7fii6s1rqwaf14nx10"))))))
109
98(define-public texinfo-5 110(define-public texinfo-5
99 (package (inherit texinfo) 111 (package (inherit texinfo)
100 (version "5.2") 112 (version "5.2")