2011-11-27 13:48:44 +01:00
|
|
|
{ cabal, base64Bytestring, cereal, cryptoApi, cryptocipher, entropy
|
|
|
|
, skein
|
2011-08-31 14:41:01 +02:00
|
|
|
}:
|
2011-07-07 23:40:35 +02:00
|
|
|
|
2011-08-10 01:00:20 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2011-07-07 23:40:35 +02:00
|
|
|
pname = "clientsession";
|
2011-11-27 13:48:44 +01:00
|
|
|
version = "0.7.3.4";
|
|
|
|
sha256 = "16blm8p0c2hk06yn5f5qmrrxwsrsdv7l7x1s07ygn8s9jmb9xyqr";
|
2011-08-31 14:41:01 +02:00
|
|
|
buildDepends = [
|
2011-11-27 13:48:44 +01:00
|
|
|
base64Bytestring cereal cryptoApi cryptocipher entropy skein
|
2011-08-31 14:41:01 +02:00
|
|
|
];
|
2011-07-07 23:40:35 +02:00
|
|
|
meta = {
|
2011-08-10 01:00:20 +02:00
|
|
|
homepage = "http://github.com/snoyberg/clientsession/tree/master";
|
2011-09-21 18:47:19 +02:00
|
|
|
description = "Securely store session data in a client-side cookie";
|
2011-08-10 01:00:20 +02:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2011-07-07 23:40:35 +02:00
|
|
|
};
|
|
|
|
})
|