ocaml-vdom: init at 0.2 (#187622)

This commit is contained in:
Jayesh Bhoot 2022-08-22 18:42:31 +05:30 committed by GitHub
parent 6cd3b7de50
commit ee1674cfcc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 33 additions and 0 deletions

View file

@ -0,0 +1,31 @@
{ lib, fetchurl, buildDunePackage, js_of_ocaml-compiler , gen_js_api, ojs }:
buildDunePackage rec {
pname = "ocaml-vdom";
version = "0.2";
minimalOCamlVersion = "4.08";
duneVersion = "3";
src = fetchurl {
url = "https://github.com/LexiFi/ocaml-vdom/archive/refs/tags/v${version}.tar.gz";
sha256 = "sha256-FVR0WubW9VJBGVtVaXdJ+O/ghq0w5+BuItFWXkuVYL8=";
};
buildInputs = [
gen_js_api
];
propagatedBuildInputs = [
js_of_ocaml-compiler
ojs
];
meta = {
homepage = "https://github.com/LexiFi/ocaml-vdom";
description = "Elm architecture and (V)DOM for OCaml";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ jayesh-bhoot ];
};
}

View file

@ -1013,6 +1013,8 @@ let
ocaml-syntax-shims = callPackage ../development/ocaml-modules/ocaml-syntax-shims { };
ocaml-vdom = callPackage ../development/ocaml-modules/ocaml-vdom { };
syslog = callPackage ../development/ocaml-modules/syslog { };
syslog-message = callPackage ../development/ocaml-modules/syslog-message { };