2012-02-16 15:05:41 +01:00
|
|
|
{ cabal, cereal, cryptoApi, tagged }:
|
2011-09-21 18:46:59 +02:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "skein";
|
2012-11-26 15:16:18 +01:00
|
|
|
version = "0.1.0.10";
|
|
|
|
sha256 = "0qyiy2yx4qmazz744hyq51v2as51zd9r623bhhk21yzsgh7rl9kc";
|
2012-02-16 15:05:41 +01:00
|
|
|
buildDepends = [ cereal cryptoApi tagged ];
|
2011-09-21 18:46:59 +02:00
|
|
|
meta = {
|
2012-04-23 11:34:01 +02:00
|
|
|
homepage = "https://github.com/meteficha/skein";
|
2011-09-21 18:46:59 +02: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 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-09-21 18:46:59 +02:00
|
|
|
};
|
|
|
|
})
|