2014-03-11 03:50:01 -07:00
|
|
|
{ cabal, aeson, async, attoparsecConduit, blazeBuilder, blazeHtml
|
2013-05-30 02:01:49 -07:00
|
|
|
, blazeMarkup, caseInsensitive, cereal, clientsession, conduit
|
2014-03-30 13:07:24 -07:00
|
|
|
, conduitExtra, cookie, dataDefault, fastLogger, hamlet, hspec
|
2014-04-07 03:43:41 -07:00
|
|
|
, httpTypes, HUnit, liftedBase, monadControl, monadLogger, mtl
|
|
|
|
, network, networkConduit, parsec, pathPieces, QuickCheck, random
|
|
|
|
, resourcet, safe, shakespeare, shakespeareCss, shakespeareI18n
|
|
|
|
, shakespeareJs, streamingCommons, text, time, transformers
|
|
|
|
, transformersBase, unixCompat, vector, wai, waiExtra, waiLogger
|
|
|
|
, waiTest, warp, yesodRoutes
|
2011-08-09 16:00:20 -07:00
|
|
|
}:
|
2011-07-07 14:40:35 -07:00
|
|
|
|
2011-08-09 16:00:20 -07:00
|
|
|
cabal.mkDerivation (self: {
|
2011-07-07 14:40:35 -07:00
|
|
|
pname = "yesod-core";
|
2014-04-07 03:43:41 -07:00
|
|
|
version = "1.2.11";
|
|
|
|
sha256 = "0vg07g5735qsr01wpgxpjzjc7w9nrqvkhfnd90jzdvg3kg33dgih";
|
2011-08-09 16:00:20 -07:00
|
|
|
buildDepends = [
|
2013-05-30 02:01:49 -07:00
|
|
|
aeson attoparsecConduit blazeBuilder blazeHtml blazeMarkup
|
2014-03-30 13:07:24 -07:00
|
|
|
caseInsensitive cereal clientsession conduit conduitExtra cookie
|
|
|
|
dataDefault fastLogger hamlet httpTypes liftedBase monadControl
|
2014-04-07 03:43:41 -07:00
|
|
|
monadLogger mtl parsec pathPieces random resourcet safe shakespeare
|
2014-03-30 13:07:24 -07:00
|
|
|
shakespeareCss shakespeareI18n shakespeareJs text time transformers
|
2013-12-09 04:03:25 -08:00
|
|
|
transformersBase unixCompat vector wai waiExtra waiLogger warp
|
|
|
|
yesodRoutes
|
2011-07-07 14:40:35 -07:00
|
|
|
];
|
2013-02-24 13:09:07 -08:00
|
|
|
testDepends = [
|
2014-03-30 13:07:24 -07:00
|
|
|
async blazeBuilder conduit conduitExtra hamlet hspec httpTypes
|
|
|
|
HUnit liftedBase network networkConduit QuickCheck random resourcet
|
|
|
|
shakespeare shakespeareCss shakespeareJs streamingCommons text
|
|
|
|
transformers wai waiTest
|
2013-02-24 13:09:07 -08:00
|
|
|
];
|
2013-09-28 04:28:30 -07:00
|
|
|
jailbreak = true;
|
2011-07-07 14:40:35 -07:00
|
|
|
meta = {
|
2011-08-07 15:01:20 -07:00
|
|
|
homepage = "http://www.yesodweb.com/";
|
2011-08-11 06:03:51 -07:00
|
|
|
description = "Creation of type-safe, RESTful web applications";
|
2012-04-05 09:51:59 -07:00
|
|
|
license = self.stdenv.lib.licenses.mit;
|
2011-08-09 02:54:50 -07:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 15:36:36 -07:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-07-07 14:40:35 -07:00
|
|
|
};
|
|
|
|
})
|