nixpkgs/pkgs/development/libraries/haskell/clientsession/default.nix
Peter Simons 3b2254a3af Remove myself from the meta.maintainer field of most Haskell packages.
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
2013-05-11 00:36:59 +02:00

22 lines
753 B
Nix

{ cabal, base64Bytestring, cereal, cipherAes, cprngAes, cryptoApi
, entropy, hspec, HUnit, QuickCheck, skein, tagged, transformers
}:
cabal.mkDerivation (self: {
pname = "clientsession";
version = "0.9";
sha256 = "0cyw34vzvv1j7w094cjcf97g8bki7l9x82s8csaf96y6d9qws308";
buildDepends = [
base64Bytestring cereal cipherAes cprngAes cryptoApi entropy skein
tagged
];
testDepends = [ cereal hspec HUnit QuickCheck transformers ];
meta = {
homepage = "http://github.com/yesodweb/clientsession/tree/master";
description = "Securely store session data in a client-side cookie";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})