nix-config/pkgs/change-audio/default.nix
Bruno BELANYI dab44c6052 pkgs: change-audio: 0.1.2 -> 0.2.0
Allow muting microphone and speakers, with refactor to make it DRY.
2021-11-12 10:17:42 +01:00

45 lines
911 B
Nix

{ lib, libnotify, makeWrapper, pamixer, shellcheck, stdenvNoCC }:
stdenvNoCC.mkDerivation rec {
pname = "change-audio";
version = "0.2.0";
src = ./change-audio;
buildInputs = [
makeWrapper
shellcheck
];
dontUnpack = true;
buildPhase = ''
shellcheck $src
'';
installPhase = ''
mkdir -p $out/bin
cp $src $out/bin/change-audio
chmod a+x $out/bin/change-audio
'';
wrapperPath = lib.makeBinPath [
libnotify
pamixer
];
fixupPhase = ''
patchShebangs $out/bin/change-audio
wrapProgram $out/bin/change-audio --prefix PATH : "${wrapperPath}"
'';
meta = with lib; {
description = ''
A script to change the volume and notify about it
'';
homepage = "https://gitea.belanyi.fr/ambroisie/nix-config";
license = with licenses; [ mit ];
platforms = platforms.linux;
maintainers = with maintainers; [ ambroisie ];
};
}