diff options
author | John Doe <dftxbs3e@free.fr> | 2020-12-01 02:15:20 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-12-01 02:37:52 +0100 |
commit | e76867e285710d06b319145e0acdb6208e1af811 (patch) | |
tree | b6d9f3455bb67f5615c2d88b05d8135a69cafa49 /gnu/packages | |
parent | 6b6efa84e0ce8ef940ed2c65f5834900f6cbc069 (diff) | |
download | guix-e76867e285710d06b319145e0acdb6208e1af811.tar.gz |
gnu: bc: Add readline support.
The ‘--with-readline’ flag does nothing without a readline input. * gnu/packages/algebra.scm (bc)[inputs]: Add readline. Reported by fnstudio in #guix Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr>
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/algebra.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/packages/algebra.scm b/gnu/packages/algebra.scm index 5b391449a0..0274eb31ce 100644 --- a/gnu/packages/algebra.scm +++ b/gnu/packages/algebra.scm @@ -716,6 +716,8 @@ binary.") ("ed" ,ed) ("flex" ,flex) ("texinfo" ,texinfo))) + (inputs + `(("readline" ,readline))) (arguments '(#:configure-flags (list "--with-readline") |