nix-config/pkgs/rofi-audio-switcher/default.nix

15 lines
282 B
Nix
Raw Normal View History

{
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";
}