depot/third_party/nixpkgs/pkgs/development/ocaml-modules/cohttp/top.nix

17 lines
293 B
Nix
Raw Normal View History

{ 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";
};
}