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

19 lines
436 B
Nix
Raw Normal View History

2024-05-02 00:46:19 +00:00
{ ... }:
res: pkgs: super:
2024-05-13 21:24:10 +00:00
with pkgs; {
2024-05-02 00:46:19 +00:00
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 { };
}