880dcc2c64
By now, it happened twice that a commit broke GHC and thus all Haskell packages we have in Nixpkgs. On such an occasion, I receive well in excess of 3000 notification e-mails from Hydra, and then I receive another 3000 e-mails after the bug has been fixed. Under these circumstances, subscribing to these notifications makes no sense for me. svn path=/nixpkgs/trunk/; revision=33392
29 lines
1 KiB
Nix
29 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 = "0.10.2";
|
|
sha256 = "15dswvhn9vz3bpdvbypg8x8gwhjkwj170b8mqznp10drccxyizs2";
|
|
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.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|