2024-07-27 06:49:29 +00:00
|
|
|
{ buildDunePackage, cohttp }:
|
2023-04-29 16:46:19 +00:00
|
|
|
|
|
|
|
buildDunePackage {
|
|
|
|
pname = "cohttp-top";
|
|
|
|
inherit (cohttp) version src;
|
|
|
|
|
|
|
|
duneVersion = "3";
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ cohttp ];
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
meta = cohttp.meta // {
|
|
|
|
description = "CoHTTP toplevel pretty printers for HTTP types";
|
|
|
|
};
|
|
|
|
}
|