2011-09-21 09:47:19 -07:00
|
|
|
{ cabal, base64Bytestring, cereal, cryptoApi, cryptocipher, skein
|
2011-08-31 05:41:01 -07:00
|
|
|
}:
|
2011-07-07 14:40:35 -07:00
|
|
|
|
2011-08-09 16:00:20 -07:00
|
|
|
cabal.mkDerivation (self: {
|
2011-07-07 14:40:35 -07:00
|
|
|
pname = "clientsession";
|
2011-11-01 18:42:12 -07:00
|
|
|
version = "0.7.3.3";
|
|
|
|
sha256 = "0cfj225hzn8fsffwnq5zq55dh9m5av1i58b4njhna7miiz6b4jsq";
|
2011-08-31 05:41:01 -07:00
|
|
|
buildDepends = [
|
2011-09-21 09:47:19 -07:00
|
|
|
base64Bytestring cereal cryptoApi cryptocipher skein
|
2011-08-31 05:41:01 -07:00
|
|
|
];
|
2011-07-07 14:40:35 -07:00
|
|
|
meta = {
|
2011-08-09 16:00:20 -07:00
|
|
|
homepage = "http://github.com/snoyberg/clientsession/tree/master";
|
2011-09-21 09:47:19 -07:00
|
|
|
description = "Securely store session data in a client-side cookie";
|
2011-08-09 16:00:20 -07: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 14:40:35 -07:00
|
|
|
};
|
|
|
|
})
|