15 lines
282 B
Nix
15 lines
282 B
Nix
|
{
|
||
|
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";
|
||
|
}
|