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