ocamlPackages.git-unix: init at 1.11.0

Unix backend for the Git protocol(s)
This commit is contained in:
Vincent Laporte 2017-07-02 08:38:28 +00:00
parent ed12c7a9b9
commit e8c0e8a04b
2 changed files with 23 additions and 0 deletions

View file

@ -0,0 +1,21 @@
{ stdenv, ocaml, findlib, jbuilder, git-http
, ocaml_lwt, tls, conduit, magic-mime, cmdliner, mtime
}:
stdenv.mkDerivation rec {
name = "ocaml${ocaml.version}-git-unix-${version}";
inherit (git-http) version src;
buildInputs = [ ocaml findlib jbuilder cmdliner mtime ];
propagatedBuildInputs = [ conduit git-http magic-mime ocaml_lwt tls ];
buildPhase = "jbuilder build -p git-unix";
inherit (jbuilder) installPhase;
meta = {
description = "Unix backend for the Git protocol(s)";
inherit (git-http.meta) homepage license maintainers platforms;
};
}

View file

@ -251,6 +251,8 @@ let
git-http = callPackage ../development/ocaml-modules/git-http { };
git-unix = callPackage ../development/ocaml-modules/git-unix { };
gmetadom = callPackage ../development/ocaml-modules/gmetadom { };
gtktop = callPackage ../development/ocaml-modules/gtktop { };