nixpkgs/pkgs/development/libraries/haskell/authenticate/default.nix
Peter Simons 3dd1ac8766 haskell-authenticate: updated to version 1.0.0
svn path=/nixpkgs/trunk/; revision=32183
2012-02-10 11:33:02 +00:00

26 lines
873 B
Nix

{ cabal, aeson, attoparsec, blazeBuilder, blazeBuilderConduit
, caseInsensitive, conduit, httpConduit, httpTypes, network
, tagsoup, text, transformers, unorderedContainers, xmlConduit
}:
cabal.mkDerivation (self: {
pname = "authenticate";
version = "1.0.0";
sha256 = "0a163dhi69gh6zmi43jidxlaknbk1y0frjlwijdf7fp073rh0p87";
buildDepends = [
aeson attoparsec blazeBuilder blazeBuilderConduit caseInsensitive
conduit httpConduit httpTypes network 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
self.stdenv.lib.maintainers.simons
];
};
})