polybar-pulseaudio-control: add missing runtime dependencies (#352006)

Add wesleyjrz as maintainer
This commit is contained in:
Wesley Jr. 2024-10-29 01:43:21 -03:00 committed by GitHub
parent dde45174cc
commit 5655804f06
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,6 +2,8 @@
, bash
, coreutils
, fetchFromGitHub
, gnused
, gnugrep
, gawk
, makeWrapper
, pulseaudio
@ -28,7 +30,7 @@ stdenv.mkDerivation (finalAttrs: {
install -Dm755 pulseaudio-control.bash $out/bin/pulseaudio-control
wrapProgram "$out/bin/pulseaudio-control" \
--prefix PATH : "${lib.makeBinPath [ bash coreutils gawk pulseaudio ]}"
--prefix PATH : "${lib.makeBinPath [ bash coreutils gnused gnugrep gawk pulseaudio ]}"
runHook postInstall
'';
@ -39,6 +41,6 @@ stdenv.mkDerivation (finalAttrs: {
homepage = "https://github.com/marioortizmanero/polybar-pulseaudio-control";
platforms = platforms.linux;
license = licenses.mit;
maintainers = with maintainers; [ benlemasurier ];
maintainers = with maintainers; [ benlemasurier wesleyjrz ];
};
})