core/pkgs/by-name/ba/bash/packages.nix

20 lines
436 B
Nix
Raw Normal View History

2024-05-02 00:46:19 +00:00
{ ... }:
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 { };
}