468c5dbc5c
versions of the compiler, haskell-packages.nix provides a null attribute. svn path=/nixpkgs/trunk/; revision=28500
27 lines
929 B
Nix
27 lines
929 B
Nix
{ cabal, RSA, SHA, aeson, attoparsec, base64Bytestring
|
|
, blazeBuilder, caseInsensitive, enumerator, failure
|
|
, httpEnumerator, httpTypes, network, random, tagsoup, text, time
|
|
, tls, transformers, xmlEnumerator
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "authenticate";
|
|
version = "0.9.2.2";
|
|
sha256 = "0rn1f458ag9mmh55hi873xg5iqypwl6vf6blyaxwbgbp6nm327iz";
|
|
buildDepends = [
|
|
RSA SHA aeson attoparsec base64Bytestring blazeBuilder
|
|
caseInsensitive enumerator failure httpEnumerator httpTypes network
|
|
random tagsoup text time tls transformers xmlEnumerator
|
|
];
|
|
meta = {
|
|
homepage = "http://github.com/snoyberg/authenticate/tree/master";
|
|
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
|
|
];
|
|
};
|
|
})
|