2012-05-15 12:50:48 +01:00
|
|
|
{ cabal, attoparsec, blazeBuilder, blazeHtml, blazeMarkup, Cabal
|
|
|
|
, fastLogger, filepath, hamlet, httpTypes, monadControl, parsec
|
|
|
|
, shakespeareCss, shakespeareJs, shakespeareText, text, time
|
|
|
|
, transformers, unixCompat, wai, waiExtra, waiLogger, warp
|
|
|
|
, yesodAuth, yesodCore, yesodForm, yesodJson, yesodPersistent
|
2011-08-10 00:00:20 +01:00
|
|
|
}:
|
2011-08-07 23:51:22 +01:00
|
|
|
|
2011-08-10 00:00:20 +01:00
|
|
|
cabal.mkDerivation (self: {
|
2011-08-07 23:51:22 +01:00
|
|
|
pname = "yesod";
|
2012-05-15 12:50:48 +01:00
|
|
|
version = "1.0.1.6";
|
|
|
|
sha256 = "0w5k5bcv50fjpyja6ydknk78dk50swx6b0myhizj8rcf851xga43";
|
2011-08-10 00:00:20 +01:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
2012-05-15 12:50:48 +01:00
|
|
|
attoparsec blazeBuilder blazeHtml blazeMarkup Cabal fastLogger
|
|
|
|
filepath hamlet httpTypes monadControl parsec shakespeareCss
|
|
|
|
shakespeareJs shakespeareText text time transformers unixCompat wai
|
|
|
|
waiExtra waiLogger warp yesodAuth yesodCore yesodForm yesodJson
|
2012-02-14 17:00:37 +00:00
|
|
|
yesodPersistent
|
2011-08-07 23:51:22 +01:00
|
|
|
];
|
|
|
|
meta = {
|
|
|
|
homepage = "http://www.yesodweb.com/";
|
2011-08-11 14:03:51 +01:00
|
|
|
description = "Creation of type-safe, RESTful web applications";
|
2012-04-05 17:51:59 +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-08-07 23:51:22 +01:00
|
|
|
};
|
|
|
|
})
|