2014-09-12 09:10:02 +00:00
|
|
|
{ fetchurl, stdenv, ncurses }:
|
2014-03-20 12:00:46 +00:00
|
|
|
|
2014-09-12 09:10:02 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2014-08-21 08:50:52 +00:00
|
|
|
name = "readline-6.3p08";
|
2014-03-20 12:00:46 +00:00
|
|
|
|
2014-09-12 09:10:02 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnu/readline/readline-6.3.tar.gz";
|
|
|
|
sha256 = "0hzxr9jxqqx5sxsv9vmlxdnvlr9vi4ih1avjb869hbs6p5qn1fjn";
|
2014-03-20 12:00:46 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ncurses];
|
|
|
|
|
|
|
|
patchFlags = "-p0";
|
|
|
|
|
|
|
|
patches =
|
2014-07-22 09:24:00 +00:00
|
|
|
[ ./link-against-ncurses.patch
|
|
|
|
./no-arch_only-6.3.patch
|
2014-09-12 09:10:02 +00: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.
|
|
|
|
dontStrip = stdenv ? cross;
|
2014-03-20 12:00:46 +00:00
|
|
|
|
2014-08-21 08:50:52 +00:00
|
|
|
meta = with stdenv.lib; {
|
2014-08-24 14:21:08 +00: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.
|
|
|
|
|
|
|
|
The history facilites are also placed into a separate library,
|
|
|
|
the History library, as part of the build process. The History
|
|
|
|
library may be used without Readline in applications which
|
|
|
|
desire its capabilities.
|
|
|
|
'';
|
|
|
|
|
|
|
|
homepage = http://savannah.gnu.org/projects/readline/;
|
|
|
|
|
2014-08-21 08:50:52 +00:00
|
|
|
license = licenses.gpl3Plus;
|
2014-03-20 12:00:46 +00:00
|
|
|
|
2014-08-21 08:50:52 +00:00
|
|
|
maintainers = [ maintainers.ludo ];
|
|
|
|
|
|
|
|
platforms = platforms.unix;
|
2014-11-19 18:53:56 +00:00
|
|
|
branch = "6.3";
|
2014-03-20 12:00:46 +00:00
|
|
|
};
|
|
|
|
}
|