2014-03-30 21:07:14 +01:00
|
|
|
{ cabal, blazeBuilder, conduit, conduitExtra, httpTypes, network
|
|
|
|
, text, 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";
|
2014-04-09 11:13:50 +01:00
|
|
|
version = "2.1.0.2";
|
|
|
|
sha256 = "02hj07s3vlhbd2hds5pyksghildadjqhr8mmiyabwb7ap8iybidg";
|
2011-08-10 00:00:20 +01:00
|
|
|
buildDepends = [
|
2014-03-30 21:07:14 +01:00
|
|
|
blazeBuilder conduit conduitExtra 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;
|
2013-05-10 23:36:36 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-07-07 22:40:33 +01:00
|
|
|
};
|
|
|
|
})
|