12 lines
307 B
Nix
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";
|
|
};
|
|
}
|