2014-03-30 20:07:29 +00:00
|
|
|
{ cabal, aeson, blazeHtml, blazeMarkup, conduitExtra, dataDefault
|
|
|
|
, fastLogger, hamlet, monadControl, monadLogger, networkConduit
|
|
|
|
, safe, shakespeare, 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-06-06 09:36:44 +00:00
|
|
|
version = "1.2.5.3";
|
|
|
|
sha256 = "1w9bbvinnbnhrajjqj6yhy9dgggdf6n98x04dys45anssiwrd2ss";
|
2011-08-09 23:00:20 +00:00
|
|
|
buildDepends = [
|
2014-03-30 20:07:29 +00:00
|
|
|
aeson blazeHtml blazeMarkup conduitExtra dataDefault fastLogger
|
|
|
|
hamlet monadControl monadLogger networkConduit safe shakespeare
|
|
|
|
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
|
|
|
};
|
|
|
|
})
|