about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/cohttp/top.nix
blob: 0a8f54871b1b7239fa33484996732bd74f0b58fc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ 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";
  };
}