haskell-haskeline: fix build with GHC 7.0.x

This commit is contained in:
Peter Simons 2013-04-18 15:39:08 +02:00
parent ca70807262
commit 5374c7ca31

View File

@ -1,10 +1,10 @@
{ cabal, filepath, terminfo, transformers }:
{ cabal, filepath, terminfo, transformers, utf8String }:
cabal.mkDerivation (self: {
pname = "haskeline";
version = "0.7.0.3";
sha256 = "10xc229ddk4g87i78vgjbfr7sii28fx00qwnggb5x7sfigfca8sg";
buildDepends = [ filepath terminfo transformers ];
buildDepends = [ filepath terminfo transformers utf8String ];
configureFlags = "-fterminfo";
meta = {
homepage = "http://trac.haskell.org/haskeline";