summary refs log tree commit diff
path: root/pkgs/development/libraries/readline/8.0.nix
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2019-01-07 23:38:07 -0600
committerWill Dietz <w@wdtz.org>2019-01-07 23:57:58 -0600
commitd18abcb3f61eb6e95558f9fc73b1d06ef52e2029 (patch)
treeab09127458657161511f221366481b5e5495bf99 /pkgs/development/libraries/readline/8.0.nix
parent3705b32dc0d877f8b0c091fcd25ed63d4a7c4e3a (diff)
downloadnixpkgs-d18abcb3f61eb6e95558f9fc73b1d06ef52e2029.tar
nixpkgs-d18abcb3f61eb6e95558f9fc73b1d06ef52e2029.tar.gz
nixpkgs-d18abcb3f61eb6e95558f9fc73b1d06ef52e2029.tar.bz2
nixpkgs-d18abcb3f61eb6e95558f9fc73b1d06ef52e2029.tar.lz
nixpkgs-d18abcb3f61eb6e95558f9fc73b1d06ef52e2029.tar.xz
nixpkgs-d18abcb3f61eb6e95558f9fc73b1d06ef52e2029.tar.zst
nixpkgs-d18abcb3f61eb6e95558f9fc73b1d06ef52e2029.zip
readline80: init
https://lists.gnu.org/archive/html/info-gnu/2019-01/msg00011.html
Diffstat (limited to 'pkgs/development/libraries/readline/8.0.nix')
-rw-r--r--pkgs/development/libraries/readline/8.0.nix66
1 files changed, 66 insertions, 0 deletions
diff --git a/pkgs/development/libraries/readline/8.0.nix b/pkgs/development/libraries/readline/8.0.nix
new file mode 100644
index 00000000000..8eb2fb8969b
--- /dev/null
+++ b/pkgs/development/libraries/readline/8.0.nix
@@ -0,0 +1,66 @@
+{ fetchurl, stdenv, ncurses
+}:
+
+stdenv.mkDerivation rec {
+  name = "readline-${version}";
+  version = "8.0p${toString (builtins.length upstreamPatches)}";
+
+  src = fetchurl {
+    url = "mirror://gnu/readline/readline-${meta.branch}.tar.gz";
+    sha256 = "0qg4924hf4hg0r0wbx2chswsr08734536fh5iagkd3a7f4czafg3";
+  };
+
+  outputs = [ "out" "dev" "man" "doc" "info" ];
+
+  propagatedBuildInputs = [ncurses];
+
+  patchFlags = "-p0";
+
+  upstreamPatches =
+    (let
+       patch = nr: sha256:
+         fetchurl {
+           url = "mirror://gnu/readline/readline-${meta.branch}-patches/readline80-${nr}";
+           inherit sha256;
+         };
+     in
+       import ./readline-8.0-patches.nix patch);
+
+  patches =
+    [ ./link-against-ncurses.patch
+      ./no-arch_only-6.3.patch
+    ]
+    ++ upstreamPatches;
+
+  # Don't run the native `strip' when cross-compiling.
+  dontStrip = stdenv.hostPlatform != stdenv.buildPlatform;
+  bash_cv_func_sigsetjmp = if stdenv.isCygwin then "missing" else null;
+
+  meta = with stdenv.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 = [ maintainers.vanschelven ];
+
+    platforms = platforms.unix;
+    branch = "8.0";
+  };
+}