2012-02-16 14:05:41 +00:00
|
|
|
{ cabal, cereal, cryptoApi, tagged }:
|
2011-09-21 16:46:59 +00:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "skein";
|
2012-09-11 10:15:35 +00:00
|
|
|
version = "0.1.0.9";
|
|
|
|
sha256 = "06hx064cpfcd397rmrmfbm7ph38pnxcsn6wij8fcfsx9wq5yq1k1";
|
2012-02-16 14:05:41 +00:00
|
|
|
buildDepends = [ cereal cryptoApi tagged ];
|
2011-09-21 16:46:59 +00:00
|
|
|
meta = {
|
2012-04-23 09:34:01 +00:00
|
|
|
homepage = "https://github.com/meteficha/skein";
|
2011-09-21 16:46:59 +00:00
|
|
|
description = "Skein, a family of cryptographic hash functions. Includes Skein-MAC as well.";
|
|
|
|
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-09-21 16:46:59 +00:00
|
|
|
};
|
|
|
|
})
|