summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/git/unix.nix
blob: 9fdca9fef13c4bfe1593e1f3067d071c79ec2fd6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{ buildDunePackage, git
, rresult, result, bigstringaf
, fmt, bos, fpath, uri, digestif, logs, lwt
, mirage-clock, mirage-clock-unix, astring, awa, cmdliner
, decompress, domain-name, ipaddr, mtime
, tcpip, awa-mirage, mirage-flow, mirage-unix
, alcotest, alcotest-lwt, base64, cstruct
, ke, mirage-crypto-rng, ocurl, git-binary
, ptime, mimic, ca-certs-nss, tls, tls-mirage
, cacert, happy-eyeballs-lwt, git-mirage
}:

buildDunePackage {
  pname = "git-unix";
  inherit (git) version src;

  minimalOCamlVersion = "4.08";
  duneVersion = "3";

  buildInputs = [
    awa awa-mirage cmdliner
    mirage-clock tcpip
  ];
  propagatedBuildInputs = [
    rresult result bigstringaf
    fmt bos fpath digestif logs lwt
    astring decompress
    domain-name ipaddr mirage-flow mirage-unix
    cstruct ptime mimic ca-certs-nss
    tls tls-mirage git happy-eyeballs-lwt
    git-mirage mirage-clock-unix
  ];
  checkInputs = [
    alcotest alcotest-lwt base64 ke
    mirage-crypto-rng git-binary
    uri mtime
    cacert # sets up NIX_SSL_CERT_FILE
  ];
  doCheck = true;

  meta = {
    description = "Unix backend for the Git protocol(s)";
    inherit (git.meta) homepage license maintainers;
  };
}