nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 buildDunePackage,
3 cohttp,
4 ppx_expect,
5}:
6
7buildDunePackage {
8 pname = "http";
9 inherit (cohttp)
10 version
11 src
12 ;
13
14 minimalOCamlVersion = "5.1";
15
16 propagatedBuildInputs = [ ppx_expect ];
17
18 meta = cohttp.meta // {
19 description = "CoHTTP implementation using the Lwt concurrency library";
20 };
21}