summary refs log tree commit diff
path: root/pkgs/development/libraries/readline
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@viric.name>2014-03-20 13:00:46 +0100
committerLluís Batlle i Rossell <viric@viric.name>2014-03-20 13:00:46 +0100
commita4c412947779d915039efc3db09bf4dfe64b4ff3 (patch)
tree60f516c06b1d65549572add56e2181d0009e67c5 /pkgs/development/libraries/readline
parentb9163ab3328b9b7104a0b4870970eee022fecb37 (diff)
downloadnixpkgs-a4c412947779d915039efc3db09bf4dfe64b4ff3.tar
nixpkgs-a4c412947779d915039efc3db09bf4dfe64b4ff3.tar.gz
nixpkgs-a4c412947779d915039efc3db09bf4dfe64b4ff3.tar.bz2
nixpkgs-a4c412947779d915039efc3db09bf4dfe64b4ff3.tar.lz
nixpkgs-a4c412947779d915039efc3db09bf4dfe64b4ff3.tar.xz
nixpkgs-a4c412947779d915039efc3db09bf4dfe64b4ff3.tar.zst
nixpkgs-a4c412947779d915039efc3db09bf4dfe64b4ff3.zip
Adding GNU readline 6.3 apart
I set bashInteractive to use it, as it has many relevant fixes.
Diffstat (limited to 'pkgs/development/libraries/readline')
-rw-r--r--pkgs/development/libraries/readline/readline6.3.nix49
1 files changed, 49 insertions, 0 deletions
diff --git a/pkgs/development/libraries/readline/readline6.3.nix b/pkgs/development/libraries/readline/readline6.3.nix
new file mode 100644
index 00000000000..2f99b9d7218
--- /dev/null
+++ b/pkgs/development/libraries/readline/readline6.3.nix
@@ -0,0 +1,49 @@
+{ fetchurl, stdenv, ncurses }:
+
+stdenv.mkDerivation (rec {
+  name = "readline-6.3";
+
+  src = fetchurl {
+    url = "mirror://gnu/readline/${name}.tar.gz";
+    sha256 = "0hzxr9jxqqx5sxsv9vmlxdnvlr9vi4ih1avjb869hbs6p5qn1fjn";
+  };
+
+  propagatedBuildInputs = [ncurses];
+
+  patchFlags = "-p0";
+
+  patches =
+    [ ./link-against-ncurses.patch ];
+
+  meta = {
+    description = "GNU Readline, a 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 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/;
+
+    license = "GPLv3+";
+
+    maintainers = [ stdenv.lib.maintainers.ludo ];
+  };
+}
+
+//
+
+# Don't run the native `strip' when cross-compiling.
+(if (stdenv ? cross)
+ then { dontStrip = true; }
+ else { }))