2012-02-14 18:00:37 +01:00
|
|
|
{ cabal, aeson, blazeBuilder, blazeHtml, Cabal, caseInsensitive
|
|
|
|
, cereal, clientsession, conduit, cookie, failure, fastLogger
|
|
|
|
, hamlet, httpTypes, liftedBase, monadControl, parsec, pathPieces
|
|
|
|
, random, shakespeare, shakespeareCss, shakespeareI18n
|
|
|
|
, shakespeareJs, text, time, transformers, transformersBase, vector
|
|
|
|
, wai, waiExtra, waiLogger, yesodRoutes
|
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";
|
2012-02-10 12:34:04 +01:00
|
|
|
version = "0.10.1";
|
|
|
|
sha256 = "011bxz0wjd349jhwxh0cs1lhqpjgwq57ia8wzxf21bcwy8c08nj0";
|
2011-08-10 01:00:20 +02:00
|
|
|
buildDepends = [
|
2012-02-14 18:00:37 +01:00
|
|
|
aeson blazeBuilder blazeHtml Cabal caseInsensitive cereal
|
|
|
|
clientsession conduit cookie failure fastLogger hamlet httpTypes
|
|
|
|
liftedBase monadControl parsec pathPieces random shakespeare
|
|
|
|
shakespeareCss shakespeareI18n shakespeareJs text time transformers
|
2012-02-10 12:34:04 +01:00
|
|
|
transformersBase vector wai waiExtra waiLogger yesodRoutes
|
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
|
|
|
};
|
|
|
|
})
|