24 lines
873 B
Nix
24 lines
873 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.3.1.1";
|
|
sha256 = "120n7z22x4y4ngxqxsi65zn992f1lksaawcd7rmjvf8m0fysbb4n";
|
|
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 ];
|
|
};
|
|
})
|