2011-08-10 01:00:20 +02:00
|
|
|
{ cabal, attoparsecText, blazeBuilder, hamlet, hjsmin, httpTypes
|
|
|
|
, mimeMail, monadControl, parsec, text, time, transformers
|
|
|
|
, unixCompat, wai, waiExtra, warp, yesodAuth, yesodCore, yesodForm
|
|
|
|
, yesodJson, yesodPersistent, yesodStatic
|
|
|
|
}:
|
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 = "yesod";
|
|
|
|
version = "0.8.2.1";
|
|
|
|
sha256 = "0idpgzbzy31bl5khc83wgi9a9mzrymris0mg5dlc4kj4sd5a1ksi";
|
2011-08-10 01:00:20 +02:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
2011-08-08 00:51:22 +02:00
|
|
|
attoparsecText blazeBuilder hamlet hjsmin httpTypes mimeMail
|
2011-08-10 01:00:20 +02:00
|
|
|
monadControl parsec text time transformers unixCompat wai waiExtra
|
|
|
|
warp yesodAuth yesodCore yesodForm yesodJson yesodPersistent
|
|
|
|
yesodStatic
|
2011-08-08 00:51:22 +02:00
|
|
|
];
|
|
|
|
meta = {
|
|
|
|
homepage = "http://www.yesodweb.com/";
|
2011-08-11 15:03:51 +02:00
|
|
|
description = "Creation of type-safe, RESTful web applications";
|
2011-08-08 00:51:22 +02:00
|
|
|
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
|
|
|
};
|
|
|
|
})
|