depot/third_party/nixpkgs/pkgs/development/ocaml-modules/reactivedata/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

24 lines
635 B
Nix

{ 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 = "OCaml module for functional reactive programming (FRP) based on React";
homepage = "https://github.com/ocsigen/reactiveData";
license = licenses.lgpl21;
maintainers = with maintainers; [ vbgl ];
};
}