mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
haskell-haskeline: fix build with GHC 7.0.x
This commit is contained in:
parent
ca70807262
commit
5374c7ca31
1 changed files with 2 additions and 2 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue