ocamlPackages.git-http: init at 1.11.0
Client implementation of the “Smart” HTTP Git protocol in pure OCaml.
This commit is contained in:
parent
6f3696784d
commit
ed12c7a9b9
19
pkgs/development/ocaml-modules/git-http/default.nix
Normal file
19
pkgs/development/ocaml-modules/git-http/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
@ -249,6 +249,8 @@ let
|
|||||||
|
|
||||||
git = callPackage ../development/ocaml-modules/git { };
|
git = callPackage ../development/ocaml-modules/git { };
|
||||||
|
|
||||||
|
git-http = callPackage ../development/ocaml-modules/git-http { };
|
||||||
|
|
||||||
gmetadom = callPackage ../development/ocaml-modules/gmetadom { };
|
gmetadom = callPackage ../development/ocaml-modules/gmetadom { };
|
||||||
|
|
||||||
gtktop = callPackage ../development/ocaml-modules/gtktop { };
|
gtktop = callPackage ../development/ocaml-modules/gtktop { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user