summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/httpd-shed/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/libraries/haskell/httpd-shed/default.nix')
-rw-r--r--pkgs/development/libraries/haskell/httpd-shed/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/haskell/httpd-shed/default.nix b/pkgs/development/libraries/haskell/httpd-shed/default.nix
index 19bf6736ff5..e56a95437db 100644
--- a/pkgs/development/libraries/haskell/httpd-shed/default.nix
+++ b/pkgs/development/libraries/haskell/httpd-shed/default.nix
@@ -1,4 +1,4 @@
-{ cabal, Cabal, network }:
+{ cabal, network }:
 
 cabal.mkDerivation (self: {
   pname = "httpd-shed";
@@ -6,7 +6,7 @@ cabal.mkDerivation (self: {
   sha256 = "c03f784742bdc3053c7e867e587ee859a9a3adaa082d36bdb2ea69da1b02069f";
   isLibrary = true;
   isExecutable = true;
-  buildDepends = [ Cabal network ];
+  buildDepends = [ network ];
   meta = {
     description = "A simple web-server with an interact style API";
     license = self.stdenv.lib.licenses.bsd3;