2012-04-05 09:51:59 -07:00
|
|
|
{ cabal, blazeBuilder, blazeBuilderConduit, caseInsensitive
|
2014-02-02 11:16:15 -08:00
|
|
|
, conduit, doctest, hashable, hspec, HTTP, httpDate, httpTypes
|
|
|
|
, HUnit, liftedBase, network, networkConduit, QuickCheck
|
2014-03-26 01:51:03 -07:00
|
|
|
, simpleSendfile, text, time, 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";
|
2014-03-26 01:51:03 -07:00
|
|
|
version = "2.1.3";
|
|
|
|
sha256 = "00861dimzvbbqx3pbpihfml8k2fkvsw8kda7mkkix59xqsjwc1nz";
|
2011-08-09 16:00:20 -07:00
|
|
|
buildDepends = [
|
2012-09-25 04:12:48 -07:00
|
|
|
blazeBuilder blazeBuilderConduit caseInsensitive conduit hashable
|
2014-02-02 11:16:15 -08:00
|
|
|
httpDate httpTypes liftedBase network networkConduit simpleSendfile
|
2014-03-26 01:51:03 -07:00
|
|
|
text transformers unixCompat void wai
|
2011-07-07 14:40:33 -07:00
|
|
|
];
|
2013-02-24 13:09:07 -08:00
|
|
|
testDepends = [
|
2013-12-09 04:03:24 -08:00
|
|
|
blazeBuilder blazeBuilderConduit caseInsensitive conduit doctest
|
2014-02-02 11:16:15 -08:00
|
|
|
hashable hspec HTTP httpDate httpTypes HUnit liftedBase network
|
2014-03-26 01:51:03 -07:00
|
|
|
networkConduit QuickCheck simpleSendfile text time transformers
|
2014-02-02 11:16:15 -08:00
|
|
|
unixCompat void wai
|
2013-02-24 13:09:07 -08:00
|
|
|
];
|
2013-12-09 10:37:17 -08:00
|
|
|
doCheck = false;
|
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;
|
2013-05-10 15:36:36 -07:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-07-07 14:40:33 -07:00
|
|
|
};
|
|
|
|
})
|