Re-generate all Haskell packages with the latest version of cabal2nix.

This change brings support for building and running the regressions test suites.
This commit is contained in:
Peter Simons
2013-02-24 22:09:07 +01:00
parent d0bfd6936e
commit a30df95691
146 changed files with 680 additions and 180 deletions

View File

@@ -1,6 +1,7 @@
{ cabal, blazeBuilder, caseInsensitive, classyPrelude, conduit
, dataDefault, httpConduit, httpTypes, liftedBase, monadControl
, network, networkConduit, text, wai, warp, word8
, dataDefault, hspec, httpConduit, httpTypes, liftedBase
, monadControl, network, networkConduit, text, transformers, wai
, warp, word8
}:
cabal.mkDerivation (self: {
@@ -12,6 +13,10 @@ cabal.mkDerivation (self: {
httpConduit httpTypes liftedBase monadControl network
networkConduit text wai warp word8
];
testDepends = [
blazeBuilder conduit hspec httpConduit httpTypes liftedBase network
networkConduit transformers wai warp
];
meta = {
homepage = "https://github.com/fpco/http-reverse-proxy";
description = "Reverse proxy HTTP requests, either over raw sockets or with WAI";