c7e6337bd0
GitOrigin-RevId: 08e4dc3a907a6dfec8bb3bbf1540d8abbffea22b
16 lines
293 B
Nix
16 lines
293 B
Nix
{ lib, buildDunePackage, cohttp }:
|
|
|
|
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";
|
|
};
|
|
}
|