summary refs log tree commit diff
path: root/pkgs/development/libraries/readline/8.2.nix
diff options
context:
space:
mode:
authorMarkus Napierkowski <markus.napierkowski@cyberus-technology.de>2022-12-21 10:31:59 +0100
committerSandro Jäckel <sandro.jaeckel@gmail.com>2022-12-28 21:00:37 +0100
commit50adabdd60d590c951824974356a9ccb9bb73ffc (patch)
tree83b882fee3f5ba8e1491818ca2c35d49c17de367 /pkgs/development/libraries/readline/8.2.nix
parentaaaeebad7a823083078771b624fd64e747fa81a1 (diff)
downloadnixpkgs-50adabdd60d590c951824974356a9ccb9bb73ffc.tar
nixpkgs-50adabdd60d590c951824974356a9ccb9bb73ffc.tar.gz
nixpkgs-50adabdd60d590c951824974356a9ccb9bb73ffc.tar.bz2
nixpkgs-50adabdd60d590c951824974356a9ccb9bb73ffc.tar.lz
nixpkgs-50adabdd60d590c951824974356a9ccb9bb73ffc.tar.xz
nixpkgs-50adabdd60d590c951824974356a9ccb9bb73ffc.tar.zst
nixpkgs-50adabdd60d590c951824974356a9ccb9bb73ffc.zip
readline: 8.1 -> 8.2
Diffstat (limited to 'pkgs/development/libraries/readline/8.2.nix')
-rw-r--r--pkgs/development/libraries/readline/8.2.nix62
1 files changed, 62 insertions, 0 deletions
diff --git a/pkgs/development/libraries/readline/8.2.nix b/pkgs/development/libraries/readline/8.2.nix
new file mode 100644
index 00000000000..0fedcdc9397
--- /dev/null
+++ b/pkgs/development/libraries/readline/8.2.nix
@@ -0,0 +1,62 @@
+{ fetchurl, stdenv, lib, ncurses
+}:
+
+stdenv.mkDerivation rec {
+  pname = "readline";
+  version = "8.2p${toString (builtins.length upstreamPatches)}";
+
+  src = fetchurl {
+    url = "mirror://gnu/readline/readline-${meta.branch}.tar.gz";
+    sha256 = "sha256-P+txcfFqhO6CyhijbXub4QmlLAT0kqBTMx19EJUAfDU=";
+  };
+
+  outputs = [ "out" "dev" "man" "doc" "info" ];
+
+  propagatedBuildInputs = [ncurses];
+
+  patchFlags = [ "-p0" ];
+
+  upstreamPatches =
+    (let
+       patch = nr: sha256:
+         fetchurl {
+           url = "mirror://gnu/readline/readline-${meta.branch}-patches/readline82-${nr}";
+           inherit sha256;
+         };
+     in
+       import ./readline-8.2-patches.nix patch);
+
+  patches =
+    [ ./link-against-ncurses.patch
+      ./no-arch_only-8.2.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.2";
+  };
+}