summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/HDBC/HDBC-postgresql.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/libraries/haskell/HDBC/HDBC-postgresql.nix')
-rw-r--r--pkgs/development/libraries/haskell/HDBC/HDBC-postgresql.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/haskell/HDBC/HDBC-postgresql.nix b/pkgs/development/libraries/haskell/HDBC/HDBC-postgresql.nix
index f51d287ef3c..8ac9548d610 100644
--- a/pkgs/development/libraries/haskell/HDBC/HDBC-postgresql.nix
+++ b/pkgs/development/libraries/haskell/HDBC/HDBC-postgresql.nix
@@ -1,4 +1,4 @@
-{ cabal, Cabal, HDBC, mtl, parsec, postgresql, time, utf8String }:
+{ cabal, HDBC, mtl, parsec, postgresql, time, utf8String }:
 
 cabal.mkDerivation (self: {
   pname = "HDBC-postgresql";
@@ -6,7 +6,7 @@ cabal.mkDerivation (self: {
   sha256 = "0fwza9h2ghl70x44c4snfybnnfsj1mwlf5a1x12ddl1fbj6fx6gs";
   isLibrary = true;
   isExecutable = true;
-  buildDepends = [ Cabal HDBC mtl parsec time utf8String ];
+  buildDepends = [ HDBC mtl parsec time utf8String ];
   extraLibraries = [ postgresql ];
   meta = {
     homepage = "http://software.complete.org/hdbc-postgresql";