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