f0b078ef9d
* ocamlPackages.hxd: 0.2.0 -> 0.3.1 ocamlPackages.hxd: disable lwt by default on OCaml 4.06 (syntax error) * ocamlPackages.duff: 0.3 -> 0.4 * ocamlPackages.decompress: 1.2.0 -> 1.3.0 Keep decompress 1.2.0 around as decompress-1-2 until imagelib supports decompress 1.3.0: https://github.com/rlepigre/ocaml-imagelib/issues/49 * ocamlPackages.carton*: 0.2.0 -> 0.4.0 * ocamlPackages.git: 3.3.0 -> 3.3.2
39 lines
1.0 KiB
Nix
39 lines
1.0 KiB
Nix
{ buildDunePackage, 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
|
|
, ptime
|
|
}:
|
|
|
|
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
|
|
mirage-crypto-rng ocurl git-binary ptime
|
|
];
|
|
doCheck = true;
|
|
|
|
meta = {
|
|
description = "Unix backend for the Git protocol(s)";
|
|
inherit (git.meta) homepage license maintainers;
|
|
};
|
|
}
|