about summary refs log tree commit diff
path: root/pkgs/development/libraries/libedit
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2009-04-16 19:25:22 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2009-04-16 19:25:22 +0000
commit79cb8d11a65b3318f8c5ece4fbdface72fe09129 (patch)
tree709b944dda71b30361d2795e68f29ca8e17af2ae /pkgs/development/libraries/libedit
parentd182df55264c14860f52b496f9ba820240c18a2a (diff)
downloadnixlib-79cb8d11a65b3318f8c5ece4fbdface72fe09129.tar
nixlib-79cb8d11a65b3318f8c5ece4fbdface72fe09129.tar.gz
nixlib-79cb8d11a65b3318f8c5ece4fbdface72fe09129.tar.bz2
nixlib-79cb8d11a65b3318f8c5ece4fbdface72fe09129.tar.lz
nixlib-79cb8d11a65b3318f8c5ece4fbdface72fe09129.tar.xz
nixlib-79cb8d11a65b3318f8c5ece4fbdface72fe09129.tar.zst
nixlib-79cb8d11a65b3318f8c5ece4fbdface72fe09129.zip
* editline: renamed to libedit (which seems to be the proper name for
  the package).
* Removed the old ghc-wrapper, which hasn't been used for a long time.
* Renamed the "boot" GHC to "binary", which is more descriptive.
  (They *can* be used for other things than bootstrapping a GHC
  source build.)
* Updated the GHC 6.10.1 binary to 6.10.2.

svn path=/nixpkgs/trunk/; revision=15095
Diffstat (limited to 'pkgs/development/libraries/libedit')
-rw-r--r--pkgs/development/libraries/libedit/default.nix17
1 files changed, 17 insertions, 0 deletions
diff --git a/pkgs/development/libraries/libedit/default.nix b/pkgs/development/libraries/libedit/default.nix
new file mode 100644
index 000000000000..622d6e21c977
--- /dev/null
+++ b/pkgs/development/libraries/libedit/default.nix
@@ -0,0 +1,17 @@
+{ stdenv, fetchurl, ncurses }:
+
+stdenv.mkDerivation {
+  name = "libedit-20090405-3.0";
+  
+  src = fetchurl {
+    url = http://www.thrysoee.dk/editline/libedit-20090405-3.0.tar.gz;
+    sha256 = "1il68apydk6nnm30v8gn61vbi23ii571bixp7662j96xsivy7z5l";
+  };
+  
+  propagatedBuildInputs = [ ncurses ];
+
+  meta = {
+    homepage = "http://www.thrysoee.dk/editline/";
+    description = "A port of the NetBSD Editline library (libedit)";
+  };
+}