mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
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;
|
|
};
|
|
}
|