mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-04 09:56:13 +03:00
d7d1f995e6
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.
22 lines
677 B
Nix
22 lines
677 B
Nix
{ cabal, base64Bytestring, cereal, cprngAes, cryptoApi
|
|
, cryptocipher, entropy, skein, tagged
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "clientsession";
|
|
version = "0.8.0";
|
|
sha256 = "1ypd5ki4lvwriw922p65hmj41sargawah1gnwi0q08vc7iagq64k";
|
|
buildDepends = [
|
|
base64Bytestring cereal cprngAes cryptoApi cryptocipher entropy
|
|
skein tagged
|
|
];
|
|
jailbreak = true;
|
|
meta = {
|
|
homepage = "http://github.com/yesodweb/clientsession/tree/master";
|
|
description = "Securely store session data in a client-side cookie";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|