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