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

cabal.mkDerivation (self: {
  pname = "SHA";
  version = "1.5.0.0";
  sha256 = "12sz1dblmpiy8bg45fwndp1g9gf7494vqqbvbd1hwr5qzyfwyqck";
  isLibrary = true;
  isExecutable = true;
  buildDepends = [ binary ];
  meta = {
    description = "Implementations of the SHA suite of message digest functions";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [ self.stdenv.lib.maintainers.andres ];
  };
})