201bdca962
- cryptocipher: updated to version 0.3.2 - Crypto: updated to version 4.2.5 - darcs: updated to version 2.8.1 - hamlet: updated to version 1.0.1.3 - monad-par-extras: updated to version 0.3.2 - persistent-template: updated to version 0.9.0.2 - pool-conduit: updated to version 0.1.0.2 - shakespeare-css: updated to version 1.0.1.2 - shakespeare-i18n: updated to version 1.0.0.2 - shakespeare-js: updated to version 1.0.0.2 - shakespeare-text: updated to version 1.0.0.2 - shakespeare: updated to version 1.0.0.2 - warp: updated to version 1.2.1 - wxcore: updated to version 0.90.0.1 - wxc: updated to version 0.90.0.3 - wx: updated to version 0.90.0.1 - xml-conduit: updated to version 0.7.0.3 - xss-sanitize: updated to version 0.3.2 - yesod-auth: updated to version 1.0.2.1 - yesod-core: updated to version 1.0.1.2 - yesod-default: updated to version 1.0.1.1 - yesod-form: updated to version 1.0.0.4 - yesod-json: updated to version 1.0.0.1 - yesod-persistent: updated to version 1.0.0.1 - yesod-routes: updated to version 1.0.1.2 - yesod-static: updated to version 1.0.0.2 - yesod: updated to version 1.0.1.6 svn path=/nixpkgs/trunk/; revision=34102
29 lines
1.1 KiB
Nix
29 lines
1.1 KiB
Nix
{ cabal, aeson, blazeBuilder, blazeHtml, blazeMarkup
|
|
, caseInsensitive, cereal, clientsession, conduit, cookie, failure
|
|
, fastLogger, hamlet, httpTypes, liftedBase, monadControl, parsec
|
|
, pathPieces, random, resourcet, shakespeare, shakespeareCss
|
|
, shakespeareI18n, shakespeareJs, text, time, transformers
|
|
, transformersBase, vector, wai, waiExtra, waiLogger, yesodRoutes
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "yesod-core";
|
|
version = "1.0.1.2";
|
|
sha256 = "1c9ay0xv2s1kcj92ai0bj1gbml4k4w62n2mw7c5r6m88k8wmxh6z";
|
|
buildDepends = [
|
|
aeson blazeBuilder blazeHtml blazeMarkup caseInsensitive cereal
|
|
clientsession conduit cookie failure fastLogger hamlet httpTypes
|
|
liftedBase monadControl parsec pathPieces random resourcet
|
|
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.mit;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|