2013-01-16 11:42:12 +00:00
|
|
|
{ cabal, base64Bytestring, cereal, cipherAes, cprngAes, cryptoApi
|
2013-02-24 21:09:07 +00:00
|
|
|
, entropy, hspec, HUnit, QuickCheck, skein, tagged, transformers
|
2011-08-31 12:41:01 +00:00
|
|
|
}:
|
2011-07-07 21:40:35 +00:00
|
|
|
|
2011-08-09 23:00:20 +00:00
|
|
|
cabal.mkDerivation (self: {
|
2011-07-07 21:40:35 +00:00
|
|
|
pname = "clientsession";
|
2013-04-01 15:18:47 +00:00
|
|
|
version = "0.9";
|
|
|
|
sha256 = "0cyw34vzvv1j7w094cjcf97g8bki7l9x82s8csaf96y6d9qws308";
|
2011-08-31 12:41:01 +00:00
|
|
|
buildDepends = [
|
2013-01-16 11:42:12 +00:00
|
|
|
base64Bytestring cereal cipherAes cprngAes cryptoApi entropy skein
|
|
|
|
tagged
|
2011-08-31 12:41:01 +00:00
|
|
|
];
|
2013-02-24 21:09:07 +00:00
|
|
|
testDepends = [ cereal hspec HUnit QuickCheck transformers ];
|
2011-07-07 21:40:35 +00:00
|
|
|
meta = {
|
2012-02-02 13:33:54 +00:00
|
|
|
homepage = "http://github.com/yesodweb/clientsession/tree/master";
|
2011-09-21 16:47:19 +00:00
|
|
|
description = "Securely store session data in a client-side cookie";
|
2011-08-09 23:00:20 +00:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-03-23 13:57:25 +00:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2011-07-07 21:40:35 +00:00
|
|
|
};
|
|
|
|
})
|