3b2254a3af
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
34 lines
1.4 KiB
Nix
34 lines
1.4 KiB
Nix
{ cabal, aeson, blazeBuilder, blazeHtml, blazeMarkup
|
|
, caseInsensitive, cereal, clientsession, conduit, cookie, failure
|
|
, fastLogger, hamlet, hspec, httpTypes, HUnit, liftedBase
|
|
, monadControl, monadLogger, parsec, pathPieces, QuickCheck, random
|
|
, resourcet, shakespeare, shakespeareCss, shakespeareI18n
|
|
, shakespeareJs, text, time, transformers, transformersBase, vector
|
|
, wai, waiExtra, waiTest, yesodRoutes
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "yesod-core";
|
|
version = "1.1.8.3";
|
|
sha256 = "116vglpqh2561g0gzhm4ijwx829c50ai1hh715vwi5j5i01y2rkr";
|
|
buildDepends = [
|
|
aeson blazeBuilder blazeHtml blazeMarkup caseInsensitive cereal
|
|
clientsession conduit cookie failure fastLogger hamlet httpTypes
|
|
liftedBase monadControl monadLogger parsec pathPieces random
|
|
resourcet shakespeare shakespeareCss shakespeareI18n shakespeareJs
|
|
text time transformers transformersBase vector wai waiExtra
|
|
yesodRoutes
|
|
];
|
|
testDepends = [
|
|
blazeBuilder conduit hamlet hspec httpTypes HUnit QuickCheck random
|
|
shakespeareCss shakespeareJs text transformers wai waiTest
|
|
];
|
|
jailbreak = true;
|
|
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 ];
|
|
};
|
|
})
|