ocamlPackages.bistro: init at 0.4.0
This commit is contained in:
parent
3e9f9a64d1
commit
99fec0eeb3
27
pkgs/development/ocaml-modules/bistro/default.nix
Normal file
27
pkgs/development/ocaml-modules/bistro/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
@ -61,6 +61,8 @@ let
|
|||||||
|
|
||||||
bigstringaf = callPackage ../development/ocaml-modules/bigstringaf { };
|
bigstringaf = callPackage ../development/ocaml-modules/bigstringaf { };
|
||||||
|
|
||||||
|
bistro = callPackage ../development/ocaml-modules/bistro { };
|
||||||
|
|
||||||
bitstring = callPackage ../development/ocaml-modules/bitstring { };
|
bitstring = callPackage ../development/ocaml-modules/bitstring { };
|
||||||
|
|
||||||
bitv = callPackage ../development/ocaml-modules/bitv { };
|
bitv = callPackage ../development/ocaml-modules/bitv { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user