dbce2ffd0f
svn path=/nixpkgs/trunk/; revision=28492
30 lines
984 B
Nix
30 lines
984 B
Nix
{ cabal, attoparsecText, blazeBuilder, hamlet, hjsmin, httpTypes
|
|
, mimeMail, monadControl, parsec, text, time, transformers
|
|
, unixCompat, wai, waiExtra, warp, yesodAuth, yesodCore, yesodForm
|
|
, yesodJson, yesodPersistent, yesodStatic
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "yesod";
|
|
version = "0.8.2.1";
|
|
sha256 = "0idpgzbzy31bl5khc83wgi9a9mzrymris0mg5dlc4kj4sd5a1ksi";
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
buildDepends = [
|
|
attoparsecText blazeBuilder hamlet hjsmin httpTypes mimeMail
|
|
monadControl parsec text time transformers unixCompat wai waiExtra
|
|
warp yesodAuth yesodCore yesodForm yesodJson yesodPersistent
|
|
yesodStatic
|
|
];
|
|
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
|
|
];
|
|
};
|
|
})
|