29574b70c6
GitOrigin-RevId: 64b4617883844efe0cc20163e007ee636462eb18
19 lines
453 B
Nix
19 lines
453 B
Nix
{ buildDunePackage, git
|
|
, cohttp, cohttp-lwt, fmt, lwt, result, rresult, uri
|
|
, alcotest, alcotest-lwt, bigstringaf, cstruct, logs
|
|
, mirage-flow, ke
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "git-cohttp";
|
|
|
|
inherit (git) version minimumOCamlVersion src useDune2;
|
|
|
|
propagatedBuildInputs = [
|
|
git cohttp cohttp-lwt fmt lwt result rresult uri
|
|
];
|
|
|
|
meta = git.meta // {
|
|
description = "A package to use HTTP-based ocaml-git with Unix backend";
|
|
};
|
|
}
|