ocamlPackages.mustache: 3.1.0 -> 3.3.0

This commit is contained in:
Volker Diels-Grabsch
2025-12-28 03:09:35 +01:00
parent 0fc968d1d5
commit 947d370302
@@ -5,26 +5,28 @@
ezjsonm,
menhir,
menhirLib,
ounit,
ounit2,
}:
buildDunePackage rec {
pname = "mustache";
version = "3.1.0";
version = "3.3.0";
duneVersion = "3";
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";