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