summary refs log tree commit diff
path: root/pkgs/development/tools/haskell/hlint/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/tools/haskell/hlint/default.nix')
-rw-r--r--pkgs/development/tools/haskell/hlint/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/tools/haskell/hlint/default.nix b/pkgs/development/tools/haskell/hlint/default.nix
index 42f6135856d..76e102ff69c 100644
--- a/pkgs/development/tools/haskell/hlint/default.nix
+++ b/pkgs/development/tools/haskell/hlint/default.nix
@@ -1,5 +1,5 @@
-{ cabal, Cabal, cpphs, filepath, haskellSrcExts, hscolour
-, transformers, uniplate
+{ cabal, cpphs, filepath, haskellSrcExts, hscolour, transformers
+, uniplate
 }:
 
 cabal.mkDerivation (self: {
@@ -9,7 +9,7 @@ cabal.mkDerivation (self: {
   isLibrary = true;
   isExecutable = true;
   buildDepends = [
-    Cabal cpphs filepath haskellSrcExts hscolour transformers uniplate
+    cpphs filepath haskellSrcExts hscolour transformers uniplate
   ];
   meta = {
     homepage = "http://community.haskell.org/~ndm/hlint/";