aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/ocaml-modules/lua-ml/default.nix
blob: a0db995827a0fc293460adc6b09b252b2097d292 (plain)
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
{ stdenv, fetchFromGitHub, ocaml, findlib, ocamlbuild, dune }:

if !stdenv.lib.versionAtLeast 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";

  src = fetchFromGitHub {
    owner = "lindig";
    repo = pname;
    rev = "${version}";
    sha256 = "09lj6qykg15fdf65in7xdry0jcifcr8vqbvz85v12gwfckmmxjir";
  };

  buildInputs = [ ocaml findlib ocamlbuild ];

  buildFlags = [ "lib" ];

  inherit (dune) installPhase;

  meta = {
    description = "An embeddable Lua 2.5 interpreter implemented in OCaml";
    inherit (src.meta) homepage;
    inherit (ocaml.meta) platforms;
    license = stdenv.lib.licenses.bsd2;
    maintainers = [ stdenv.lib.maintainers.vbgl ];
  };
}