bash: 4.4 -> 5.1

This commit is contained in:
happysalada 2021-08-20 15:09:04 +09:00 committed by Raphael Megzari
parent 33518fcb45
commit bdda9a2ed5

View file

@ -10654,25 +10654,25 @@ with pkgs;
any-nix-shell = callPackage ../shells/any-nix-shell { };
bash = lowPrio (callPackage ../shells/bash/4.4.nix {
bash_4 = lowPrio (callPackage ../shells/bash/4.4.nix {
binutils = stdenv.cc.bintools;
});
bash_5 = lowPrio (callPackage ../shells/bash/5.1.nix {
bash = lowPrio (callPackage ../shells/bash/5.1.nix {
binutils = stdenv.cc.bintools;
});
bashInteractive_5 = lowPrio (callPackage ../shells/bash/5.1.nix {
binutils = stdenv.cc.bintools;
interactive = true;
withDocs = true;
});
# WARNING: this attribute is used by nix-shell so it shouldn't be removed/renamed
bashInteractive = callPackage ../shells/bash/4.4.nix {
bashInteractive = callPackage ../shells/bash/5.1.nix {
binutils = stdenv.cc.bintools;
interactive = true;
withDocs = true;
};
bashInteractive_4 = lowPrio (callPackage ../shells/bash/4.4.nix {
binutils = stdenv.cc.bintools;
interactive = true;
withDocs = true;
});
bash-completion = callPackage ../shells/bash/bash-completion { };
gradle-completion = callPackage ../shells/zsh/gradle-completion { };