2011-09-21 18:47:19 +02:00
|
|
|
{ cabal, base64Bytestring, cereal, cryptoApi, cryptocipher, 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-10-03 22:21:03 +02:00
|
|
|
version = "0.7.3.1";
|
|
|
|
sha256 = "0q16brla4m5g7dmgln3awx964ms7pi1s2r21idmc0mk4rnw2rpi7";
|
2011-08-31 14:41:01 +02:00
|
|
|
buildDepends = [
|
2011-09-21 18:47:19 +02:00
|
|
|
base64Bytestring cereal cryptoApi cryptocipher 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
|
|
|
};
|
|
|
|
})
|