about summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/SHA2/default.nix
blob: 435d51ae0fedfce46b0a1cded072e4954f2642e9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ cabal, aes, monadsTf, transformers }:

cabal.mkDerivation (self: {
  pname = "SHA2";
  version = "0.2.5";
  sha256 = "1zs79a327x6myfam3p2vr8lmszcaqnkll2qz8n4sy835vz328j40";
  buildDepends = [ aes monadsTf transformers ];
  meta = {
    description = "Fast, incremental SHA hashing for bytestrings";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
  };
})