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 12:41:01 +00:00
|
|
|
}:
|
2011-07-07 21:40:35 +00:00
|
|
|
|
2011-08-09 23:00:20 +00:00
|
|
|
cabal.mkDerivation (self: {
|
2011-07-07 21:40:35 +00:00
|
|
|
pname = "clientsession";
|
2012-08-09 10:10:50 +00:00
|
|
|
version = "0.8.0";
|
|
|
|
sha256 = "1ypd5ki4lvwriw922p65hmj41sargawah1gnwi0q08vc7iagq64k";
|
2011-08-31 12:41:01 +00:00
|
|
|
buildDepends = [
|
2012-02-16 14:05:41 +00:00
|
|
|
base64Bytestring cereal cprngAes cryptoApi cryptocipher entropy
|
|
|
|
skein tagged
|
2011-08-31 12:41:01 +00:00
|
|
|
];
|
Use jailbreak to get rid of overspecified version restrictions to fix
builds of Agda, accelerate-cuda, clientsession, filestore, ghc-events,
gitit, happstack, happstack, happstack, hledger-lib, hledger, mime-mail,
pandoc, snap, wai-app-static, yesod-static, and urlencoded.
2012-09-06 13:21:17 +00:00
|
|
|
jailbreak = true;
|
2011-07-07 21:40:35 +00:00
|
|
|
meta = {
|
2012-02-02 13:33:54 +00:00
|
|
|
homepage = "http://github.com/yesodweb/clientsession/tree/master";
|
2011-09-21 16:47:19 +00:00
|
|
|
description = "Securely store session data in a client-side cookie";
|
2011-08-09 23:00:20 +00: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 21:40:35 +00:00
|
|
|
};
|
|
|
|
})
|