2025-03-14 05:15:05 +01:00

22 lines
351 B
Nix

{
lib,
buildDunePackage,
angstrom,
}:
buildDunePackage {
pname = "angstrom-unix";
inherit (angstrom) version src;
propagatedBuildInputs = [ angstrom ];
doCheck = true;
meta = {
inherit (angstrom.meta) homepage license;
description = "Unix support for Angstrom";
maintainers = with lib.maintainers; [ romildo ];
};
}