ocamlPackages.sha: 1.13 -> 1.14

This commit is contained in:
superherointj 2021-06-06 07:50:06 -03:00 committed by Vincent Laporte
parent a3e6044fa6
commit ea67c657cc

View file

@ -1,28 +1,29 @@
{ lib { lib, fetchurl, buildDunePackage, stdlib-shims, ounit }:
, fetchurl
, buildDunePackage
, ounit
}:
buildDunePackage rec { buildDunePackage rec {
pname = "sha"; pname = "sha";
version = "1.13"; version = "1.14";
useDune2 = true;
src = fetchurl { src = fetchurl {
url = "https://github.com/djs55/ocaml-${pname}/releases/download/v${version}/${pname}-v${version}.tbz"; url = "https://github.com/djs55/ocaml-${pname}/releases/download/v${version}/${pname}-v${version}.tbz";
sha256 = "00z2s4fsv9i1h09rj5dy3nd9hhcn79b75sn2ljj5wihlf4y4g304"; sha256 = "114vydrfdp7fayigvgk3ckiby0kh4n49c1j53v8k40gk6nzm3l19";
}; };
useDune2 = true;
propagatedBuildInputs = [
stdlib-shims
];
doCheck = true; doCheck = true;
checkInputs = [ ounit ]; checkInputs = [
ounit
];
meta = with lib; { meta = with lib; {
description = "Binding for SHA interface code in OCaml"; description = "Binding for SHA interface code in OCaml";
maintainers = [ maintainers.arthurteisseire ]; homepage = "https://github.com/djs55/ocaml-sha/";
homepage = "https://github.com/djs55/ocaml-${pname}";
license = licenses.isc; license = licenses.isc;
maintainers = with maintainers; [ arthurteisseire ];
}; };
} }