29574b70c6
GitOrigin-RevId: 64b4617883844efe0cc20163e007ee636462eb18
17 lines
424 B
Nix
17 lines
424 B
Nix
{ buildDunePackage, git, git-cohttp
|
|
, cohttp-lwt-unix, cohttp-lwt, fmt, lwt, result, rresult, uri
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "git-cohttp-unix";
|
|
|
|
inherit (git) version src minimumOCamlVersion useDune2;
|
|
|
|
propagatedBuildInputs = [
|
|
git git-cohttp cohttp-lwt-unix cohttp-lwt fmt lwt result rresult uri
|
|
];
|
|
|
|
meta = git.meta // {
|
|
description = "A package to use HTTP-based ocaml-git with Unix backend";
|
|
};
|
|
}
|