Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
349 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
buildDunePackage,
httpaf,
faraday-lwt-unix,
lwt,
}:
buildDunePackage {
pname = "httpaf-lwt-unix";
inherit (httpaf) version src;
duneVersion = "3";
minimalOCamlVersion = "4.08";
propagatedBuildInputs = [
faraday-lwt-unix
httpaf
lwt
];
meta = httpaf.meta // {
description = "Lwt support for http/af";
};
}