nix-config/pkgs/change-audio/default.nix
Bruno BELANYI 305b0b985c pkgs: change-audio: 0.2.0 -> 0.3.0
Only boost audio beyond 100% if specifically asked for.
2022-02-18 12:22:51 +01:00

45 lines
911 B
Nix

{ lib, libnotify, makeWrapper, pamixer, shellcheck, stdenvNoCC }:
stdenvNoCC.mkDerivation rec {
pname = "change-audio";
version = "0.3.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 ];
};
}