bumblebee-status: python -> python3 plugins argument

This fixes a problem with the treewide commit #03432cd21822.
This commit is contained in:
Marvin Preuss
2025-05-13 09:39:41 +02:00
parent d1fea30398
commit 8609088dd0
@@ -1,12 +1,12 @@
{
pkgs,
python,
python3,
...
}:
# propagatedBuildInputs are for Python libraries and executables
# buildInputs are for libraries
let
py = python.pkgs;
py = python3.pkgs;
in
{
amixer.propagatedBuildInputs = [ pkgs.alsa-utils ];