depot/pkgs/development/ocaml-modules/lwt_react/default.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

24 lines
510 B
Nix

{ buildDunePackage, fetchFromGitHub, cppo, lwt, react }:
buildDunePackage {
pname = "lwt_react";
version = "1.1.5";
useDune2 = true;
src = fetchFromGitHub {
owner = "ocsigen";
repo = "lwt";
rev = "5.5.0";
sha256 = "sha256:1jbjz2rsz3j56k8vh5qlmm87hhkr250bs2m3dvpy9vsri8rkzj9z";
};
nativeBuildInputs = [ cppo ];
propagatedBuildInputs = [ lwt react ];
meta = {
description = "Helpers for using React with Lwt";
inherit (lwt.meta) homepage license maintainers;
};
}