2018-11-05 10:21:46 +00:00
|
|
|
{ buildDunePackage, git, cohttp-lwt, alcotest, mtime, nocrypto }:
|
2017-07-02 09:26:39 +01:00
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
buildDunePackage {
|
2018-11-05 10:21:46 +00:00
|
|
|
pname = "git-http";
|
2017-07-02 09:26:39 +01:00
|
|
|
inherit (git) version src;
|
|
|
|
|
2018-11-05 10:21:46 +00:00
|
|
|
buildInputs = [ alcotest mtime nocrypto ];
|
2017-08-27 20:00:55 +01:00
|
|
|
propagatedBuildInputs = [ git cohttp-lwt ];
|
2018-05-03 19:37:47 +01:00
|
|
|
doCheck = true;
|
|
|
|
|
2017-07-02 09:26:39 +01:00
|
|
|
meta = {
|
|
|
|
description = "Client implementation of the “Smart” HTTP Git protocol in pure OCaml";
|
2018-11-05 10:21:46 +00:00
|
|
|
inherit (git.meta) homepage license maintainers;
|
2017-07-02 09:26:39 +01:00
|
|
|
};
|
|
|
|
}
|