2014-06-03 11:34:42 +02:00
|
|
|
{ cabal, byteable, HUnit, QuickCheck, tasty, tastyHunit
|
|
|
|
, tastyQuickcheck
|
2013-02-24 22:09:07 +01:00
|
|
|
}:
|
2011-08-08 00:51:22 +02:00
|
|
|
|
2011-08-10 01:00:20 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2011-08-08 00:51:22 +02:00
|
|
|
pname = "cryptohash";
|
2014-06-03 11:34:42 +02:00
|
|
|
version = "0.11.5";
|
|
|
|
sha256 = "0vxnwnjch2r9d54q5f5bfz60npjc7s7x6a5233md7fa756822b9d";
|
2013-09-02 13:20:16 +02:00
|
|
|
buildDepends = [ byteable ];
|
2013-02-24 22:09:07 +01:00
|
|
|
testDepends = [
|
2014-06-03 11:34:42 +02:00
|
|
|
byteable HUnit QuickCheck tasty tastyHunit tastyQuickcheck
|
2013-02-24 22:09:07 +01:00
|
|
|
];
|
2011-08-08 00:51:22 +02: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 11:54:50 +02:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-11 00:36:36 +02:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-08-08 00:51:22 +02:00
|
|
|
};
|
|
|
|
})
|