mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 18:03:04 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
25 lines
661 B
Nix
25 lines
661 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 ];
|
|
};
|
|
}
|