Files
nixpkgs/pkgs/development/ocaml-modules/lwt_react/default.nix
T
2025-11-24 11:44:15 +01:00

32 lines
501 B
Nix

{
buildDunePackage,
fetchFromGitHub,
cppo,
lwt,
react,
}:
buildDunePackage {
pname = "lwt_react";
version = "1.2.0";
src = fetchFromGitHub {
owner = "ocsigen";
repo = "lwt";
tag = "5.6.0";
hash = "sha256-DLQupCkZ14kOuSQatbb7j07I+jvvDCKpdlaR3rijT4s=";
};
nativeBuildInputs = [ cppo ];
propagatedBuildInputs = [
lwt
react
];
meta = {
description = "Helpers for using React with Lwt";
inherit (lwt.meta) homepage license maintainers;
};
}