Files
2026-01-26 21:45:18 +02:00

12 lines
307 B
Nix

{ lib }:
{
meta = {
description = "GNU Bourne-Again Shell, the de facto standard shell on Linux";
homepage = "https://www.gnu.org/software/bash";
license = lib.licenses.gpl3Plus;
teams = [ lib.teams.minimal-bootstrap ];
platforms = lib.platforms.unix;
mainProgram = "bash";
};
}