2012-02-10 11:33:02 +00:00
|
|
|
{ cabal, aeson, attoparsec, blazeBuilder, blazeBuilderConduit
|
2012-04-05 17:51:59 +01:00
|
|
|
, caseInsensitive, conduit, httpConduit, httpTypes, monadControl
|
|
|
|
, network, resourcet, tagsoup, text, transformers
|
|
|
|
, unorderedContainers, xmlConduit
|
2011-08-10 00:00:20 +01:00
|
|
|
}:
|
2011-08-07 23:51:22 +01:00
|
|
|
|
2011-08-10 00:00:20 +01:00
|
|
|
cabal.mkDerivation (self: {
|
2011-08-07 23:51:22 +01:00
|
|
|
pname = "authenticate";
|
2012-04-20 10:57:42 +01:00
|
|
|
version = "1.2.1";
|
|
|
|
sha256 = "0ifx24129ahq1rb2601n4736w5j257w10wcym5m9kp0jjb4p7s83";
|
2011-08-10 00:00:20 +01:00
|
|
|
buildDepends = [
|
2012-02-16 14:05:41 +00:00
|
|
|
aeson attoparsec blazeBuilder blazeBuilderConduit caseInsensitive
|
2012-04-05 17:51:59 +01:00
|
|
|
conduit httpConduit httpTypes monadControl network resourcet
|
|
|
|
tagsoup text transformers unorderedContainers xmlConduit
|
2011-08-07 23:51:22 +01:00
|
|
|
];
|
|
|
|
meta = {
|
2011-12-21 10:49:05 +00:00
|
|
|
homepage = "http://github.com/yesodweb/authenticate";
|
2011-08-11 14:03:51 +01:00
|
|
|
description = "Authentication methods for Haskell web applications";
|
2011-08-07 23:51:22 +01:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 10:54:50 +01:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 10:21:28 +00:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-08-07 23:51:22 +01:00
|
|
|
};
|
|
|
|
})
|