nixpkgs/pkgs/development/ocaml-modules/bistro/default.nix

28 lines
666 B
Nix
Raw Normal View History

2019-06-13 06:40:48 +00:00
{ lib, fetchFromGitHub, buildDunePackage
, base64, bos, core, lwt_react, ocamlgraph, rresult, tyxml
2019-06-13 06:40:48 +00:00
}:
buildDunePackage rec {
pname = "bistro";
version = "0.5.0";
2019-06-13 06:40:48 +00:00
src = fetchFromGitHub {
owner = "pveber";
repo = pname;
rev = "v${version}";
sha256 = "114gq48cpj2mvycypa9lfyqqb26wa2gkdfwkcqhnx7m6sdwv9a38";
2019-06-13 06:40:48 +00:00
};
buildInputs = [ base64 bos lwt_react ocamlgraph rresult tyxml ];
2019-06-13 06:40:48 +00:00
propagatedBuildInputs = [ core ];
minimumOCamlVersion = "4.07";
2019-06-13 06:40:48 +00:00
meta = {
inherit (src.meta) homepage;
description = "Build and execute typed scientific workflows";
maintainers = [ lib.maintainers.vbgl ];
license = lib.licenses.gpl2;
};
}