89ebfa875d
svn path=/nixpkgs/trunk/; revision=29279
31 lines
1 KiB
Nix
31 lines
1 KiB
Nix
{ cabal, attoparsecText, blazeBuilder, blazeHtml, hamlet, httpTypes
|
|
, monadControl, parsec, shakespeareCss, shakespeareJs
|
|
, shakespeareText, text, time, transformers, unixCompat, wai
|
|
, waiExtra, warp, yesodAuth, yesodCore, yesodForm, yesodJson
|
|
, yesodPersistent
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "yesod";
|
|
version = "0.9.2.2";
|
|
sha256 = "09l7cdsrxlr1nb03h3nisih9sm824gnp3nkblvgh8b1pfi54wdkl";
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
buildDepends = [
|
|
attoparsecText blazeBuilder blazeHtml hamlet httpTypes monadControl
|
|
parsec shakespeareCss shakespeareJs shakespeareText 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
|
|
];
|
|
};
|
|
})
|