Files

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

25 lines
351 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
buildDunePackage,
faraday,
core_unix ? null,
async,
}:
buildDunePackage {
pname = "faraday-async";
inherit (faraday) version src;
minimalOCamlVersion = "4.08";
duneVersion = "3";
propagatedBuildInputs = [
faraday
core_unix
async
];
meta = faraday.meta // {
description = "Async support for Faraday";
};
}