2012-02-24 12:38:59 +01:00
|
|
|
{ cabal, blazeBuilder, blazeBuilderConduit, bytestringLexing
|
|
|
|
, caseInsensitive, conduit, httpTypes, liftedBase, network
|
|
|
|
, simpleSendfile, transformers, unixCompat, wai
|
2011-08-10 01:00:20 +02:00
|
|
|
}:
|
2011-07-07 23:40:33 +02:00
|
|
|
|
2011-08-10 01:00:20 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2011-07-07 23:40:33 +02:00
|
|
|
pname = "warp";
|
2012-02-24 12:38:59 +01:00
|
|
|
version = "1.1.0.1";
|
|
|
|
sha256 = "1bgjnnkqgcyj00jd4rgsnpmac0yfd1ydd6i61b252gyrr9dd0wm9";
|
2011-08-10 01:00:20 +02:00
|
|
|
buildDepends = [
|
2012-02-24 12:38:59 +01:00
|
|
|
blazeBuilder blazeBuilderConduit bytestringLexing caseInsensitive
|
|
|
|
conduit httpTypes liftedBase network simpleSendfile transformers
|
|
|
|
unixCompat wai
|
2011-07-07 23:40:33 +02:00
|
|
|
];
|
|
|
|
meta = {
|
2011-11-28 19:12:09 +01:00
|
|
|
homepage = "http://github.com/yesodweb/wai";
|
2011-08-11 15:03:51 +02:00
|
|
|
description = "A fast, light-weight web server for WAI applications";
|
2011-08-07 21:34:00 +02:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 11:54:50 +02:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2011-08-07 21:34:00 +02:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
2011-08-10 01:00:20 +02:00
|
|
|
self.stdenv.lib.maintainers.simons
|
2011-08-07 21:34:00 +02:00
|
|
|
];
|
2011-07-07 23:40:33 +02:00
|
|
|
};
|
|
|
|
})
|