8691ff4ea1
- certificate: updated to version 1.2.1 - crypto-api: updated to version 0.10.1 - crypto-conduit: patched to build crypto-api 0.10.x - http-conduit: updated to version 1.4.1.2 - http-enumerator: deleted obsolete package - MonadCatchIO-transformers: updated to version 0.3.0.0 - pem: updated to version 0.1.1 - RSA: updated to version 1.2.0.0 - skein: updated to version 0.1.0.5 - snap-core: patched to support MonadCatchIO-transformers version 0.3.0.0 - snap-server: patched to support MonadCatchIO-transformers version 0.3.0.0 - tagged: updated to version 0.4.2 - tls-extra: updated to version 0.4.5 - tls: updated to version 0.9.3 - yesod-auth: updated to version 1.0.1 - yesod: updated to version 1.0.1.1 svn path=/nixpkgs/trunk/; revision=33839
26 lines
933 B
Nix
26 lines
933 B
Nix
{ cabal, aeson, authenticate, blazeHtml, 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.0.1";
|
|
sha256 = "0rbpf2fldpd46dbcd77zryb91gh3q86k5xdb07clsy384qx7ynq6";
|
|
buildDepends = [
|
|
aeson authenticate blazeHtml 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 ];
|
|
};
|
|
})
|