Files

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

28 lines
413 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
buildDunePackage,
angstrom,
async,
}:
buildDunePackage {
pname = "angstrom-async";
inherit (angstrom) version src;
minimalOCamlVersion = "4.04.1";
propagatedBuildInputs = [
angstrom
async
];
doCheck = true;
meta = {
inherit (angstrom.meta) homepage license;
description = "Async support for Angstrom";
maintainers = with lib.maintainers; [ romildo ];
};
}