Files

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

26 lines
380 B
Nix
Raw Permalink Normal View History

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