12 lines
280 B
Nix
12 lines
280 B
Nix
|
{ lib }:
|
||
|
|
||
|
{
|
||
|
meta = with lib; {
|
||
|
description = "GNU implementation of the Awk programming language";
|
||
|
homepage = "https://www.gnu.org/software/gawk";
|
||
|
license = licenses.gpl3Plus;
|
||
|
maintainers = teams.minimal-bootstrap.members;
|
||
|
platforms = platforms.unix;
|
||
|
};
|
||
|
}
|