1{ buildDunePackage, git, cohttp-lwt, alcotest, mtime, nocrypto }:
2
3buildDunePackage rec {
4 pname = "git-http";
5 inherit (git) version src;
6
7 buildInputs = [ alcotest mtime nocrypto ];
8 propagatedBuildInputs = [ git cohttp-lwt ];
9 doCheck = true;
10
11 meta = {
12 description = "Client implementation of the “Smart” HTTP Git protocol in pure OCaml";
13 inherit (git.meta) homepage license maintainers;
14 };
15}