2013-02-24 22:09:07 +01:00
|
|
|
{ cabal, cereal, cryptoApi, HUnit, QuickCheck, tagged
|
|
|
|
, 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-04-05 08:58:18 +02:00
|
|
|
version = "0.9.0";
|
|
|
|
sha256 = "0ipzrp83pz33qc7gmn9bmhbmc1f0hfvagyfr5bnmhgrh6lgy9s7l";
|
2012-02-16 15:05:41 +01:00
|
|
|
buildDepends = [ 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-03-23 14:57:25 +01:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2011-08-08 00:51:22 +02:00
|
|
|
};
|
|
|
|
})
|