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