ocamlPackages.janeStreet: init at 0.12 (for OCaml ≥ 4.07)

Also add a few legacy packages at version 0.11 for OCaml ≥ 4.07: configurator,
ppx_core, ppx_driver, ppx_type_conv

ocamlPackages.bap: disable for OCaml ≥ 4.07

ocamlPackages.bistro: 0.4.0 -> 0.5.0
This commit is contained in:
Vincent Laporte
2019-09-10 14:05:26 +00:00
committed by Vincent Laporte
parent 764724a631
commit 748046d594
5 changed files with 502 additions and 6 deletions
@@ -1,22 +1,22 @@
{ lib, fetchFromGitHub, buildDunePackage
, core, lwt ? ocaml_lwt, ocaml_lwt, ocamlgraph, rresult, tyxml
, base64, bos, core, lwt_react, ocamlgraph, rresult, tyxml
}:
buildDunePackage rec {
pname = "bistro";
version = "0.4.0";
version = "0.5.0";
src = fetchFromGitHub {
owner = "pveber";
repo = pname;
rev = "v${version}";
sha256 = "0bxnggm4nkyl2iqwj4f5afw8lj5miq2rqsc9qfrlmg4g4rr3zh1c";
sha256 = "114gq48cpj2mvycypa9lfyqqb26wa2gkdfwkcqhnx7m6sdwv9a38";
};
buildInputs = [ lwt ocamlgraph rresult tyxml ];
buildInputs = [ base64 bos lwt_react ocamlgraph rresult tyxml ];
propagatedBuildInputs = [ core ];
minimumOCamlVersion = "4.04";
minimumOCamlVersion = "4.07";
meta = {
inherit (src.meta) homepage;