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