2012-05-15 11:50:48 +00:00
|
|
|
{ cabal, attoparsec, blazeBuilder, blazeHtml, blazeMarkup, Cabal
|
2012-08-09 10:10:54 +00:00
|
|
|
, filepath, hamlet, httpTypes, monadControl, parsec, shakespeareCss
|
|
|
|
, shakespeareJs, shakespeareText, systemFileio, systemFilepath, tar
|
|
|
|
, text, time, transformers, unixCompat, unorderedContainers, wai
|
|
|
|
, waiExtra, warp, yaml, yesodAuth, yesodCore, yesodForm, yesodJson
|
|
|
|
, yesodPersistent, zlib
|
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";
|
2012-09-25 11:12:48 +00:00
|
|
|
version = "1.1.1";
|
|
|
|
sha256 = "0666g2ap6ignqif9vwis2bnsb45jb19llw9z20nsfs0q3wj8ykn3";
|
2011-08-09 23:00:20 +00:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
2012-08-09 10:10:54 +00:00
|
|
|
attoparsec blazeBuilder blazeHtml blazeMarkup Cabal filepath hamlet
|
|
|
|
httpTypes monadControl parsec shakespeareCss shakespeareJs
|
|
|
|
shakespeareText systemFileio systemFilepath tar text time
|
|
|
|
transformers unixCompat unorderedContainers wai waiExtra warp yaml
|
|
|
|
yesodAuth yesodCore yesodForm yesodJson yesodPersistent zlib
|
2011-08-07 22:51:22 +00:00
|
|
|
];
|
2012-09-20 12:34:54 +00:00
|
|
|
jailbreak = true;
|
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;
|
2012-03-24 10:21:28 +00:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-08-07 22:51:22 +00:00
|
|
|
};
|
|
|
|
})
|