gap: add readline support

Technically optional but strongly recommended from upstream. Replaces
their own implementation for input parsing.
This commit is contained in:
Timo Kaufmann 2020-05-28 16:06:34 +02:00
parent f15c816584
commit d689f3fe72
1 changed files with 2 additions and 0 deletions

View File

@ -3,6 +3,7 @@
, fetchurl
, fetchpatch
, makeWrapper
, readline
, gmp
# one of
# - "minimal" (~400M):
@ -75,6 +76,7 @@ stdenv.mkDerivation rec {
configureFlags = [ "--with-gmp=system" ];
buildInputs = [
readline
gmp
];