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
28 lines
669 B
Nix
28 lines
669 B
Nix
{
|
|
lib,
|
|
buildDunePackage,
|
|
fetchurl,
|
|
ocamlbuild,
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "js_of_ocaml-ocamlbuild";
|
|
version = "5.0";
|
|
|
|
minimalOCamlVersion = "4.03";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ocsigen/js_of_ocaml-ocamlbuild/releases/download/${version}/js_of_ocaml-ocamlbuild-${version}.tbz";
|
|
sha256 = "sha256-qlm8vxzie8sqPrd6iiwf8X6d2+DyQOOhmMoc67ChwHs=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ ocamlbuild ];
|
|
|
|
meta = {
|
|
description = "Ocamlbuild plugin to compile to JavaScript";
|
|
homepage = "https://github.com/ocsigen/js_of_ocaml-ocamlbuild";
|
|
license = lib.licenses.lgpl2Only;
|
|
maintainers = [ lib.maintainers.vbgl ];
|
|
};
|
|
}
|