2018-11-05 11:21:46 +01:00
|
|
|
{ buildDunePackage, git-http, cohttp-lwt-unix, tls, cmdliner, mtime }:
|
2017-07-02 10:38:28 +02:00
|
|
|
|
2019-08-13 23:52:01 +02:00
|
|
|
buildDunePackage {
|
2018-11-05 11:21:46 +01:00
|
|
|
pname = "git-unix";
|
2017-07-02 10:38:28 +02:00
|
|
|
inherit (git-http) version src;
|
|
|
|
|
2018-11-05 11:21:46 +01:00
|
|
|
buildInputs = [ cmdliner mtime ];
|
2017-08-27 21:00:55 +02:00
|
|
|
propagatedBuildInputs = [ cohttp-lwt-unix git-http tls ];
|
2017-07-02 10:38:28 +02:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Unix backend for the Git protocol(s)";
|
2018-11-05 11:21:46 +01:00
|
|
|
inherit (git-http.meta) homepage license maintainers;
|
2017-07-02 10:38:28 +02:00
|
|
|
};
|
|
|
|
}
|