04e2d193bd
svn path=/nixpkgs/trunk/; revision=28902
30 lines
1,004 B
Nix
30 lines
1,004 B
Nix
{ cabal, attoparsecText, blazeBuilder, blazeHtml, hamlet, httpTypes
|
|
, monadControl, parsec, shakespeareCss, shakespeareJs, text, time
|
|
, transformers, unixCompat, wai, waiExtra, warp, yesodAuth
|
|
, yesodCore, yesodForm, yesodJson, yesodPersistent
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "yesod";
|
|
version = "0.9.1";
|
|
sha256 = "1ag3lca75lrriycbscspb5yyishacgxjx0rybc3x4z1dqnkn1r71";
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
buildDepends = [
|
|
attoparsecText blazeBuilder blazeHtml hamlet httpTypes monadControl
|
|
parsec shakespeareCss shakespeareJs text time transformers
|
|
unixCompat wai waiExtra warp yesodAuth yesodCore yesodForm
|
|
yesodJson yesodPersistent
|
|
];
|
|
meta = {
|
|
homepage = "http://www.yesodweb.com/";
|
|
description = "Creation of type-safe, RESTful web applications";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [
|
|
self.stdenv.lib.maintainers.andres
|
|
self.stdenv.lib.maintainers.simons
|
|
];
|
|
};
|
|
})
|