summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/unordered-containers/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/libraries/haskell/unordered-containers/default.nix')
-rw-r--r--pkgs/development/libraries/haskell/unordered-containers/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/haskell/unordered-containers/default.nix b/pkgs/development/libraries/haskell/unordered-containers/default.nix
index fe44f7a7e07..da4616a1367 100644
--- a/pkgs/development/libraries/haskell/unordered-containers/default.nix
+++ b/pkgs/development/libraries/haskell/unordered-containers/default.nix
@@ -1,10 +1,10 @@
-{ cabal, Cabal, deepseq, hashable }:
+{ cabal, deepseq, hashable }:
 
 cabal.mkDerivation (self: {
   pname = "unordered-containers";
   version = "0.1.4.6";
   sha256 = "1azwxbrzlzaw54idp3z2xx1xlywzsf1r893blbz51nnwcj9v550d";
-  buildDepends = [ Cabal deepseq hashable ];
+  buildDepends = [ deepseq hashable ];
   meta = {
     description = "Efficient hashing-based container types";
     license = self.stdenv.lib.licenses.bsd3;