* updated the ghc HEAD snapshot

svn path=/nixpkgs/trunk/; revision=12454
This commit is contained in:
Andres Löh
2008-07-31 12:36:47 +00:00
parent 2b11bc18f7
commit 25fa56e74f
3 changed files with 30 additions and 11 deletions
@@ -0,0 +1,10 @@
{ stdenv, fetchurl, ncurses }:
stdenv.mkDerivation {
name = "editline-2.11";
src = fetchurl {
url = http://www.thrysoee.dk/editline/libedit-20080712-2.11.tar.gz;
sha256 = "6ff51a15d1ada16c44be0f32a539b492cd3b0286c3dfa413915525f55851d1e6";
};
propagatedBuildInputs = [ ncurses ];
}