5968d4645b
svn path=/nixpkgs/trunk/; revision=31075
30 lines
1,013 B
Nix
30 lines
1,013 B
Nix
{ cabal, aeson, authenticate, blazeHtml, controlMonadAttempt
|
|
, hamlet, httpEnumerator, mimeMail, persistent, persistentTemplate
|
|
, pureMD5, pwstoreFast, random, SHA, shakespeareCss, text
|
|
, transformers, unorderedContainers, wai, yesodCore, yesodForm
|
|
, yesodJson, yesodPersistent
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "yesod-auth";
|
|
version = "0.7.9";
|
|
sha256 = "08vlj61y3czv0v8dnfdkyfww5sccia6j0fxnn1hxk44zghwhy214";
|
|
buildDepends = [
|
|
aeson authenticate blazeHtml controlMonadAttempt hamlet
|
|
httpEnumerator 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.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [
|
|
self.stdenv.lib.maintainers.andres
|
|
self.stdenv.lib.maintainers.simons
|
|
];
|
|
};
|
|
})
|