Files
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

41 lines
813 B
Nix

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