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

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

	buildInputs = [ cmdliner mtime ];
	propagatedBuildInputs = [ cohttp-lwt-unix git-http tls ];

	meta = {
		description = "Unix backend for the Git protocol(s)";
		inherit (git-http.meta) homepage license maintainers;
	};
}