Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ buildDunePackage, cohttp }: 2 3buildDunePackage { 4 pname = "cohttp-top"; 5 inherit (cohttp) version src; 6 7 duneVersion = "3"; 8 9 propagatedBuildInputs = [ cohttp ]; 10 11 doCheck = true; 12 13 meta = cohttp.meta // { 14 description = "CoHTTP toplevel pretty printers for HTTP types"; 15 }; 16}