29574b70c6
GitOrigin-RevId: 64b4617883844efe0cc20163e007ee636462eb18
25 lines
487 B
Nix
25 lines
487 B
Nix
{ lib, buildDunePackage, cohttp-lwt, irmin, webmachine
|
|
, checkseum, git-unix, irmin-git, irmin-test, digestif, git-cohttp-unix
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "irmin-http";
|
|
|
|
inherit (irmin) version src;
|
|
|
|
useDune2 = true;
|
|
|
|
propagatedBuildInputs = [ cohttp-lwt irmin webmachine ];
|
|
|
|
checkInputs = [ digestif checkseum git-cohttp-unix git-unix irmin-git irmin-test ];
|
|
|
|
doCheck = true;
|
|
|
|
meta = irmin.meta // {
|
|
description = "HTTP client and server for Irmin";
|
|
};
|
|
|
|
}
|
|
|
|
|