{
  lib,
  pkgs,
  fetchFromGitHub,
  ...
}:
pkgs.stdenv.mkDerivation rec {
  name = "rofi-audio-switcher";
  propagatedBuildInputs = [
    pkgs.python311
  ];
  dontUnpack = true;
  installPhase = "install -Dm755 ${./wireplumber_audio_switcher.py} $out/bin/rofi-audio-switcher";
}