promise_jsoo: init at 0.3.1 (#172194)

This commit is contained in:
Jayesh Bhoot 2022-08-22 20:13:07 +05:30 committed by GitHub
parent c907ad423b
commit 2acbedd334
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, ppxlib, js_of_ocaml-ppx, gen_js_api, ojs }:
buildDunePackage rec {
pname = "promise_jsoo";
version = "0.3.1";
minimalOCamlVersion = "4.08";
duneVersion = "3";
src = fetchurl {
url = "https://github.com/mnxn/promise_jsoo/releases/download/v${version}/promise_jsoo-v${version}.tbz";
sha256 = "00pjnsbv0yv3hhxbbl8dsljgr95kjgi9w8j1x46gjyxg9zayrxzl";
};
buildInputs = [
ppxlib
js_of_ocaml-ppx
gen_js_api
];
propagatedBuildInputs = [
js_of_ocaml
ojs
];
meta = {
homepage = "https://github.com/mnxn/promise_jsoo";
description = "Js_of_ocaml bindings to JS Promises with supplemental functions";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ jayesh-bhoot ];
};
}

View File

@ -1307,6 +1307,8 @@ let
progress = callPackage ../development/ocaml-modules/progress { };
promise_jsoo = callPackage ../development/ocaml-modules/promise_jsoo { };
ptmap = callPackage ../development/ocaml-modules/ptmap { };
ptset = callPackage ../development/ocaml-modules/ptset { };