2012-11-16 14:59:16 +00:00
|
|
|
{ cabal, aeson, attoparsec, blazeBuilder, blazeHtml, blazeMarkup
|
2013-02-24 21:09:07 +00:00
|
|
|
, cryptoApi, dataDefault, emailValidate, hamlet, hspec, network
|
2012-08-09 11:10:54 +01:00
|
|
|
, persistent, shakespeareCss, shakespeareJs, text, time
|
|
|
|
, transformers, wai, xssSanitize, yesodCore, yesodPersistent
|
2011-08-10 00:00:20 +01:00
|
|
|
}:
|
2011-07-07 22:40:46 +01:00
|
|
|
|
2011-08-10 00:00:20 +01:00
|
|
|
cabal.mkDerivation (self: {
|
2011-07-07 22:40:46 +01:00
|
|
|
pname = "yesod-form";
|
2013-02-20 10:58:07 +00:00
|
|
|
version = "1.2.1.3";
|
|
|
|
sha256 = "1mrqr6pfrhkk0vv9lhd4wxiic8d1hsraiqmjcqsfbpdyrc6fqypq";
|
2011-08-10 00:00:20 +01:00
|
|
|
buildDepends = [
|
2012-11-16 14:59:16 +00:00
|
|
|
aeson attoparsec blazeBuilder blazeHtml blazeMarkup cryptoApi
|
|
|
|
dataDefault emailValidate hamlet network persistent shakespeareCss
|
2012-08-09 11:10:54 +01:00
|
|
|
shakespeareJs text time transformers wai xssSanitize yesodCore
|
|
|
|
yesodPersistent
|
2011-07-07 22:40:46 +01:00
|
|
|
];
|
2013-02-24 21:09:07 +00:00
|
|
|
testDepends = [ hspec text time ];
|
2011-07-07 22:40:46 +01:00
|
|
|
meta = {
|
2011-08-07 23:01:16 +01:00
|
|
|
homepage = "http://www.yesodweb.com/";
|
2011-07-07 22:40:46 +01:00
|
|
|
description = "Form handling support for Yesod Web Framework";
|
2012-04-05 17:51:59 +01:00
|
|
|
license = self.stdenv.lib.licenses.mit;
|
2011-08-09 10:54:50 +01:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 23:36:36 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-07-07 22:40:46 +01:00
|
|
|
};
|
|
|
|
})
|