readline81: init at 8.1p0

See https://lists.gnu.org/archive/html/info-gnu/2020-12/msg00002.html
for release information
This commit is contained in:
Lancelot SIX 2021-01-07 20:51:44 +00:00
parent eb85527f6c
commit ea3bdfcebe
3 changed files with 68 additions and 0 deletions

View File

@ -0,0 +1,62 @@
{ fetchurl, stdenv, lib, ncurses
}:
stdenv.mkDerivation rec {
pname = "readline";
version = "8.1p${toString (builtins.length upstreamPatches)}";
src = fetchurl {
url = "mirror://gnu/readline/readline-${meta.branch}.tar.gz";
sha256 = "00ibp0n9crbwx15k9vvckq5wsipw98b1px8pd8i34chy2gpb9kpq";
};
outputs = [ "out" "dev" "man" "doc" "info" ];
propagatedBuildInputs = [ncurses];
patchFlags = [ "-p0" ];
upstreamPatches =
(let
patch = nr: sha256:
fetchurl {
url = "mirror://gnu/readline/readline-${meta.branch}-patches/readline81-${nr}";
inherit sha256;
};
in
import ./readline-8.1-patches.nix patch);
patches =
[ ./link-against-ncurses.patch
./no-arch_only-6.3.patch
]
++ upstreamPatches;
meta = with lib; {
description = "Library for interactive line editing";
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 facilities 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 = "https://savannah.gnu.org/projects/readline/";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ dtzWill ];
platforms = platforms.unix;
branch = "8.1";
};
}

View File

@ -0,0 +1,4 @@
# Automatically generated by `update-patch-set.sh'; do not edit.
patch: [
]

View File

@ -17106,6 +17106,8 @@ in
readline80 = callPackage ../development/libraries/readline/8.0.nix { };
readline81 = callPackage ../development/libraries/readline/8.1.nix { };
readosm = callPackage ../development/libraries/readosm { };
rinutils = callPackage ../development/libraries/rinutils { };