nix-config/pkgs/change-audio/default.nix

45 lines
911 B
Nix
Raw Normal View History

2021-11-04 15:56:01 +01:00
{ lib, libnotify, makeWrapper, pamixer, shellcheck, stdenvNoCC }:
stdenvNoCC.mkDerivation rec {
pname = "change-audio";
version = "0.2.0";
2021-11-04 15:56:01 +01:00
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 ];
};
}