748046d594
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
28 lines
666 B
Nix
28 lines
666 B
Nix
{ lib, fetchFromGitHub, buildDunePackage
|
|
, base64, bos, core, lwt_react, ocamlgraph, rresult, tyxml
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "bistro";
|
|
version = "0.5.0";
|
|
src = fetchFromGitHub {
|
|
owner = "pveber";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "114gq48cpj2mvycypa9lfyqqb26wa2gkdfwkcqhnx7m6sdwv9a38";
|
|
};
|
|
|
|
buildInputs = [ base64 bos lwt_react ocamlgraph rresult tyxml ];
|
|
|
|
propagatedBuildInputs = [ core ];
|
|
|
|
minimumOCamlVersion = "4.07";
|
|
|
|
meta = {
|
|
inherit (src.meta) homepage;
|
|
description = "Build and execute typed scientific workflows";
|
|
maintainers = [ lib.maintainers.vbgl ];
|
|
license = lib.licenses.gpl2;
|
|
};
|
|
}
|