ocamlPackages.mustache: 3.1.0 -> 3.3.0 (#474697)

This commit is contained in:
Vincent Laporte
2025-12-31 13:26:48 +00:00
committed by GitHub
@@ -5,26 +5,27 @@
ezjsonm,
menhir,
menhirLib,
ounit,
ounit2,
}:
buildDunePackage rec {
pname = "mustache";
version = "3.1.0";
duneVersion = "3";
version = "3.3.0";
src = fetchFromGitHub {
owner = "rgrinberg";
repo = "ocaml-mustache";
rev = "v${version}";
sha256 = "19v8rk8d8lkfm2rmhdawfgadji6wa267ir5dprh4w9l1sfj8a1py";
tag = "v${version}";
hash = "sha256-7rdp7nrjc25/Nuj/cf78qxS3Qy4ufaNcKjSnYh4Ri8U=";
};
nativeBuildInputs = [ menhir ];
buildInputs = [ ezjsonm ];
propagatedBuildInputs = [ menhirLib ];
doCheck = true;
checkInputs = [ ounit ];
doCheck = false; # Disabled because of "Error: Program mustache-ocaml not found in the tree or in PATH"
checkInputs = [
ezjsonm
ounit2
];
meta = {
description = "Mustache logic-less templates in OCaml";