about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/git/cohttp-mirage.nix
blob: d308840064104a212d7a2dde3b2aebc0f0426b64 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ lib, buildDunePackage
, git, mimic, cohttp-mirage, cohttp, cohttp-lwt
, fmt, lwt, result, rresult, uri
}:

buildDunePackage {
  pname = "git-cohttp-mirage";

  inherit (git) version src minimumOCamlVersion useDune2;

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

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