diff options
author | Ludovic Courtès <ludo@gnu.org> | 2013-02-20 21:06:57 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2013-02-27 20:55:41 +0100 |
commit | 3c81cdf19c5da61f712e98f70cb187a089b0b900 (patch) | |
tree | 1fcf1a9b1010d28fb0bacfbec92705bce6522588 | |
parent | a8a0aa49f97769a08667c809b13df01ca4adad53 (diff) | |
download | patches-3c81cdf19c5da61f712e98f70cb187a089b0b900.tar patches-3c81cdf19c5da61f712e98f70cb187a089b0b900.tar.gz |
gnu: texinfo: Make Perl a propagated input.
* gnu/packages/texinfo.scm (texinfo): Make PERL a propagated input.
-rw-r--r-- | gnu/packages/texinfo.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/texinfo.scm b/gnu/packages/texinfo.scm index dba5cd2c2e..96016c053d 100644 --- a/gnu/packages/texinfo.scm +++ b/gnu/packages/texinfo.scm @@ -37,9 +37,10 @@ (base32 "1p34f68h9ggfj6ckgj0p62qlj7pmz3ha3vc91kh4hr44pnwm1pla")))) (build-system gnu-build-system) - (inputs `(("perl" ,perl) ; yuck! - ("ncurses" ,ncurses) + (inputs `(("ncurses" ,ncurses) ("xz" ,xz))) + ;; TODO: Remove Perl from here when 'patch-shebang' DTRT with /usr/bin/env. + (propagated-inputs `(("perl" ,perl))) ; yuck! (home-page "http://www.gnu.org/software/texinfo/") (synopsis "GNU Texinfo, the GNU documentation system") (description |