2022-11-17 07:46:24 +00:00
|
|
|
{ lib, fetchFromGitHub, buildDunePackage, react }:
|
2014-10-10 23:33:22 +01:00
|
|
|
|
2022-11-17 07:46:24 +00:00
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "reactiveData";
|
|
|
|
version = "0.3";
|
|
|
|
duneVersion = "3";
|
|
|
|
minimalOCamlVersion = "4.08";
|
2021-11-09 19:42:54 +00:00
|
|
|
|
2021-10-30 17:16:37 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ocsigen";
|
|
|
|
repo = "reactiveData";
|
|
|
|
rev = version;
|
2022-11-17 07:46:24 +00:00
|
|
|
sha256 = "sha256-imUphE1vMe3bYqHhgTuGT+B7uLn75acX6fAwBLh1tz4=";
|
2014-10-10 23:33:22 +01:00
|
|
|
};
|
|
|
|
|
2017-10-05 06:57:03 +01:00
|
|
|
propagatedBuildInputs = [ react ];
|
2014-10-10 23:33:22 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2014-10-10 23:33:22 +01:00
|
|
|
description = "An OCaml module for functional reactive programming (FRP) based on React";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/ocsigen/reactiveData";
|
2014-10-10 23:33:22 +01:00
|
|
|
license = licenses.lgpl21;
|
|
|
|
maintainers = with maintainers; [ vbgl ];
|
|
|
|
};
|
|
|
|
}
|