nixpkgs/pkgs/development/libraries/haskell/cryptohash/default.nix

18 lines
566 B
Nix
Raw Normal View History

{ cabal, cereal, cryptoApi, tagged }:
cabal.mkDerivation (self: {
pname = "cryptohash";
version = "0.7.5";
sha256 = "18x1k22m2mw0jx3p1mc68n0gg1vsnkp50qvmlkh3i34vdnjcdrqg";
isLibrary = true;
isExecutable = true;
buildDepends = [ cereal cryptoApi tagged ];
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 ];
};
})