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-10-02 17:57:57 +00:00
|
|
|
version = "1.0.8";
|
|
|
|
sha256 = "0qga3r73zzbj4kkwl8c3p7d1myjyv6dv6g0dwc77fqnmikzcnils";
|
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 ];
|
2013-08-14 08:21:33 +00:00
|
|
|
jailbreak = true;
|
2011-09-21 16:46:59 +00:00
|
|
|
meta = {
|
2012-04-23 09:34:01 +00:00
|
|
|
homepage = "https://github.com/meteficha/skein";
|
2013-10-16 15:09:26 +00:00
|
|
|
description = "Skein, a family of cryptographic hash functions. Includes Skein-MAC as well.";
|
2011-09-21 16:46:59 +00:00
|
|
|
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
|
|
|
};
|
|
|
|
})
|