2012-04-05 09:51:59 -07:00
|
|
|
{ cabal, blazeBuilder, blazeBuilderConduit, caseInsensitive
|
2013-02-24 13:09:07 -08:00
|
|
|
, conduit, hashable, hspec, httpTypes, HUnit, liftedBase, network
|
|
|
|
, networkConduit, QuickCheck, simpleSendfile, transformers
|
|
|
|
, unixCompat, void, wai
|
2011-08-09 16:00:20 -07:00
|
|
|
}:
|
2011-07-07 14:40:33 -07:00
|
|
|
|
2011-08-09 16:00:20 -07:00
|
|
|
cabal.mkDerivation (self: {
|
2011-07-07 14:40:33 -07:00
|
|
|
pname = "warp";
|
2013-02-20 02:58:05 -08:00
|
|
|
version = "1.3.7.4";
|
|
|
|
sha256 = "0z043v1fjblbvkn44hzp7j8iawqzbwf67qxq7gsv7jfq1q58xbrx";
|
2011-08-09 16:00:20 -07:00
|
|
|
buildDepends = [
|
2012-09-25 04:12:48 -07:00
|
|
|
blazeBuilder blazeBuilderConduit caseInsensitive conduit hashable
|
|
|
|
httpTypes liftedBase network networkConduit simpleSendfile
|
|
|
|
transformers unixCompat void wai
|
2011-07-07 14:40:33 -07:00
|
|
|
];
|
2013-02-24 13:09:07 -08:00
|
|
|
testDepends = [
|
|
|
|
blazeBuilder blazeBuilderConduit caseInsensitive conduit hashable
|
|
|
|
hspec httpTypes HUnit liftedBase network networkConduit QuickCheck
|
|
|
|
simpleSendfile transformers unixCompat void wai
|
|
|
|
];
|
2011-07-07 14:40:33 -07:00
|
|
|
meta = {
|
2011-11-28 10:12:09 -08:00
|
|
|
homepage = "http://github.com/yesodweb/wai";
|
2011-08-11 06:03:51 -07:00
|
|
|
description = "A fast, light-weight web server for WAI applications";
|
2012-04-09 05:37:39 -07:00
|
|
|
license = self.stdenv.lib.licenses.mit;
|
2011-08-09 02:54:50 -07:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 03:21:28 -07:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-07-07 14:40:33 -07:00
|
|
|
};
|
|
|
|
})
|