nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 buildDunePackage,
3 fetchFromGitHub,
4 cppo,
5 lwt,
6 react,
7}:
8
9buildDunePackage {
10 pname = "lwt_react";
11 version = "1.2.0";
12
13 src = fetchFromGitHub {
14 owner = "ocsigen";
15 repo = "lwt";
16 tag = "5.6.0";
17 hash = "sha256-DLQupCkZ14kOuSQatbb7j07I+jvvDCKpdlaR3rijT4s=";
18 };
19
20 nativeBuildInputs = [ cppo ];
21
22 propagatedBuildInputs = [
23 lwt
24 react
25 ];
26
27 meta = {
28 description = "Helpers for using React with Lwt";
29 inherit (lwt.meta) homepage license maintainers;
30 };
31}