libqalculate: build with readline80

readline support was not working properly for me with the qalc
executable. Changing the `configureFlags` revealed that a readline
newer than 6.3 (i.e. the `readline` package in today's nixpkgs) is
needed.
This commit is contained in:
Anthony Cowley 2021-03-05 10:48:16 -05:00
parent 9816b99e71
commit 9c64453ad8
2 changed files with 3 additions and 2 deletions

View file

@ -16,7 +16,6 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ intltool pkg-config autoreconfHook doxygen ];
buildInputs = [ curl gettext libiconv readline ];
configureFlags = ["--with-readline=${readline.dev}"];
propagatedBuildInputs = [ libxml2 mpfr icu ];
enableParallelBuilding = true;

View file

@ -15459,7 +15459,9 @@ in
libpwquality = callPackage ../development/libraries/libpwquality { };
libqalculate = callPackage ../development/libraries/libqalculate { };
libqalculate = callPackage ../development/libraries/libqalculate {
readline = readline80;
};
libqt5pas = libsForQt5.callPackage ../development/compilers/fpc/libqt5pas.nix { };