mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-27 02:34:53 +00:00
20 lines
317 B
Nix
20 lines
317 B
Nix
{
|
|
buildDunePackage,
|
|
cohttp,
|
|
ppx_expect,
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "cohttp-top";
|
|
inherit (cohttp) version src;
|
|
|
|
propagatedBuildInputs = [ cohttp ];
|
|
|
|
doCheck = true;
|
|
checkInputs = [ ppx_expect ];
|
|
|
|
meta = cohttp.meta // {
|
|
description = "CoHTTP toplevel pretty printers for HTTP types";
|
|
};
|
|
}
|