2011-08-10 01:00:20 +02:00
|
|
|
{ cabal, cereal, cryptoApi, tagged }:
|
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";
|
2011-08-17 01:23:57 +02:00
|
|
|
version = "0.7.1";
|
|
|
|
sha256 = "1bblhqidzb8b75fk9zb1ibdssmbh1kaq20q144c9y1cas3gbn6h3";
|
2011-08-10 01:00:20 +02:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [ cereal cryptoApi tagged ];
|
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;
|
2011-08-10 01:00:20 +02:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2011-08-08 00:51:22 +02:00
|
|
|
};
|
|
|
|
})
|