2013-05-30 11:01:50 +02:00
|
|
|
{ cabal, aeson, blazeHtml, blazeMarkup, dataDefault, hamlet
|
|
|
|
, monadControl, networkConduit, safe, shakespeareCss, shakespeareJs
|
|
|
|
, text, transformers, unorderedContainers, wai, waiExtra, warp
|
|
|
|
, yaml, yesodAuth, yesodCore, yesodForm, yesodPersistent
|
2011-08-10 01:00:20 +02:00
|
|
|
}:
|
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";
|
2013-12-09 13:03:25 +01:00
|
|
|
version = "1.2.4";
|
|
|
|
sha256 = "0c8z4hsplfjb2ilrk0qbyighjipwcfhf55xqaw4zqvq752yj4n7c";
|
2011-08-10 01:00:20 +02:00
|
|
|
buildDepends = [
|
2013-05-30 11:01:50 +02:00
|
|
|
aeson blazeHtml blazeMarkup dataDefault hamlet monadControl
|
|
|
|
networkConduit safe shakespeareCss shakespeareJs text transformers
|
|
|
|
unorderedContainers wai waiExtra warp yaml yesodAuth yesodCore
|
|
|
|
yesodForm yesodPersistent
|
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";
|
2012-04-05 18:51:59 +02:00
|
|
|
license = self.stdenv.lib.licenses.mit;
|
2011-08-09 11:54:50 +02:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-11 00:36:36 +02:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-08-08 00:51:22 +02:00
|
|
|
};
|
|
|
|
})
|