2014-02-10 10:06:50 +00:00
|
|
|
{ cabal, aeson, blazeHtml, blazeMarkup, dataDefault, fastLogger
|
|
|
|
, hamlet, monadControl, monadLogger, networkConduit, safe
|
|
|
|
, shakespeareCss, shakespeareJs, text, transformers
|
|
|
|
, unorderedContainers, wai, waiExtra, warp, yaml, yesodAuth
|
|
|
|
, yesodCore, yesodForm, yesodPersistent
|
2011-08-09 23:00:20 +00:00
|
|
|
}:
|
2011-08-07 22:51:22 +00:00
|
|
|
|
2011-08-09 23:00:20 +00:00
|
|
|
cabal.mkDerivation (self: {
|
2011-08-07 22:51:22 +00:00
|
|
|
pname = "yesod";
|
2014-03-27 12:18:02 +00:00
|
|
|
version = "1.2.5.1";
|
|
|
|
sha256 = "1q4fnhvc5kl17z5hkbwa35rqp68nflmayszxj1v65gvplagv5cxn";
|
2011-08-09 23:00:20 +00:00
|
|
|
buildDepends = [
|
2014-02-10 10:06:50 +00:00
|
|
|
aeson blazeHtml blazeMarkup dataDefault fastLogger hamlet
|
|
|
|
monadControl monadLogger networkConduit safe shakespeareCss
|
|
|
|
shakespeareJs text transformers unorderedContainers wai waiExtra
|
|
|
|
warp yaml yesodAuth yesodCore yesodForm yesodPersistent
|
2011-08-07 22:51:22 +00:00
|
|
|
];
|
|
|
|
meta = {
|
|
|
|
homepage = "http://www.yesodweb.com/";
|
2011-08-11 13:03:51 +00:00
|
|
|
description = "Creation of type-safe, RESTful web applications";
|
2012-04-05 16:51:59 +00:00
|
|
|
license = self.stdenv.lib.licenses.mit;
|
2011-08-09 09:54:50 +00:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 22:36:36 +00:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-08-07 22:51:22 +00:00
|
|
|
};
|
|
|
|
})
|