diff options
author | Ludovic Courtès <ludo@gnu.org> | 2015-10-03 12:31:21 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-10-03 14:36:12 +0200 |
commit | 1668dfcd37174af13636a85c80df2f833e867387 (patch) | |
tree | 7314213fa10cb57214fc12e25778a5b59bcba9a1 | |
parent | 57aff6476e3d4c9a2df5ea98f2caaed1472972de (diff) | |
download | guix-1668dfcd37174af13636a85c80df2f833e867387.tar.gz guix-1668dfcd37174af13636a85c80df2f833e867387.zip |
gnu: texinfo: Claim 'INFOPATH'.
Reported by Konrad Hinsen <konrad.hinsen@fastmail.net>.
* gnu/packages/texinfo.scm (texinfo)[native-search-paths]: New field.
-rw-r--r-- | gnu/packages/texinfo.scm | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gnu/packages/texinfo.scm b/gnu/packages/texinfo.scm index 92bd9471dd..591fb1f298 100644 --- a/gnu/packages/texinfo.scm +++ b/gnu/packages/texinfo.scm @@ -45,6 +45,13 @@ (inputs `(("ncurses" ,ncurses) ("xz" ,xz) ("perl" ,perl))) + + (native-search-paths + ;; This is the variable used by the standalone Info reader. + (list (search-path-specification + (variable "INFOPATH") + (files '("share/info"))))) + (home-page "http://www.gnu.org/software/texinfo/") (synopsis "The GNU documentation format") (description |