21 lines
355 B
Nix
21 lines
355 B
Nix
{
|
|
lib,
|
|
buildDunePackage,
|
|
angstrom,
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
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 ];
|
|
};
|
|
}
|