25 lines
761 B
Nix
25 lines
761 B
Nix
{ cabal, cereal, cryptoApi, HUnit, QuickCheck, tagged
|
|
, testFramework, testFrameworkHunit, testFrameworkQuickcheck2
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "cryptohash";
|
|
version = "0.8.4";
|
|
sha256 = "0h58apxcrvpkyj3s2c7l68g7biv80snkn53g6jya1s687xff8fmn";
|
|
buildDepends = [ cereal cryptoApi tagged ];
|
|
testDepends = [
|
|
HUnit QuickCheck testFramework testFrameworkHunit
|
|
testFrameworkQuickcheck2
|
|
];
|
|
meta = {
|
|
homepage = "http://github.com/vincenthz/hs-cryptohash";
|
|
description = "collection of crypto hashes, fast, pure and practical";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [
|
|
self.stdenv.lib.maintainers.andres
|
|
self.stdenv.lib.maintainers.simons
|
|
];
|
|
};
|
|
})
|