2012-02-10 12:33:02 +01:00
|
|
|
{ cabal, aeson, attoparsec, blazeBuilder, blazeBuilderConduit
|
2012-02-14 18:00:37 +01:00
|
|
|
, Cabal, caseInsensitive, conduit, httpConduit, httpTypes, network
|
2012-02-10 12:33:02 +01:00
|
|
|
, tagsoup, text, transformers, unorderedContainers, xmlConduit
|
2011-08-10 01:00:20 +02:00
|
|
|
}:
|
2011-08-08 00:51:22 +02:00
|
|
|
|
2011-08-10 01:00:20 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2011-08-08 00:51:22 +02:00
|
|
|
pname = "authenticate";
|
2012-02-10 12:33:02 +01:00
|
|
|
version = "1.0.0";
|
|
|
|
sha256 = "0a163dhi69gh6zmi43jidxlaknbk1y0frjlwijdf7fp073rh0p87";
|
2011-08-10 01:00:20 +02:00
|
|
|
buildDepends = [
|
2012-02-14 18:00:37 +01:00
|
|
|
aeson attoparsec blazeBuilder blazeBuilderConduit Cabal
|
|
|
|
caseInsensitive conduit httpConduit httpTypes network tagsoup text
|
|
|
|
transformers unorderedContainers xmlConduit
|
2011-08-08 00:51:22 +02:00
|
|
|
];
|
|
|
|
meta = {
|
2011-12-21 11:49:05 +01:00
|
|
|
homepage = "http://github.com/yesodweb/authenticate";
|
2011-08-11 15:03:51 +02:00
|
|
|
description = "Authentication methods for Haskell web applications";
|
2011-08-08 00:51:22 +02:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 11:54:50 +02:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2011-08-10 01:00:20 +02:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2011-08-08 00:51:22 +02:00
|
|
|
};
|
|
|
|
})
|