4fb2bea7e7
svn path=/nixpkgs/trunk/; revision=30152
29 lines
980 B
Nix
29 lines
980 B
Nix
{ cabal, aesonNative, authenticate, blazeHtml, controlMonadAttempt
|
|
, hamlet, httpEnumerator, mimeMail, persistent, persistentTemplate
|
|
, pureMD5, pwstoreFast, random, SHA, shakespeareCss, text
|
|
, transformers, wai, yesodCore, yesodForm, yesodJson
|
|
, yesodPersistent
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "yesod-auth";
|
|
version = "0.7.5";
|
|
sha256 = "1njs3z01as6mamdflx2686s4qq4qwpkl0xnfdlrhswzgfpn8qqb6";
|
|
buildDepends = [
|
|
aesonNative authenticate blazeHtml controlMonadAttempt hamlet
|
|
httpEnumerator mimeMail persistent persistentTemplate pureMD5
|
|
pwstoreFast random SHA shakespeareCss text transformers wai
|
|
yesodCore yesodForm yesodJson yesodPersistent
|
|
];
|
|
meta = {
|
|
homepage = "http://www.yesodweb.com/";
|
|
description = "Authentication for Yesod";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [
|
|
self.stdenv.lib.maintainers.andres
|
|
self.stdenv.lib.maintainers.simons
|
|
];
|
|
};
|
|
})
|