summaryrefslogtreecommitdiff
path: root/pkgs/os-specific/linux/minimal-bootstrap/bash/common.nix
blob: f161c42dc2ba7da46f9f1741773d98bc6b0b1c3b (plain)
1
2
3
4
5
6
7
8
9
10
11
{ 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";
  };
}