about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/bistro/default.nix
blob: b141244f8c5b9da4ae652fc1d68c6dd99da07212 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ 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";
  };

  propagatedBuildInputs = [ base64 bos core lwt_react ocamlgraph rresult tyxml ];

  minimumOCamlVersion = "4.07";

  meta = {
    inherit (src.meta) homepage;
    description = "Build and execute typed scientific workflows";
    maintainers = [ lib.maintainers.vbgl ];
    license = lib.licenses.gpl2;
  };
}