27 lines
962 B
Nix
27 lines
962 B
Nix
{ cabal, aeson, authenticate, blazeHtml, blazeMarkup, hamlet
|
|
, httpConduit, liftedBase, mimeMail, persistent, persistentTemplate
|
|
, pureMD5, pwstoreFast, random, SHA, shakespeareCss, text
|
|
, transformers, unorderedContainers, wai, yesodCore, yesodForm
|
|
, yesodJson, yesodPersistent
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "yesod-auth";
|
|
version = "1.1.1";
|
|
sha256 = "03zywcdv8kb0h8hpdg1zb3c10s6y6j3gg64n8w970f0izi93haxv";
|
|
buildDepends = [
|
|
aeson authenticate blazeHtml blazeMarkup hamlet httpConduit
|
|
liftedBase mimeMail persistent persistentTemplate pureMD5
|
|
pwstoreFast random SHA shakespeareCss text transformers
|
|
unorderedContainers wai yesodCore yesodForm yesodJson
|
|
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 ];
|
|
};
|
|
})
|