ocamlPackages.git-unix: init at 1.11.0
Unix backend for the Git protocol(s)
This commit is contained in:
parent
ed12c7a9b9
commit
e8c0e8a04b
21
pkgs/development/ocaml-modules/git-unix/default.nix
Normal file
21
pkgs/development/ocaml-modules/git-unix/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user