2011-11-28 19:12:16 +01:00
|
|
|
{ cabal, aeson, blazeBuilder, blazeHtml, caseInsensitive, cereal
|
|
|
|
, clientsession, cookie, dataObject, dataObjectYaml, enumerator
|
|
|
|
, failure, hamlet, httpTypes, monadControl, parsec, pathPieces
|
|
|
|
, random, shakespeare, shakespeareCss, shakespeareJs
|
2011-12-05 17:00:10 +01:00
|
|
|
, strictConcurrency, text, time, transformers, transformersBase
|
|
|
|
, vector, wai, waiExtra
|
2011-08-10 01:00:20 +02:00
|
|
|
}:
|
2011-07-07 23:40:35 +02:00
|
|
|
|
2011-08-10 01:00:20 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2011-07-07 23:40:35 +02:00
|
|
|
pname = "yesod-core";
|
2011-12-07 11:46:19 +01:00
|
|
|
version = "0.9.3.6";
|
|
|
|
sha256 = "00h1ylrr5wrid9vn3jhspibprx0175j9rcwdb1hd7ya5gwmzlhjs";
|
2011-08-10 01:00:20 +02:00
|
|
|
buildDepends = [
|
2011-11-28 19:12:16 +01:00
|
|
|
aeson blazeBuilder blazeHtml caseInsensitive cereal clientsession
|
|
|
|
cookie dataObject dataObjectYaml enumerator failure hamlet
|
|
|
|
httpTypes monadControl parsec pathPieces random shakespeare
|
2011-10-19 21:45:47 +02:00
|
|
|
shakespeareCss shakespeareJs strictConcurrency text time
|
2011-12-05 17:00:10 +01:00
|
|
|
transformers transformersBase vector wai waiExtra
|
2011-07-07 23:40:35 +02:00
|
|
|
];
|
|
|
|
meta = {
|
2011-08-08 00:01:20 +02:00
|
|
|
homepage = "http://www.yesodweb.com/";
|
2011-08-11 15:03:51 +02:00
|
|
|
description = "Creation of type-safe, RESTful web applications";
|
2011-08-08 00:01:20 +02:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 11:54:50 +02:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2011-08-08 00:01:20 +02:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
2011-08-10 01:00:20 +02:00
|
|
|
self.stdenv.lib.maintainers.simons
|
2011-08-08 00:01:20 +02:00
|
|
|
];
|
2011-07-07 23:40:35 +02:00
|
|
|
};
|
|
|
|
})
|