summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/SHA/default.nix
blob: 5389cfcb49852ad87f5f974a47c22f4be2b6bb61 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{cabal, binary}:

cabal.mkDerivation (self : {
  pname = "SHA";
  version = "1.4.1.3";
  sha256 = "1sx68mvzb2y3dq9hk769fzp8vw4jf4hk5v45i0a9a8b31imlicf0";
  propagatedBuildInputs = [binary];
  meta = {
    description = "Implementations of the SHA suite of message digest functions";
  };
})