2021-02-16 17:04:54 +00:00
|
|
|
{ buildDunePackage, fetchpatch, git
|
|
|
|
, 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-22 21:28:39 +00:00
|
|
|
, ptime
|
2021-02-16 17:04:54 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildDunePackage {
|
|
|
|
pname = "git-unix";
|
|
|
|
inherit (git) version src minimumOCamlVersion;
|
|
|
|
|
|
|
|
useDune2 = true;
|
|
|
|
|
2021-02-22 21:28:39 +00:00
|
|
|
patches = [
|
|
|
|
# https://github.com/mirage/ocaml-git/pull/472
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/sternenseemann/ocaml-git/commit/54998331eb9d5c61afe8901fabe0c74c2877f096.patch";
|
|
|
|
sha256 = "12kd45mlfaj4hxh33k9920a22mq1q2sdrin2j41w1angvg00d3my";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2021-02-16 17:04:54 +00:00
|
|
|
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-22 21:28:39 +00:00
|
|
|
mirage-crypto-rng ocurl git-binary ptime
|
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;
|
|
|
|
};
|
|
|
|
}
|