2014-06-03 10:34:42 +01:00
|
|
|
{ cabal, byteable, HUnit, QuickCheck, tasty, tastyHunit
|
|
|
|
, tastyQuickcheck
|
2013-02-24 21:09:07 +00:00
|
|
|
}:
|
2011-08-07 23:51:22 +01:00
|
|
|
|
2011-08-10 00:00:20 +01:00
|
|
|
cabal.mkDerivation (self: {
|
2011-08-07 23:51:22 +01:00
|
|
|
pname = "cryptohash";
|
2014-06-03 10:34:42 +01:00
|
|
|
version = "0.11.5";
|
|
|
|
sha256 = "0vxnwnjch2r9d54q5f5bfz60npjc7s7x6a5233md7fa756822b9d";
|
2013-09-02 12:20:16 +01:00
|
|
|
buildDepends = [ byteable ];
|
2013-02-24 21:09:07 +00:00
|
|
|
testDepends = [
|
2014-06-03 10:34:42 +01:00
|
|
|
byteable HUnit QuickCheck tasty tastyHunit tastyQuickcheck
|
2013-02-24 21:09:07 +00:00
|
|
|
];
|
2011-08-07 23:51:22 +01:00
|
|
|
meta = {
|
|
|
|
homepage = "http://github.com/vincenthz/hs-cryptohash";
|
|
|
|
description = "collection of crypto hashes, fast, pure and practical";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 10:54:50 +01:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 23:36:36 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-08-07 23:51:22 +01:00
|
|
|
};
|
|
|
|
})
|