about summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/haskeline
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2012-02-14 17:00:37 +0000
committerPeter Simons <simons@cryp.to>2012-02-14 17:00:37 +0000
commitac69747aa855a9222d129c968fcdfd38712624b2 (patch)
tree7ca82e0665a5c4e9559c781e0a3b4e9df956dd5e /pkgs/development/libraries/haskell/haskeline
parent844d950d1328364c6e84044f3bc7ba46e64389ae (diff)
Regenerated all Haskell packages with the latest version of cabal2nix.
svn path=/nixpkgs/trunk/; revision=32292
Diffstat (limited to 'pkgs/development/libraries/haskell/haskeline')
-rw-r--r--pkgs/development/libraries/haskell/haskeline/default.nix8
1 files changed, 6 insertions, 2 deletions
diff --git a/pkgs/development/libraries/haskell/haskeline/default.nix b/pkgs/development/libraries/haskell/haskeline/default.nix
index f3cd0fd4aedfb..51b853a14da0e 100644
--- a/pkgs/development/libraries/haskell/haskeline/default.nix
+++ b/pkgs/development/libraries/haskell/haskeline/default.nix
@@ -1,10 +1,14 @@
-{ cabal, extensibleExceptions, mtl, terminfo, utf8String }:
+{ cabal, Cabal, extensibleExceptions, filepath, mtl, terminfo
+, utf8String
+}:
 
 cabal.mkDerivation (self: {
   pname = "haskeline";
   version = "0.6.4.6";
   sha256 = "136h71rb50sypkdbnk849mbcgfzx3y4hfxmx2c7kf90zpmsx5wmj";
-  buildDepends = [ extensibleExceptions mtl terminfo utf8String ];
+  buildDepends = [
+    Cabal extensibleExceptions filepath mtl terminfo utf8String
+  ];
   meta = {
     homepage = "http://trac.haskell.org/haskeline";
     description = "A command-line interface for user input, written in Haskell";