79cb8d11a6
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
18 lines
435 B
Nix
18 lines
435 B
Nix
{ 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)";
|
|
};
|
|
}
|