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-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 = "wai";
|
2012-06-28 13:45:11 +01:00
|
|
|
version = "1.2.0.3";
|
|
|
|
sha256 = "0pl6zc29z58vpvsn37siiyr89mxc4khsnmzv2408i5vhlv2ks01p";
|
2011-08-10 00:00:20 +01:00
|
|
|
buildDepends = [
|
2012-02-16 14:05:41 +00:00
|
|
|
blazeBuilder conduit httpTypes network text transformers vault
|
2011-08-07 23:02:24 +01:00
|
|
|
];
|
2011-07-07 22:40:33 +01:00
|
|
|
meta = {
|
2011-09-11 11:33:56 +01:00
|
|
|
homepage = "https://github.com/yesodweb/wai";
|
2011-08-11 14:03:51 +01:00
|
|
|
description = "Web Application Interface";
|
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;
|
2012-03-24 10:21:28 +00:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-07-07 22:40:33 +01:00
|
|
|
};
|
|
|
|
})
|