about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/lua-ml/default.nix
blob: 5c48b763fc51b92ab983609498385ff9dd52e9eb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{ stdenv, lib, fetchFromGitHub, ocaml, findlib, ocamlbuild, opaline }:

if lib.versionOlder ocaml.version "4.07"
then throw "lua-ml is not available for OCaml ${ocaml.version}"
else

stdenv.mkDerivation rec {
  pname = "lua-ml";
  name = "ocaml${ocaml.version}-${pname}-${version}";
  version = "0.9.2";

  src = fetchFromGitHub {
    owner = "lindig";
    repo = pname;
    rev = version;
    sha256 = "sha256-xkjsjKD89W7Y5XK8kfL/ZErYKS14z0u0QCARN0DbTC8=";
  };

  nativeBuildInputs = [ opaline ocaml findlib ocamlbuild ];

  strictDeps = true;

  buildFlags = [ "lib" ];

  installPhase = ''
    opaline -prefix $out -libdir $OCAMLFIND_DESTDIR
  '';

  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 ];
  };
}