aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/ocaml-modules/git-http/default.nix
blob: 3b127c65006394eda3596138dcaae4f8927c2014 (plain)
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;
	};
}