32 lines
501 B
Nix
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;
|
|
};
|
|
}
|