ocaml-vdom: init at 0.2 (#187622)

main
Jayesh Bhoot 2 years ago committed by GitHub
parent 6cd3b7de50
commit ee1674cfcc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 31
      pkgs/development/ocaml-modules/ocaml-vdom/default.nix
  2. 2
      pkgs/top-level/ocaml-packages.nix

@ -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 ];
};
}

@ -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 { };

Loading…
Cancel
Save