ocamlPackages.git-http: init at 1.11.0

Client implementation of the “Smart” HTTP Git protocol in pure OCaml.
This commit is contained in:
Vincent Laporte
2017-07-02 08:26:39 +00:00
parent 6f3696784d
commit ed12c7a9b9
2 changed files with 21 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
{ stdenv, ocaml, findlib, jbuilder, git, cohttp }:
stdenv.mkDerivation rec {
name = "ocaml${ocaml.version}-git-http-${version}";
inherit (git) version src;
buildInputs = [ ocaml findlib jbuilder ];
propagatedBuildInputs = [ git cohttp ];
buildPhase = "jbuilder build -p git-http";
inherit (jbuilder) installPhase;
meta = {
description = "Client implementation of the Smart HTTP Git protocol in pure OCaml";
inherit (git.meta) homepage license maintainers platforms;
};
}