1 { lib, stdenv, fetchurl, ocaml, findlib, topkg, ocamlbuild }:
3 stdenv.mkDerivation rec {
8 url = "https://erratique.ch/software/react/releases/react-${version}.tbz";
9 sha256 = "sha256-xK3TFdbx8VPRFe58qN1gwSZf9NQIwmYSX8tRJP0ij5k=";
12 nativeBuildInputs = [ ocaml findlib ocamlbuild ];
13 buildInputs = [ topkg ];
17 inherit (topkg) buildPhase installPhase;
20 homepage = "https://erratique.ch/software/react";
21 description = "Applicative events and signals for OCaml";
22 license = licenses.bsd3;
23 inherit (ocaml.meta) platforms;
24 maintainers = with maintainers; [ maggesi vbmithr gal_bolle ];