nixpkgs/pkgs/development/libraries/haskell/authenticate/default.nix
Peter Simons c05f314f7f Updated Haskell packages.
- authenticate: updated to version 1.2.1
 - blaze-builder-enumerator: updated to version 0.2.0.4
 - graphviz: updated to version 2999.13.0.2
 - tls: updated to version 0.9.4

svn path=/nixpkgs/trunk/; revision=33853
2012-04-20 09:57:42 +00:00

24 lines
871 B
Nix

{ cabal, aeson, attoparsec, blazeBuilder, blazeBuilderConduit
, caseInsensitive, conduit, httpConduit, httpTypes, monadControl
, network, resourcet, tagsoup, text, transformers
, unorderedContainers, xmlConduit
}:
cabal.mkDerivation (self: {
pname = "authenticate";
version = "1.2.1";
sha256 = "0ifx24129ahq1rb2601n4736w5j257w10wcym5m9kp0jjb4p7s83";
buildDepends = [
aeson attoparsec blazeBuilder blazeBuilderConduit caseInsensitive
conduit httpConduit httpTypes monadControl network resourcet
tagsoup text transformers unorderedContainers xmlConduit
];
meta = {
homepage = "http://github.com/yesodweb/authenticate";
description = "Authentication methods for Haskell web applications";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})