summary refs log tree commit diff
path: root/pkgs/development/libraries
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2016-09-17 01:16:32 +0200
committerVladimír Čunát <vcunat@gmail.com>2016-09-17 01:16:32 +0200
commit67074366384f681949b551ce8590907740090e45 (patch)
treea89584cdf0dd58a52167e50c6eb265b7708bb701 /pkgs/development/libraries
parent7a0b3c64eea7026a2a68a49300cdeabd667721f9 (diff)
parentbbadb1da2a852d1a1517c2ce21232dba49260d83 (diff)
downloadnixlib-67074366384f681949b551ce8590907740090e45.tar
nixlib-67074366384f681949b551ce8590907740090e45.tar.gz
nixlib-67074366384f681949b551ce8590907740090e45.tar.bz2
nixlib-67074366384f681949b551ce8590907740090e45.tar.lz
nixlib-67074366384f681949b551ce8590907740090e45.tar.xz
nixlib-67074366384f681949b551ce8590907740090e45.tar.zst
nixlib-67074366384f681949b551ce8590907740090e45.zip
Merge #18676: bash: 4.3 -> 4.4 and readline-7.0p0
Diffstat (limited to 'pkgs/development/libraries')
-rw-r--r--pkgs/development/libraries/readline/7.0.nix66
1 files changed, 66 insertions, 0 deletions
diff --git a/pkgs/development/libraries/readline/7.0.nix b/pkgs/development/libraries/readline/7.0.nix
new file mode 100644
index 000000000000..9d1c1c57f8c1
--- /dev/null
+++ b/pkgs/development/libraries/readline/7.0.nix
@@ -0,0 +1,66 @@
+{ fetchurl, stdenv, ncurses }:
+
+stdenv.mkDerivation rec {
+  name = "readline-${version}";
+  version = "7.0p0";
+
+  src = fetchurl {
+    url = "mirror://gnu/readline/readline-${meta.branch}.tar.gz";
+    sha256 = "0d13sg9ksf982rrrmv5mb6a2p4ys9rvg9r71d6il0vr8hmql63bm";
+  };
+
+  outputs = [ "out" "dev" "doc" ];
+
+  propagatedBuildInputs = [ncurses];
+
+  patchFlags = "-p0";
+
+  patches =
+    [ ./link-against-ncurses.patch
+      ./no-arch_only-6.3.patch
+    ]
+    ;
+    /*
+    ++
+    (let
+       patch = nr: sha256:
+         fetchurl {
+           url = "mirror://gnu/readline/readline-${meta.branch}-patches/readline70-${nr}";
+           inherit sha256;
+         };
+     in
+       import ./readline-7.0-patches.nix patch);
+    */
+
+  # Don't run the native `strip' when cross-compiling.
+  dontStrip = stdenv ? cross;
+  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 = http://savannah.gnu.org/projects/readline/;
+
+    license = licenses.gpl3Plus;
+
+    maintainers = [ ];
+
+    platforms = platforms.unix;
+    branch = "7.0";
+  };
+}