summary refs log tree commit diff
path: root/pkgs/os-specific/linux/minimal-bootstrap/gawk/common.nix
blob: d95c66d86337c59d674706916b1f06dfee1af6a4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{ 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;
  };
}