diff options
Diffstat (limited to 'gnu/packages/readline.scm')
-rw-r--r-- | gnu/packages/readline.scm | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/gnu/packages/readline.scm b/gnu/packages/readline.scm index 9aeb7d0e7e..5920f1c8e1 100644 --- a/gnu/packages/readline.scm +++ b/gnu/packages/readline.scm @@ -78,7 +78,7 @@ (search-patches "readline-link-ncurses.patch"))) (patch-flags '("-p0")))) (build-system gnu-build-system) - (propagated-inputs `(("ncurses" ,ncurses))) + (propagated-inputs (list ncurses)) (arguments `(#:configure-flags (list (string-append "LDFLAGS=-Wl,-rpath -Wl," (assoc-ref %build-inputs "ncurses") @@ -155,11 +155,9 @@ comfortable for anyone.") (base32 "1irlcdvj1ddxkfzwa7l2djxgp5xbqch9vaajk2s32x1h5cxl1f5r")))) (build-system gnu-build-system) (native-inputs - `(("autoconf" ,autoconf) - ("automake" ,automake) - ("perl" ,perl))) + (list autoconf automake perl)) (inputs - `(("readline" ,readline))) + (list readline)) (synopsis "Wrapper to allow the editing of keyboard commands") (description "Rlwrap is a 'readline wrapper', a small utility that uses the GNU |