nixpkgs/pkgs/development/ocaml-modules/lua-ml/default.nix

36 lines
896 B
Nix
Raw Normal View History

{ stdenv, lib, fetchFromGitHub, ocaml, findlib, ocamlbuild, opaline }:
2019-12-08 07:56:32 +00:00
if !lib.versionAtLeast ocaml.version "4.07"
2019-12-08 07:56:32 +00:00
then throw "lua-ml is not available for OCaml ${ocaml.version}"
else
stdenv.mkDerivation rec {
pname = "lua-ml";
name = "ocaml${ocaml.version}-${pname}-${version}";
2020-08-01 17:30:02 +01:00
version = "0.9.1";
2019-12-08 07:56:32 +00:00
src = fetchFromGitHub {
owner = "lindig";
repo = pname;
rev = version;
2020-08-01 17:30:02 +01:00
sha256 = "04lv98nxmzanvyn4c0k6k0ax29f5xfdl8qzpf5hwadslq213a044";
2019-12-08 07:56:32 +00:00
};
nativeBuildInputs = [ opaline ];
2019-12-08 07:56:32 +00:00
buildInputs = [ ocaml findlib ocamlbuild ];
buildFlags = [ "lib" ];
installPhase = ''
opaline -prefix $out -libdir $OCAMLFIND_DESTDIR
'';
2019-12-08 07:56:32 +00:00
meta = {
description = "An embeddable Lua 2.5 interpreter implemented in OCaml";
inherit (src.meta) homepage;
inherit (ocaml.meta) platforms;
license = lib.licenses.bsd2;
maintainers = [ lib.maintainers.vbgl ];
2019-12-08 07:56:32 +00:00
};
}