2013-07-01 11:04:03 +02:00
|
|
|
{ cabal, byteable, cereal, cryptoApi, HUnit, QuickCheck, tagged
|
2013-02-24 22:09:07 +01:00
|
|
|
, testFramework, testFrameworkHunit, testFrameworkQuickcheck2
|
|
|
|
}:
|
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";
|
2013-07-01 11:04:03 +02:00
|
|
|
version = "0.9.1";
|
|
|
|
sha256 = "164j43dja91k2cssh0s2dw9riibijl02bap9mn8jn1h6vjb6w9z0";
|
|
|
|
buildDepends = [ byteable cereal cryptoApi tagged ];
|
2013-02-24 22:09:07 +01:00
|
|
|
testDepends = [
|
|
|
|
HUnit QuickCheck testFramework testFrameworkHunit
|
|
|
|
testFrameworkQuickcheck2
|
|
|
|
];
|
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
|
|
|
};
|
|
|
|
})
|