ocamlPackages.bistro: init at 0.4.0

This commit is contained in:
Vincent Laporte 2019-06-13 06:40:48 +00:00 committed by Vincent Laporte
parent 3e9f9a64d1
commit 99fec0eeb3
2 changed files with 29 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{ lib, fetchFromGitHub, buildDunePackage
, core, lwt ? ocaml_lwt, ocaml_lwt, ocamlgraph, rresult, tyxml
}:
buildDunePackage rec {
pname = "bistro";
version = "0.4.0";
src = fetchFromGitHub {
owner = "pveber";
repo = pname;
rev = "v${version}";
sha256 = "0bxnggm4nkyl2iqwj4f5afw8lj5miq2rqsc9qfrlmg4g4rr3zh1c";
};
buildInputs = [ lwt ocamlgraph rresult tyxml ];
propagatedBuildInputs = [ core ];
minimumOCamlVersion = "4.04";
meta = {
inherit (src.meta) homepage;
description = "Build and execute typed scientific workflows";
maintainers = [ lib.maintainers.vbgl ];
license = lib.licenses.gpl2;
};
}

View file

@ -61,6 +61,8 @@ let
bigstringaf = callPackage ../development/ocaml-modules/bigstringaf { };
bistro = callPackage ../development/ocaml-modules/bistro { };
bitstring = callPackage ../development/ocaml-modules/bitstring { };
bitv = callPackage ../development/ocaml-modules/bitv { };