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
23 lines
819 B
Nix
23 lines
819 B
Nix
{ cabal, blazeBuilder, blazeHtml, dataDefault, emailValidate
|
|
, hamlet, network, persistent, shakespeareCss, shakespeareJs, text
|
|
, time, transformers, wai, xssSanitize, yesodCore, yesodPersistent
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "yesod-form";
|
|
version = "0.4.2.1";
|
|
sha256 = "0zpmyqxbknz8pdib1gdf410jv4xndn4pphdigagqxl5m5c2hi1v2";
|
|
buildDepends = [
|
|
blazeBuilder blazeHtml dataDefault emailValidate hamlet network
|
|
persistent shakespeareCss shakespeareJs text time transformers wai
|
|
xssSanitize yesodCore yesodPersistent
|
|
];
|
|
meta = {
|
|
homepage = "http://www.yesodweb.com/";
|
|
description = "Form handling support for Yesod Web Framework";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|