about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/git-http/default.nix
blob: 54bd5c2da2334e3840198788a929caa80127aa7b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ buildDunePackage, git, cohttp, cohttp-lwt }:

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

  useDune2 = true;

  propagatedBuildInputs = [ git cohttp cohttp-lwt ];

  meta = {
    description = "Client implementation of the “Smart” HTTP Git protocol in pure OCaml";
    inherit (git.meta) homepage license maintainers;
  };
}