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-04-20 14:50:37 +02:00
|
|
|
version = "0.1.0.6";
|
|
|
|
sha256 = "041qg0vy5h5xd0142chbmkhmqxbglrb7x0ybcalrxr7dawxksm8d";
|
2012-02-16 15:05:41 +01:00
|
|
|
buildDepends = [ cereal cryptoApi tagged ];
|
2011-09-21 18:46:59 +02:00
|
|
|
meta = {
|
|
|
|
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
|
|
|
};
|
|
|
|
})
|