mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
24 lines
376 B
Nix
24 lines
376 B
Nix
{
|
|
buildDunePackage,
|
|
cohttp,
|
|
cohttp-lwt-unix,
|
|
http,
|
|
lwt,
|
|
}:
|
|
|
|
buildDunePackage (finalAttrs: {
|
|
pname = "cohttp-server-lwt-unix";
|
|
inherit (cohttp) version src;
|
|
|
|
propagatedBuildInputs = [
|
|
http
|
|
lwt
|
|
];
|
|
|
|
checkInputs = [ cohttp-lwt-unix ];
|
|
doCheck = true;
|
|
|
|
meta = cohttp.meta // {
|
|
description = "Lightweight Cohttp + Lwt based HTTP server";
|
|
};
|
|
})
|