21 lines
431 B
Nix
21 lines
431 B
Nix
{ python310Packages }:
|
|
|
|
python310Packages.buildPythonApplication rec {
|
|
pname = "mute-indicator";
|
|
version = "0.0.1";
|
|
|
|
src = ./.;
|
|
|
|
propagatedBuildInputs = with python310Packages; [
|
|
python
|
|
pulsectl
|
|
pyserial
|
|
];
|
|
|
|
# installPhase = ''
|
|
# echo $src
|
|
# mkdir -p $out/bin
|
|
# cp pulseaudio-mute-indicator.py $out/bin/pulseaudio-mute-indicator
|
|
# chmod +x $out/bin/pulseaudio-mute-indicator
|
|
# '';
|
|
}
|