2012-11-08 14:57:37 +01:00
|
|
|
{ cabal, attoparsec, base64Bytestring, blazeBuilder, blazeHtml
|
|
|
|
, blazeMarkup, Cabal, conduit, fileEmbed, filepath, fsnotify
|
|
|
|
, ghcPaths, hamlet, httpConduit, httpReverseProxy, httpTypes
|
|
|
|
, liftedBase, monadControl, network, 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 01:00:20 +02:00
|
|
|
}:
|
2011-08-08 00:51:22 +02:00
|
|
|
|
2011-08-10 01:00:20 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2011-08-08 00:51:22 +02:00
|
|
|
pname = "yesod";
|
2012-11-16 15:59:16 +01:00
|
|
|
version = "1.1.4";
|
|
|
|
sha256 = "1na50j7cd89mxk7ss67xlj703spvkpzcwgp7qs1pn2x3xsm7vrm2";
|
2011-08-10 01:00:20 +02:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
2012-11-08 14:57:37 +01:00
|
|
|
attoparsec base64Bytestring blazeBuilder blazeHtml blazeMarkup
|
|
|
|
Cabal conduit fileEmbed filepath fsnotify ghcPaths hamlet
|
|
|
|
httpConduit httpReverseProxy httpTypes liftedBase monadControl
|
|
|
|
network 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-08 00:51:22 +02:00
|
|
|
];
|
|
|
|
meta = {
|
|
|
|
homepage = "http://www.yesodweb.com/";
|
2011-08-11 15:03:51 +02:00
|
|
|
description = "Creation of type-safe, RESTful web applications";
|
2012-04-05 18:51:59 +02:00
|
|
|
license = self.stdenv.lib.licenses.mit;
|
2011-08-09 11:54:50 +02:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-08-08 00:51:22 +02:00
|
|
|
};
|
|
|
|
})
|