2013-02-24 21:09:07 +00:00
|
|
|
{ cabal, cereal, cryptoApi, filepath, hspec, tagged }:
|
2011-09-21 16:46:59 +00:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "skein";
|
2013-04-30 12:11:00 +00:00
|
|
|
version = "1.0.3";
|
|
|
|
sha256 = "15vzydywhwjdgybabvv6lfk1vjs7blvs3k2apwxjdjh2q7jmgkam";
|
2012-02-16 14:05:41 +00:00
|
|
|
buildDepends = [ cereal cryptoApi tagged ];
|
2013-02-24 21:09:07 +00:00
|
|
|
testDepends = [ cereal cryptoApi filepath hspec 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;
|
2013-05-10 22:36:36 +00:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-09-21 16:46:59 +00:00
|
|
|
};
|
|
|
|
})
|