2013-02-24 22:09:07 +01:00
|
|
|
{ cabal, cereal, cryptoApi, filepath, hspec, tagged }:
|
2011-09-21 18:46:59 +02:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "skein";
|
2013-02-20 11:58:04 +01:00
|
|
|
version = "0.1.0.12";
|
|
|
|
sha256 = "1nx0ad0y7zmljc7phwin2aph6frs70hvz3di8q52kzpi5m1h3g3a";
|
2012-02-16 15:05:41 +01:00
|
|
|
buildDepends = [ cereal cryptoApi tagged ];
|
2013-02-24 22:09:07 +01:00
|
|
|
testDepends = [ cereal cryptoApi filepath hspec 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
|
|
|
};
|
|
|
|
})
|