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.
This commit is contained in:
Robert Helgesson
2016-09-28 17:46:29 +02:00
parent dbe350f5d0
commit e8817a2d20
7 changed files with 11 additions and 10 deletions
@@ -3,7 +3,7 @@
, 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}";
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
};
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 ];