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";
|
2014-01-17 09:40:21 +00:00
|
|
|
version = "1.0.8.1";
|
|
|
|
sha256 = "1xh8hx1d8hk3kqg07pb2ikc814037bw1xhawskrpxq3x37xff4q4";
|
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
|
|
|
};
|
|
|
|
})
|