ocamlPackages.lua-ml: 0.9.4 → 0.9.5

This commit is contained in:
Vincent Laporte
2026-05-27 02:16:55 +02:00
parent 7505f5858f
commit bcd7a4e4cb
@@ -2,23 +2,24 @@
lib,
fetchFromGitHub,
buildDunePackage,
menhir,
}:
buildDunePackage (finalAttrs: {
pname = "lua-ml";
version = "0.9.4";
minimalOCamlVersion = "4.07";
version = "0.9.5";
src = fetchFromGitHub {
owner = "lindig";
repo = "lua-ml";
tag = finalAttrs.version;
hash = "sha256-kMBTHzmlrRWNpWwG321jYcM61rE1J3YQkygSrfnZ6Wc=";
hash = "sha256-+kg/hwcmRoM6sSL2GXOC2GrnJRu52BR5UiNu3nl5Lnk=";
};
nativeBuildInputs = [ menhir ];
meta = {
description = "Embeddable Lua 2.5 interpreter implemented in OCaml";
inherit (finalAttrs.src.meta) homepage;
homepage = "https://github.com/lindig/lua-ml";
license = lib.licenses.bsd2;
maintainers = [ lib.maintainers.vbgl ];
};