2021-03-19 17:17:44 +00:00
|
|
|
{ buildDunePackage, git
|
2021-02-16 17:04:54 +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-05-20 23:08:51 +00:00
|
|
|
, ptime, mimic, ca-certs-nss, tls, tls-mirage
|
|
|
|
, cacert
|
2021-02-16 17:04:54 +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
|
2021-05-20 23:08:51 +00:00
|
|
|
cstruct ptime mimic ca-certs-nss
|
|
|
|
tls tls-mirage
|
2021-02-16 17:04:54 +00:00
|
|
|
];
|
|
|
|
checkInputs = [
|
2021-05-20 23:08:51 +00:00
|
|
|
alcotest alcotest-lwt base64 ke
|
|
|
|
mirage-crypto-rng git-binary
|
|
|
|
cohttp-lwt-unix
|
|
|
|
cacert # sets up NIX_SSL_CERT_FILE
|
2021-02-16 17:04:54 +00:00
|
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Unix backend for the Git protocol(s)";
|
|
|
|
inherit (git.meta) homepage license maintainers;
|
|
|
|
};
|
|
|
|
}
|