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