2020-04-24 23:36:52 +00:00
|
|
|
{ lib, buildDunePackage, cohttp-lwt, irmin, webmachine
|
2021-02-16 17:04:54 +00:00
|
|
|
, checkseum, git-unix, irmin-git, irmin-test, digestif, git-cohttp-unix
|
2021-05-20 23:08:51 +00:00
|
|
|
, cacert
|
2020-04-24 23:36:52 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildDunePackage rec {
|
|
|
|
|
|
|
|
pname = "irmin-http";
|
|
|
|
|
|
|
|
inherit (irmin) version src;
|
|
|
|
|
2020-07-18 16:06:22 +00:00
|
|
|
useDune2 = true;
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
propagatedBuildInputs = [ cohttp-lwt irmin webmachine ];
|
|
|
|
|
2021-05-20 23:08:51 +00:00
|
|
|
checkInputs = [
|
|
|
|
digestif checkseum git-cohttp-unix git-unix irmin-git irmin-test cacert
|
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
meta = irmin.meta // {
|
|
|
|
description = "HTTP client and server for Irmin";
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|