aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/ocaml-modules/git/cohttp-unix.nix
blob: ac6d423d58ae429530a950a3d32b8534b5a17469 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ buildDunePackage, git, git-cohttp
, cohttp-lwt-unix, cohttp-lwt, fmt, lwt, result, rresult, uri
}:

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

  inherit (git) version src minimumOCamlVersion useDune2;

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

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