about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/sha/default.nix
blob: a506e6795fd1869bd2583e2c103213bdbcea6349 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ lib
, fetchurl
, buildDunePackage
, ounit
}:

buildDunePackage rec {
  pname = "sha";
  version = "1.13";

  useDune2 = true;

  src = fetchurl {
    url = "https://github.com/djs55/ocaml-${pname}/releases/download/v${version}/${pname}-v${version}.tbz";
    sha256 = "00z2s4fsv9i1h09rj5dy3nd9hhcn79b75sn2ljj5wihlf4y4g304";
  };

  doCheck = true;
  checkInputs = [ ounit ];

  meta = with lib; {
    description = "Binding for SHA interface code in OCaml";
    maintainers = [ maintainers.arthurteisseire ];
    homepage = "https://github.com/djs55/ocaml-${pname}";
    license = licenses.isc;
  };

}