about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/git/paf.nix
blob: cf0272ddf3b89c8e5463e6a68ac544f1e10457db (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
46
47
48
49
{ lib, buildDunePackage
, git
, mimic
, paf
, ca-certs-nss
, cohttp
, cohttp-lwt
, fmt
, ipaddr
, logs
, lwt
, mirage-clock
, mirage-stack
, mirage-time
, result
, rresult
, tls
, uri
}:

buildDunePackage {
  pname = "git-paf";

  inherit (git) version src minimumOCamlVersion useDune2;

  propagatedBuildInputs = [
    git
    mimic
    paf
    ca-certs-nss
    cohttp
    cohttp-lwt
    fmt
    lwt
    result
    rresult
    ipaddr
    logs
    mirage-clock
    mirage-stack
    mirage-time
    tls
    uri
  ];

  meta = git.meta // {
    description = "A package to use HTTP-based ocaml-git with MirageOS backend";
  };
}