28 lines
1.1 KiB
Nix
28 lines
1.1 KiB
Nix
{ cabal, aeson, authenticate, blazeHtml, blazeMarkup, dataDefault
|
|
, emailValidate, fileEmbed, hamlet, httpConduit, httpTypes
|
|
, liftedBase, mimeMail, network, persistent, persistentTemplate
|
|
, pureMD5, pwstoreFast, random, resourcet, safe, SHA
|
|
, shakespeareCss, shakespeareJs, text, time, transformers
|
|
, unorderedContainers, wai, yesodCore, yesodForm, yesodPersistent
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "yesod-auth";
|
|
version = "1.2.4";
|
|
sha256 = "1bpcz8ihjqdhyxxm4ib4yhgj5h491lxv34mpc3x55wl2daq731qi";
|
|
buildDepends = [
|
|
aeson authenticate blazeHtml blazeMarkup dataDefault emailValidate
|
|
fileEmbed hamlet httpConduit httpTypes liftedBase mimeMail network
|
|
persistent persistentTemplate pureMD5 pwstoreFast random resourcet
|
|
safe SHA shakespeareCss shakespeareJs text time transformers
|
|
unorderedContainers wai yesodCore yesodForm yesodPersistent
|
|
];
|
|
meta = {
|
|
homepage = "http://www.yesodweb.com/";
|
|
description = "Authentication for Yesod";
|
|
license = self.stdenv.lib.licenses.mit;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|