biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / ocaml-modules / react / default.nix
blob753a3e82c0de4aa48e188d81e88873aff0d098f9
1 { lib, stdenv, fetchurl, ocaml, findlib, topkg, ocamlbuild }:
3 stdenv.mkDerivation rec {
4   pname = "ocaml-react";
5   version = "1.2.2";
7   src = fetchurl {
8     url = "https://erratique.ch/software/react/releases/react-${version}.tbz";
9     sha256 = "sha256-xK3TFdbx8VPRFe58qN1gwSZf9NQIwmYSX8tRJP0ij5k=";
10   };
12   nativeBuildInputs = [ ocaml findlib ocamlbuild ];
13   buildInputs = [ topkg ];
15   strictDeps = true;
17   inherit (topkg) buildPhase installPhase;
19   meta = with lib; {
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 ];
25   };