2013-02-25 01:09:07 +04:00
|
|
|
{ cabal, cereal, cryptoApi, filepath, hspec, tagged }:
|
2011-09-21 20:46:59 +04:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "skein";
|
2013-02-20 14:58:04 +04:00
|
|
|
version = "0.1.0.12";
|
|
|
|
sha256 = "1nx0ad0y7zmljc7phwin2aph6frs70hvz3di8q52kzpi5m1h3g3a";
|
2012-02-16 18:05:41 +04:00
|
|
|
buildDepends = [ cereal cryptoApi tagged ];
|
2013-02-25 01:09:07 +04:00
|
|
|
testDepends = [ cereal cryptoApi filepath hspec tagged ];
|
2011-09-21 20:46:59 +04:00
|
|
|
meta = {
|
2012-04-23 13:34:01 +04:00
|
|
|
homepage = "https://github.com/meteficha/skein";
|
2011-09-21 20:46:59 +04: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 14:21:28 +04:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-09-21 20:46:59 +04:00
|
|
|
};
|
|
|
|
})
|