nixos-configuration/pkgs/mute-indicator/default.nix
2022-06-08 11:45:49 +00:00

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
# '';
}