2012-12-03 15:11:07 +00:00
|
|
|
{ cabal, aeson, attoparsec, base64Bytestring, blazeBuilder
|
|
|
|
, blazeHtml, blazeMarkup, Cabal, conduit, fileEmbed, filepath
|
|
|
|
, fsnotify, ghcPaths, hamlet, httpConduit, httpReverseProxy
|
2012-12-12 10:54:27 +00:00
|
|
|
, httpTypes, liftedBase, monadControl, network, networkConduit
|
|
|
|
, optparseApplicative, parsec, projectTemplate, resourcet
|
|
|
|
, shakespeare, shakespeareCss, shakespeareJs, shakespeareText
|
|
|
|
, split, systemFileio, systemFilepath, tar, text, time
|
|
|
|
, transformers, unixCompat, unorderedContainers, wai, waiExtra
|
|
|
|
, warp, yaml, yesodAuth, yesodCore, yesodDefault, yesodForm
|
|
|
|
, yesodJson, yesodPersistent, zlib
|
2011-08-10 00:00:20 +01:00
|
|
|
}:
|
2011-08-07 23:51:22 +01:00
|
|
|
|
2011-08-10 00:00:20 +01:00
|
|
|
cabal.mkDerivation (self: {
|
2011-08-07 23:51:22 +01:00
|
|
|
pname = "yesod";
|
2013-04-25 08:05:38 +01:00
|
|
|
version = "1.1.9.3";
|
|
|
|
sha256 = "16w96lyd0z9slhzggbvmb23yfr3jkwywpmp15kbilwn7ghjlkm41";
|
2011-08-10 00:00:20 +01:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
2012-12-03 15:11:07 +00:00
|
|
|
aeson attoparsec base64Bytestring blazeBuilder blazeHtml
|
|
|
|
blazeMarkup Cabal conduit fileEmbed filepath fsnotify ghcPaths
|
|
|
|
hamlet httpConduit httpReverseProxy httpTypes liftedBase
|
2012-12-12 10:54:27 +00:00
|
|
|
monadControl network networkConduit optparseApplicative parsec
|
|
|
|
projectTemplate resourcet shakespeare shakespeareCss shakespeareJs
|
|
|
|
shakespeareText split systemFileio systemFilepath tar text time
|
|
|
|
transformers unixCompat unorderedContainers wai waiExtra warp yaml
|
|
|
|
yesodAuth yesodCore yesodDefault yesodForm yesodJson
|
|
|
|
yesodPersistent zlib
|
2011-08-07 23:51:22 +01:00
|
|
|
];
|
|
|
|
meta = {
|
|
|
|
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-08-07 23:51:22 +01:00
|
|
|
};
|
|
|
|
})
|