2018-08-20 19:43:41 +01:00
|
|
|
{ fetchurl, stdenv, ncurses }:
|
2014-03-20 12:00:46 +00:00
|
|
|
|
2014-09-12 10:10:02 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2014-08-21 09:50:52 +01:00
|
|
|
name = "readline-6.3p08";
|
2014-03-20 12:00:46 +00:00
|
|
|
|
2014-09-12 10:10:02 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnu/readline/readline-6.3.tar.gz";
|
|
|
|
sha256 = "0hzxr9jxqqx5sxsv9vmlxdnvlr9vi4ih1avjb869hbs6p5qn1fjn";
|
2014-03-20 12:00:46 +00:00
|
|
|
};
|
|
|
|
|
2017-07-11 10:14:14 +01:00
|
|
|
outputs = [ "out" "dev" "man" "doc" "info" ];
|
2015-10-13 19:00:20 +01:00
|
|
|
|
2014-03-20 12:00:46 +00:00
|
|
|
propagatedBuildInputs = [ncurses];
|
|
|
|
|
|
|
|
patchFlags = "-p0";
|
|
|
|
|
2017-10-15 21:51:01 +01:00
|
|
|
configureFlags =
|
|
|
|
stdenv.lib.optional (stdenv.hostPlatform != stdenv.buildPlatform)
|
|
|
|
[ # This test requires running host code
|
|
|
|
"bash_cv_wcwidth_broken=no"
|
|
|
|
];
|
|
|
|
|
2014-03-20 12:00:46 +00:00
|
|
|
patches =
|
2014-07-22 10:24:00 +01:00
|
|
|
[ ./link-against-ncurses.patch
|
|
|
|
./no-arch_only-6.3.patch
|
2014-09-12 10:10:02 +01:00
|
|
|
]
|
|
|
|
++
|
|
|
|
(let
|
|
|
|
patch = nr: sha256:
|
|
|
|
fetchurl {
|
|
|
|
url = "mirror://gnu/readline/readline-6.3-patches/readline63-${nr}";
|
|
|
|
inherit sha256;
|
|
|
|
};
|
|
|
|
in
|
|
|
|
import ./readline-6.3-patches.nix patch);
|
|
|
|
|
|
|
|
# Don't run the native `strip' when cross-compiling.
|
2018-08-20 19:43:41 +01:00
|
|
|
dontStrip = stdenv.hostPlatform != stdenv.buildPlatform;
|
2014-10-23 19:09:09 +01:00
|
|
|
bash_cv_func_sigsetjmp = if stdenv.isCygwin then "missing" else null;
|
2014-03-20 12:00:46 +00:00
|
|
|
|
2014-08-21 09:50:52 +01:00
|
|
|
meta = with stdenv.lib; {
|
2014-08-24 15:21:08 +01:00
|
|
|
description = "Library for interactive line editing";
|
2014-03-20 12:00:46 +00:00
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
The GNU Readline library provides a set of functions for use by
|
|
|
|
applications that allow users to edit command lines as they are
|
|
|
|
typed in. Both Emacs and vi editing modes are available. The
|
|
|
|
Readline library includes additional functions to maintain a
|
|
|
|
list of previously-entered command lines, to recall and perhaps
|
|
|
|
reedit those lines, and perform csh-like history expansion on
|
|
|
|
previous commands.
|
|
|
|
|
2014-12-30 02:31:03 +00:00
|
|
|
The history facilities are also placed into a separate library,
|
2014-03-20 12:00:46 +00:00
|
|
|
the History library, as part of the build process. The History
|
|
|
|
library may be used without Readline in applications which
|
|
|
|
desire its capabilities.
|
|
|
|
'';
|
|
|
|
|
2018-12-01 17:07:00 +00:00
|
|
|
homepage = https://savannah.gnu.org/projects/readline/;
|
2014-03-20 12:00:46 +00:00
|
|
|
|
2014-08-21 09:50:52 +01:00
|
|
|
license = licenses.gpl3Plus;
|
2014-03-20 12:00:46 +00:00
|
|
|
|
2015-01-13 21:33:24 +00:00
|
|
|
maintainers = [ ];
|
2014-08-21 09:50:52 +01:00
|
|
|
|
|
|
|
platforms = platforms.unix;
|
2014-11-19 18:53:56 +00:00
|
|
|
branch = "6.3";
|
2014-03-20 12:00:46 +00:00
|
|
|
};
|
|
|
|
}
|