2012-02-16 14:05:41 +00:00
|
|
|
{ cabal, base64Bytestring, cereal, cprngAes, cryptoApi
|
2011-11-29 15:32:41 +00:00
|
|
|
, cryptocipher, entropy, skein, tagged
|
2011-08-31 13:41:01 +01:00
|
|
|
}:
|
2011-07-07 22:40:35 +01:00
|
|
|
|
2011-08-10 00:00:20 +01:00
|
|
|
cabal.mkDerivation (self: {
|
2011-07-07 22:40:35 +01:00
|
|
|
pname = "clientsession";
|
2012-09-11 11:05:51 +01:00
|
|
|
version = "0.8.0.1";
|
|
|
|
sha256 = "0r6j15wkyp4akhaxvimjxlwdka7cbm3c3nfk5bvkqan1nrip5rxv";
|
2011-08-31 13:41:01 +01:00
|
|
|
buildDepends = [
|
2012-02-16 14:05:41 +00:00
|
|
|
base64Bytestring cereal cprngAes cryptoApi cryptocipher entropy
|
|
|
|
skein tagged
|
2011-08-31 13:41:01 +01:00
|
|
|
];
|
2011-07-07 22:40:35 +01:00
|
|
|
meta = {
|
2012-02-02 13:33:54 +00:00
|
|
|
homepage = "http://github.com/yesodweb/clientsession/tree/master";
|
2011-09-21 17:47:19 +01:00
|
|
|
description = "Securely store session data in a client-side cookie";
|
2011-08-10 00:00:20 +01:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 10:21:28 +00:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-07-07 22:40:35 +01:00
|
|
|
};
|
|
|
|
})
|