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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

55 lines
888 B
Nix
Raw Normal View History

{ lib
, ocaml
, fetchpatch
, fetchFromGitHub
, buildDunePackage
, base64
, bos
, core
, core_kernel
, core_unix ? null
, lwt_react
, ocamlgraph
, ppx_sexp_conv
, rresult
, sexplib
, tyxml
2019-06-13 06:40:48 +00:00
}:
buildDunePackage rec {
pname = "bistro";
version = "unstable-2022-05-07";
2020-10-29 05:24:33 +00:00
duneVersion = "3";
2020-10-29 05:24:33 +00:00
2019-06-13 06:40:48 +00:00
src = fetchFromGitHub {
owner = "pveber";
repo = pname;
rev = "d363bd2d8257babbcb6db15bd83fd6465df7c268";
sha256 = "0g11324j1s2631zzf7zxc8s0nqd4fwvcni0kbvfpfxg96gy2wwfm";
2019-06-13 06:40:48 +00:00
};
propagatedBuildInputs = [
base64
bos
core
core_kernel
core_unix
lwt_react
ocamlgraph
ppx_sexp_conv
rresult
sexplib
tyxml
];
2019-06-13 06:40:48 +00:00
minimalOCamlVersion = "4.12";
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;
};
}