2021-03-16 12:07:17 +00:00
|
|
|
{ buildDunePackage, git
|
2021-02-16 07:39:46 +00:00
|
|
|
, mmap, rresult, result, bigstringaf
|
|
|
|
, fmt, bos, fpath, uri, digestif, logs, lwt, git-cohttp-unix
|
|
|
|
, mirage-clock, mirage-clock-unix, astring, awa, cmdliner
|
|
|
|
, cohttp-lwt-unix, decompress, domain-name, ipaddr, mtime
|
|
|
|
, tcpip, awa-mirage, mirage-flow
|
|
|
|
, alcotest, alcotest-lwt, base64, cstruct
|
|
|
|
, ke, mirage-crypto-rng, ocurl, git-binary
|
2021-02-19 21:19:24 +00:00
|
|
|
, ptime
|
2021-02-16 07:39:46 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildDunePackage {
|
|
|
|
pname = "git-unix";
|
|
|
|
inherit (git) version src minimumOCamlVersion;
|
|
|
|
|
|
|
|
useDune2 = true;
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
awa awa-mirage cmdliner git-cohttp-unix
|
|
|
|
mirage-clock mirage-clock-unix tcpip
|
|
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
mmap rresult result bigstringaf
|
|
|
|
fmt bos fpath uri digestif logs lwt
|
|
|
|
astring cohttp-lwt-unix decompress
|
|
|
|
domain-name ipaddr mtime mirage-flow
|
|
|
|
];
|
|
|
|
checkInputs = [
|
|
|
|
alcotest alcotest-lwt base64 cstruct ke
|
2021-02-19 21:19:24 +00:00
|
|
|
mirage-crypto-rng ocurl git-binary ptime
|
2021-02-16 07:39:46 +00:00
|
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Unix backend for the Git protocol(s)";
|
|
|
|
inherit (git.meta) homepage license maintainers;
|
|
|
|
};
|
|
|
|
}
|