2018-06-03 09:51:22 +02:00
|
|
|
{ stdenv, fetchFromGitHub, makeWrapper
|
2018-07-17 22:11:16 +02:00
|
|
|
, bc, dbus, gawk, gnused, libnotify, pulseaudio }:
|
2018-06-03 09:51:22 +02:00
|
|
|
|
|
|
|
let
|
2018-07-17 22:11:16 +02:00
|
|
|
path = stdenv.lib.makeBinPath [ bc dbus gawk gnused libnotify pulseaudio ];
|
2018-06-03 09:51:22 +02:00
|
|
|
pname = "pulseaudio-ctl";
|
|
|
|
|
|
|
|
in stdenv.mkDerivation rec {
|
|
|
|
name = "${pname}-${version}";
|
2019-09-28 03:49:42 +02:00
|
|
|
version = "1.67";
|
2018-06-03 09:51:22 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "graysky2";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2019-09-28 03:49:42 +02:00
|
|
|
sha256 = "1mf5r7x6aiqmx9mz7gpckrqvvzxnr5gs2q1k4m42rjk6ldkpdb46";
|
2018-06-03 09:51:22 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace Makefile \
|
|
|
|
--replace /usr $out
|
|
|
|
|
|
|
|
substituteInPlace common/${pname}.in \
|
|
|
|
--replace '$0' ${pname}
|
|
|
|
'';
|
|
|
|
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
|
|
|
|
postFixup = ''
|
|
|
|
wrapProgram $out/bin/${pname} \
|
|
|
|
--prefix PATH : ${path}
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Control pulseaudio volume from the shell or mapped to keyboard shortcuts. No need for alsa-utils.";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://bbs.archlinux.org/viewtopic.php?id=124513";
|
2018-06-03 09:51:22 +02:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ peterhoeg ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|