From bcd7a4e4cb5d47d18a192bf507335774f6727e80 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Wed, 27 May 2026 02:16:55 +0200 Subject: [PATCH] =?UTF-8?q?ocamlPackages.lua-ml:=200.9.4=20=E2=86=92=200.9?= =?UTF-8?q?.5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkgs/development/ocaml-modules/lua-ml/default.nix | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/pkgs/development/ocaml-modules/lua-ml/default.nix b/pkgs/development/ocaml-modules/lua-ml/default.nix index d358a7baf44e..6aeec982619f 100644 --- a/pkgs/development/ocaml-modules/lua-ml/default.nix +++ b/pkgs/development/ocaml-modules/lua-ml/default.nix @@ -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 ]; };