core/pkgs/by-name/ba/bash/packages.nix
2024-05-13 11:34:52 -04:00

20 lines
436 B
Nix

{ ... }:
res: pkgs: super:
with pkgs;
{
bash = lowPrio (callPackage ./5.nix { });
# WARNING: this attribute is used by nix-shell so it shouldn't be removed/renamed
bashInteractive = callPackage ./5.nix {
interactive = true;
withDocs = true;
};
bashInteractiveFHS = callPackage ./5.nix {
interactive = true;
withDocs = true;
forFHSEnv = true;
};
bash-completion = callPackage ./bash-completion { };
}