nixpkgs/pkgs/development/ocaml-modules/git-http/default.nix
2019-08-28 11:07:32 +00:00

16 lines
402 B
Nix

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