summary refs log blame commit diff
path: root/pkgs/development/ocaml-modules/git-http/default.nix
blob: 89a1803b520241dd0f171e18232184bde4d75beb (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                                 
 
                  
                           

                                  
                                                  
                                                   
                       
 

                                                                                                         
                                                                

          
{ 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;
	};
}