2022-10-21 18:38:19 +00:00
|
|
|
{ lib, buildDunePackage, astring, cohttp-lwt, cohttp-lwt-unix, irmin, webmachine
|
|
|
|
, fmt, jsonm, logs, lwt, uri
|
|
|
|
, git-unix, irmin-git, irmin-test, irmin-fs, digestif
|
2021-05-20 23:08:51 +00:00
|
|
|
, cacert
|
2020-04-24 23:36:52 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildDunePackage rec {
|
|
|
|
|
|
|
|
pname = "irmin-http";
|
|
|
|
|
2022-10-21 18:38:19 +00:00
|
|
|
inherit (irmin) version src strictDeps;
|
2022-12-28 21:21:41 +00:00
|
|
|
duneVersion = "3";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2020-07-18 16:06:22 +00:00
|
|
|
|
2022-10-21 18:38:19 +00:00
|
|
|
propagatedBuildInputs = [ astring cohttp-lwt cohttp-lwt-unix fmt jsonm logs lwt uri irmin webmachine ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2023-02-09 11:40:11 +00:00
|
|
|
checkInputs = [
|
2022-10-21 18:38:19 +00:00
|
|
|
digestif git-unix irmin-git irmin-test irmin-fs cacert
|
2021-05-20 23:08:51 +00:00
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
meta = irmin.meta // {
|
|
|
|
description = "HTTP client and server for Irmin";
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|