summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimo Kaufmann <timokau@zoho.com>2020-05-28 16:06:34 +0200
committerTimo Kaufmann <timokau@zoho.com>2020-05-28 16:06:34 +0200
commitd689f3fe7298cea3a922a3afc0af7f4dc3f1a8c8 (patch)
treec3643a8a08a43af1a0fa7aec8e249ae27a22b47d
parentgap: use https for the homepage (diff)
downloadnixpkgs-d689f3fe7298cea3a922a3afc0af7f4dc3f1a8c8.tar.gz
gap: add readline support
Technically optional but strongly recommended from upstream. Replaces their own implementation for input parsing.
-rw-r--r--pkgs/applications/science/math/gap/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/applications/science/math/gap/default.nix b/pkgs/applications/science/math/gap/default.nix
index 079051cc34d4..a2432e9827c3 100644
--- a/pkgs/applications/science/math/gap/default.nix
+++ b/pkgs/applications/science/math/gap/default.nix
@@ -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
];