3117cc72fb
- clientsession: updated to version 0.7.5 - gloss: updated to version 1.7.4.1 - haskeline: enable terminfo support and patch to support mtl >= 2.1 - HaskellForMaths: updated to version 0.4.5 - HsOpenSSL: updated to version 0.10.3.1 - language-javascript: updated to version 0.5.3 - mtl: added version 2.1.1 - network: updated to version 2.3.0.13 - repa-algorithms: updated to version 3.1.3.1 - repa-examples: updated to version 3.1.3.1 - repa-io: updated to version 3.1.3.1 - repa: updated to version 3.1.3.2 - resourcet: updated to version 0.3.2.1 - RSA: updated to version 1.2.1.0 - yesod-auth: updated to version 1.0.2 - yesod-form: updated to version 1.0.0.3 - yesod: updated to version 1.0.1.3 - zlib-enum: updated to version 0.2.2 svn path=/nixpkgs/trunk/; revision=33913
28 lines
1 KiB
Nix
28 lines
1 KiB
Nix
{ cabal, attoparsec, blazeBuilder, blazeHtml, Cabal, fastLogger
|
|
, filepath, hamlet, httpTypes, monadControl, parsec, shakespeareCss
|
|
, shakespeareJs, shakespeareText, text, time, transformers
|
|
, unixCompat, wai, waiExtra, waiLogger, warp, yesodAuth, yesodCore
|
|
, yesodForm, yesodJson, yesodPersistent
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "yesod";
|
|
version = "1.0.1.3";
|
|
sha256 = "0pbfvaza4q8znnxpkh9fb1fys09byws9n34lv0rs70nrbdq5yp5r";
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
buildDepends = [
|
|
attoparsec blazeBuilder blazeHtml Cabal fastLogger filepath hamlet
|
|
httpTypes monadControl parsec shakespeareCss shakespeareJs
|
|
shakespeareText text time transformers unixCompat wai waiExtra
|
|
waiLogger 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.mit;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|