Files
nixpkgs/pkgs/os-specific/linux/minimal-bootstrap/gawk/common.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
270 B
Nix
Raw Normal View History

2025-10-09 14:15:47 +02:00
{ 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;
};
}