nixpkgs-suyu/pkgs/development/ocaml-modules/bistro/default.nix
Vincent Laporte 930b1c06b1
ocamlPackages.base64: 3.5.0 → 3.5.1 (#218580)
* ocamlPackages.otr: use Dune 3

* ocamlPackages.h2: use Dune 3

* ocamlPackages.index: use Dune 3

* ocamlPackages.progress: use Dune 3

* ocamlPackages.repr: use Dune 3

* ocamlPackages.emile: use Dune 3

* ocamlPackages.bistro: use Dune 3

* ocamlPackages.base64: 3.5.0 → 3.5.1
2023-02-27 09:14:03 -03:00

54 lines
881 B
Nix

{ lib
, ocaml
, fetchpatch
, fetchFromGitHub
, buildDunePackage
, base64
, bos
, core
, core_kernel
, core_unix
, lwt_react
, ocamlgraph
, ppx_sexp_conv
, rresult
, sexplib
, tyxml
}:
buildDunePackage rec {
pname = "bistro";
version = "unstable-2022-05-07";
duneVersion = "3";
src = fetchFromGitHub {
owner = "pveber";
repo = pname;
rev = "d363bd2d8257babbcb6db15bd83fd6465df7c268";
sha256 = "0g11324j1s2631zzf7zxc8s0nqd4fwvcni0kbvfpfxg96gy2wwfm";
};
propagatedBuildInputs = [
base64
bos
core
core_kernel
core_unix
lwt_react
ocamlgraph
ppx_sexp_conv
rresult
sexplib
tyxml
];
minimalOCamlVersion = "4.12";
meta = {
inherit (src.meta) homepage;
description = "Build and execute typed scientific workflows";
maintainers = [ lib.maintainers.vbgl ];
license = lib.licenses.gpl2;
};
}