summary refs log tree commit diff
path: root/pkgs/development/libraries/readline/readline6.nix
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2009-02-23 18:10:41 +0000
committerLudovic Courtès <ludo@gnu.org>2009-02-23 18:10:41 +0000
commit2d41dce5b616e978f305eff51e475886bd84c908 (patch)
tree5d400291f7d4583e324702c2b5f932334a2a44cd /pkgs/development/libraries/readline/readline6.nix
parentf0c728ba535d7afb2150b6c24468e5b0cfd5aa7d (diff)
downloadnixlib-2d41dce5b616e978f305eff51e475886bd84c908.tar
nixlib-2d41dce5b616e978f305eff51e475886bd84c908.tar.gz
nixlib-2d41dce5b616e978f305eff51e475886bd84c908.tar.bz2
nixlib-2d41dce5b616e978f305eff51e475886bd84c908.tar.lz
nixlib-2d41dce5b616e978f305eff51e475886bd84c908.tar.xz
nixlib-2d41dce5b616e978f305eff51e475886bd84c908.tar.zst
nixlib-2d41dce5b616e978f305eff51e475886bd84c908.zip
GNU Readline 6.0.
svn path=/nixpkgs/branches/stdenv-updates/; revision=14208
Diffstat (limited to 'pkgs/development/libraries/readline/readline6.nix')
-rw-r--r--pkgs/development/libraries/readline/readline6.nix37
1 files changed, 37 insertions, 0 deletions
diff --git a/pkgs/development/libraries/readline/readline6.nix b/pkgs/development/libraries/readline/readline6.nix
new file mode 100644
index 000000000000..d1534f298748
--- /dev/null
+++ b/pkgs/development/libraries/readline/readline6.nix
@@ -0,0 +1,37 @@
+{ fetchurl, stdenv, ncurses }:
+
+stdenv.mkDerivation rec {
+  name = "readline-6.0";
+
+  src = fetchurl {
+    url = "mirror://gnu/readline/${name}.tar.gz";
+    sha256 = "1pn13j6f9376kwki69050x3zh62yb1w31l37rws5nwr5q02xk68i";
+  };
+
+  propagatedBuildInputs = [ncurses];
+  configureFlags = "--enable-shared --disable-static";
+  patches = stdenv.lib.optional stdenv.isDarwin ./shobj-darwin.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+";
+  };
+}