mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 04:31:52 +00:00
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:
parent
9816b99e71
commit
9c64453ad8
|
@ -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;
|
||||
|
||||
|
|
|
@ -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 { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue