aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/ocaml-modules/git-http/default.nix
blob: 89a1803b520241dd0f171e18232184bde4d75beb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ buildDunePackage, git, cohttp-lwt, alcotest, mtime, nocrypto }:

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

	buildInputs = [ alcotest mtime nocrypto ];
	propagatedBuildInputs = [ git cohttp-lwt ];
	doCheck = true;

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