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-10 18:34:03 +00:00
|
|
|
version = "1.2.6";
|
|
|
|
sha256 = "0rw46zznczdzg2wvbgp5kpq3yrl6w40vbbs7zyvqpcf6m82jsfz0";
|
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
|
|
|
};
|
|
|
|
})
|