2012-02-16 14:05:41 +00:00
|
|
|
{ cabal, blazeBuilder, conduit, httpTypes, network, text
|
2012-02-10 11:33:52 +00:00
|
|
|
, transformers, vault
|
2011-08-09 23:00:20 +00:00
|
|
|
}:
|
2011-07-07 21:40:33 +00:00
|
|
|
|
2011-08-09 23:00:20 +00:00
|
|
|
cabal.mkDerivation (self: {
|
2011-07-07 21:40:33 +00:00
|
|
|
pname = "wai";
|
2013-09-02 11:20:19 +00:00
|
|
|
version = "1.4.0.2";
|
|
|
|
sha256 = "0mmnl2zn3jsa5yan58kf2d7cvc343cld0l8mydb9qnq4if2kq94q";
|
2011-08-09 23:00:20 +00:00
|
|
|
buildDepends = [
|
2012-02-16 14:05:41 +00:00
|
|
|
blazeBuilder conduit httpTypes network text transformers vault
|
2011-08-07 22:02:24 +00:00
|
|
|
];
|
2011-07-07 21:40:33 +00:00
|
|
|
meta = {
|
2011-09-11 10:33:56 +00:00
|
|
|
homepage = "https://github.com/yesodweb/wai";
|
2011-08-11 13:03:51 +00:00
|
|
|
description = "Web Application Interface";
|
2012-04-09 12:37:39 +00:00
|
|
|
license = self.stdenv.lib.licenses.mit;
|
2011-08-09 09:54:50 +00:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 22:36:36 +00:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-07-07 21:40:33 +00:00
|
|
|
};
|
|
|
|
})
|