2014-05-15 16:09:49 +02:00
|
|
|
{ cabal, aeson, authenticate, base16Bytestring, base64Bytestring
|
|
|
|
, binary, blazeHtml, blazeMarkup, byteable, cryptohash, dataDefault
|
|
|
|
, emailValidate, fileEmbed, hamlet, httpConduit, httpTypes
|
|
|
|
, liftedBase, mimeMail, network, persistent, persistentTemplate
|
|
|
|
, random, resourcet, safe, shakespeare, shakespeareCss
|
|
|
|
, shakespeareJs, text, time, transformers, unorderedContainers, wai
|
|
|
|
, yesodCore, yesodForm, yesodPersistent
|
2011-08-10 01:00:20 +02:00
|
|
|
}:
|
2011-08-08 00:51:22 +02:00
|
|
|
|
2011-08-10 01:00:20 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2011-08-08 00:51:22 +02:00
|
|
|
pname = "yesod-auth";
|
2014-05-15 16:09:49 +02:00
|
|
|
version = "1.3.0.5";
|
|
|
|
sha256 = "03vwmc2hql07mfl2s7a3sry82x0y0icr1977p1ljfhinyh35zc6l";
|
2011-08-10 01:00:20 +02:00
|
|
|
buildDepends = [
|
2014-05-15 16:09:49 +02:00
|
|
|
aeson authenticate base16Bytestring base64Bytestring binary
|
|
|
|
blazeHtml blazeMarkup byteable cryptohash dataDefault emailValidate
|
|
|
|
fileEmbed hamlet httpConduit httpTypes liftedBase mimeMail network
|
|
|
|
persistent persistentTemplate random resourcet safe shakespeare
|
|
|
|
shakespeareCss shakespeareJs text time transformers
|
|
|
|
unorderedContainers wai yesodCore yesodForm yesodPersistent
|
2011-08-08 00:51:22 +02:00
|
|
|
];
|
|
|
|
meta = {
|
|
|
|
homepage = "http://www.yesodweb.com/";
|
2011-08-11 15:03:51 +02:00
|
|
|
description = "Authentication for Yesod";
|
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-08-08 00:51:22 +02:00
|
|
|
};
|
|
|
|
})
|