mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-27 02:34:53 +00:00
19 lines
261 B
Nix
19 lines
261 B
Nix
{
|
|
buildDunePackage,
|
|
cohttp,
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "http";
|
|
inherit (cohttp)
|
|
version
|
|
src
|
|
;
|
|
|
|
minimalOCamlVersion = "5.1";
|
|
|
|
meta = cohttp.meta // {
|
|
description = "CoHTTP implementation using the Lwt concurrency library";
|
|
};
|
|
}
|