7295830f7e
- aeson: updated to version 0.6.0.1 - alex-meta: updated to version 0.3.0.3 - BNFC-meta: updated to version 0.3.0.1 - hakyll: updated to version 3.2.7.1 - happy-meta: updated to version 0.2.0.4 - http-enumerator: updated to version 0.7.3.2 - multiarg: updated to version 0.2.0.0 Disabled Haddock documentation for the following packages, because the input crashes Haddock: - BNFC-meta - alex-meta Re-enabled Haddock documentation for the following packages, because previously occurring errors have been fixed: - ConfigFile - HDBC-odbc - Hipmunk - instant-generics - RepLib - type-equality - xmonad - xmonad-extras - yesod-core svn path=/nixpkgs/trunk/; revision=33559
28 lines
1.1 KiB
Nix
28 lines
1.1 KiB
Nix
{ cabal, aeson, blazeBuilder, blazeHtml, caseInsensitive, cereal
|
|
, clientsession, conduit, cookie, failure, fastLogger, hamlet
|
|
, httpTypes, liftedBase, monadControl, parsec, pathPieces, random
|
|
, shakespeare, shakespeareCss, shakespeareI18n, shakespeareJs, text
|
|
, time, transformers, transformersBase, vector, wai, waiExtra
|
|
, waiLogger, yesodRoutes
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "yesod-core";
|
|
version = "0.10.3";
|
|
sha256 = "1mw78h6h7b4g67kyg4y01rcgi5bpb97hhzx0yqk4bmq23mzisg9m";
|
|
buildDepends = [
|
|
aeson blazeBuilder blazeHtml caseInsensitive cereal clientsession
|
|
conduit cookie failure fastLogger hamlet httpTypes liftedBase
|
|
monadControl parsec pathPieces random shakespeare shakespeareCss
|
|
shakespeareI18n shakespeareJs text time transformers
|
|
transformersBase vector wai waiExtra waiLogger yesodRoutes
|
|
];
|
|
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 ];
|
|
};
|
|
})
|