nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 buildDunePackage,
4 js_of_ocaml,
5 js_of_ocaml-ppx,
6 lwd,
7 tyxml,
8}:
9
10buildDunePackage {
11 pname = "tyxml-lwd";
12
13 inherit (lwd) version src;
14
15 buildInputs = [ js_of_ocaml-ppx ];
16 propagatedBuildInputs = [
17 js_of_ocaml
18 lwd
19 tyxml
20 ];
21
22 meta = {
23 description = "Make reactive webpages in Js_of_ocaml using Tyxml and Lwd";
24 license = lib.licenses.mit;
25 maintainers = [ lib.maintainers.alizter ];
26 homepage = "https://github.com/let-def/lwd";
27 };
28}