2011-08-10 01:00:20 +02:00
|
|
|
{ cabal, blazeBuilder, blazeHtml, fileEmbed, httpTypes, text, time
|
|
|
|
, transformers, unixCompat, wai
|
|
|
|
}:
|
2011-08-08 00:51:22 +02:00
|
|
|
|
2011-08-10 01:00:20 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2011-08-08 00:51:22 +02:00
|
|
|
pname = "wai-app-static";
|
|
|
|
version = "0.1.0";
|
|
|
|
sha256 = "0k9pl1kanrb2pqp1bs5s1lxb7ayq2ddf2cxi5q2v9yq22s229xln";
|
2011-08-10 01:00:20 +02:00
|
|
|
buildDepends = [
|
|
|
|
blazeBuilder blazeHtml fileEmbed httpTypes text time transformers
|
2011-08-08 00:51:22 +02:00
|
|
|
unixCompat wai
|
|
|
|
];
|
|
|
|
meta = {
|
|
|
|
homepage = "http://www.yesodweb.com/";
|
|
|
|
description = "WAI application for static serving";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 11:54:50 +02:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2011-08-10 01:00:20 +02:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2011-08-08 00:51:22 +02:00
|
|
|
};
|
|
|
|
})
|