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

16 lines
402 B
Nix
Raw Normal View History

{ buildDunePackage, git, cohttp-lwt, alcotest, mtime, nocrypto }:
2019-08-13 21:52:01 +00:00
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;
};
}