aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/ocaml-modules/git/cohttp.nix
blob: e9126ba4becec377add5401ef47c36bf8f342b69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ buildDunePackage, git
, cohttp, cohttp-lwt, fmt, lwt, result, rresult, uri
, alcotest, alcotest-lwt, bigstringaf, cstruct, logs
, mirage-flow, ke
}:

buildDunePackage rec {
  pname = "git-cohttp";

  inherit (git) version minimumOCamlVersion src useDune2;

  propagatedBuildInputs = [
    git cohttp cohttp-lwt fmt lwt result rresult uri
  ];

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