bash-completion: change attribute name

This changes the attribute name of bash-completion from `bashCompletion`
to `bash-completion`. Keeps `bashCompletion` as an alias for the new
name.

Changed files
+11 -10
nixos
modules
programs
bash
pkgs
tools
audio
beets
misc
colord
package-management
createrepo_c
packagekit
top-level
+1 -1
nixos/modules/programs/bash/bash.nix
···
# programmable completion. If we do, enable all modules installed in
# the system (and user profile).
if shopt -q progcomp &>/dev/null; then
-
. "${pkgs.bashCompletion}/etc/profile.d/bash_completion.sh"
+
. "${pkgs.bash-completion}/etc/profile.d/bash_completion.sh"
nullglobStatus=$(shopt -p nullglob)
shopt -s nullglob
for p in $NIX_PROFILES; do
+2 -2
pkgs/tools/audio/beets/default.nix
···
, enableAlternatives ? false
, enableCopyArtifacts ? false
-
, bashInteractive, bashCompletion
+
, bashInteractive, bash-completion
}:
assert enableAcoustid -> pythonPackages.pyacoustid != null;
···
allEnabledPlugins = pluginsWithoutDeps ++ enabledOptionalPlugins;
testShell = "${bashInteractive}/bin/bash --norc";
-
completion = "${bashCompletion}/share/bash-completion/bash_completion";
+
completion = "${bash-completion}/share/bash-completion/bash_completion";
in pythonPackages.buildPythonApplication rec {
name = "beets-${version}";
+2 -2
pkgs/tools/misc/colord/default.nix
···
-
{ stdenv, fetchzip, fetchgit, bashCompletion
+
{ stdenv, fetchzip, fetchgit, bash-completion
, glib, polkit, pkgconfig, intltool, gusb, libusb1, lcms2, sqlite, systemd, dbus
, automake, autoconf, libtool, gtk_doc, which, gobjectIntrospection, argyllcms
, libgudev, sane-backends }:
···
'';
buildInputs = [ glib polkit pkgconfig intltool gusb libusb1 lcms2 sqlite systemd dbus gobjectIntrospection
-
bashCompletion argyllcms automake autoconf libgudev sane-backends ];
+
bash-completion argyllcms automake autoconf libgudev sane-backends ];
postInstall = ''
mkdir -p $out/etc/bash_completion.d
+2 -2
pkgs/tools/package-management/createrepo_c/default.nix
···
-
{ stdenv, fetchFromGitHub, cmake, pkgconfig, bzip2, expat, glib, curl, libxml2, python, rpm, openssl, sqlite, file, xz, pcre, bashCompletion }:
+
{ stdenv, fetchFromGitHub, cmake, pkgconfig, bzip2, expat, glib, curl, libxml2, python, rpm, openssl, sqlite, file, xz, pcre, bash-completion }:
stdenv.mkDerivation rec {
rev = "0.10.0";
···
"set (PYTHON_INSTALL_DIR "$out/${python.sitePackages}")"
'';
-
buildInputs = [ cmake pkgconfig bzip2 expat glib curl libxml2 python rpm openssl sqlite file xz pcre bashCompletion ];
+
buildInputs = [ cmake pkgconfig bzip2 expat glib curl libxml2 python rpm openssl sqlite file xz pcre bash-completion ];
meta = with stdenv.lib; {
description = "C implementation of createrepo";
+2 -2
pkgs/tools/package-management/packagekit/default.nix
···
, gobjectIntrospection, vala_0_23, gtk_doc, autoreconfHook, autoconf-archive
, nix, boost
, enableCommandNotFound ? false
-
, enableBashCompletion ? false, bashCompletion ? null }:
+
, enableBashCompletion ? false, bash-completion ? null }:
stdenv.mkDerivation rec {
name = "packagekit-${version}";
···
};
buildInputs = [ glib polkit systemd python gobjectIntrospection vala_0_23 ]
-
++ lib.optional enableBashCompletion bashCompletion;
+
++ lib.optional enableBashCompletion bash-completion;
propagatedBuildInputs = [ sqlite nix boost ];
nativeBuildInputs = [ intltool pkgconfig autoreconfHook autoconf-archive gtk_doc ];
+1
pkgs/top-level/aliases.nix
···
asciidocFull = asciidoc-full; # added 2014-06-22
bar = lemonbar; # added 2015-01-16
bar-xft = lemonbar-xft; # added 2015-01-16
+
bashCompletion = bash-completion; # Added 2016-09-28
bridge_utils = bridge-utils; # added 2015-02-20
btrfsProgs = btrfs-progs; # added 2016-01-03
bundler_HEAD = bundler; # added 2015-11-15
+1 -1
pkgs/top-level/all-packages.nix
···
interactive = true;
});
-
bashCompletion = callPackage ../shells/bash-completion { };
+
bash-completion = callPackage ../shells/bash-completion { };
dash = callPackage ../shells/dash { };