about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/reactivedata/default.nix
blob: fa85f21746889478b4f1006684fa6eaa536a2042 (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
{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, react, opaline }:

assert stdenv.lib.versionAtLeast ocaml.version "3.11";

stdenv.mkDerivation {
  name = "ocaml${ocaml.version}-reactiveData-0.2.1";
  src = fetchurl {
    url = https://github.com/ocsigen/reactiveData/archive/0.2.1.tar.gz;
    sha256 = "0wcs0z50nia1cpk8mh6i5qbc6sff9cc8x7s7q1q89d7m73bnv4vf";
  };

  buildInputs = [ ocaml findlib ocamlbuild opaline ];
  propagatedBuildInputs = [ react ];

  buildPhase = "ocaml pkg/build.ml native=true native-dynlink=true";

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

  meta = with stdenv.lib; {
    description = "An OCaml module for functional reactive programming (FRP) based on React";
    homepage = https://github.com/ocsigen/reactiveData;
    license = licenses.lgpl21;
    platforms = ocaml.meta.platforms or [];
    maintainers = with maintainers; [ vbgl ];
  };
}