diff options
author | Florian Pelz <pelzflorian@pelzflorian.de> | 2024-11-03 15:14:51 +0100 |
---|---|---|
committer | Florian Pelz <pelzflorian@pelzflorian.de> | 2024-11-20 16:02:12 +0100 |
commit | a6b497441110b5a0b6223e122380a4954fde1ed9 (patch) | |
tree | dc3fcb1c05b7e03228e416f4d23708aec7555e79 /gnu | |
parent | d2475833e4ca8238a8254b774a94bd8d973e8cb5 (diff) |
gnu: info-reader: Inherit from texinfo-7.
Otherwise `LC_ALL=pt_BR.utf8 info` crashes.
* gnu/packages/texinfo.scm (info-reader): Inherit from texinfo-7.
Change-Id: I9eb5873fbc115e0c45f96a16aa05dbca76b92c57
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/texinfo.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/texinfo.scm b/gnu/packages/texinfo.scm index 81afdaf7a7..cd474bb566 100644 --- a/gnu/packages/texinfo.scm +++ b/gnu/packages/texinfo.scm @@ -194,7 +194,9 @@ is on expressing the content semantically, avoiding physical markup commands.") (define-public info-reader ;; The idea of this package is to have the standalone Info reader without ;; the dependency on Perl that 'makeinfo' drags. - (package/inherit texinfo + ;; Texinfo version must be at least 7.0, which fixed crashes in a pt_BR + ;; locale; see <https://git.savannah.gnu.org/cgit/texinfo.git/plain/NEWS>. + (package/inherit texinfo-7 (name "info-reader") (arguments `(,@(substitute-keyword-arguments (package-arguments texinfo) |