nixpkgs/pkgs/development/ocaml-modules/git-http/default.nix

16 lines
406 B
Nix

{ buildDunePackage, git, cohttp-lwt, alcotest, mtime, nocrypto }:
buildDunePackage rec {
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;
};
}