about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/reactivedata/default.nix
blob: 49b1357f549183ad94e4f3df57ba4d27edbfa726 (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
{ lib, fetchFromGitHub, buildDunePackage, react }:

buildDunePackage rec {
  pname = "reactiveData";
  version = "0.3";
  duneVersion = "3";
  minimalOCamlVersion = "4.08";

  src = fetchFromGitHub {
    owner = "ocsigen";
    repo = "reactiveData";
    rev = version;
    sha256 = "sha256-imUphE1vMe3bYqHhgTuGT+B7uLn75acX6fAwBLh1tz4=";
  };

  propagatedBuildInputs = [ react ];

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