nixpkgs/pkgs/applications/audio/pulseaudio-ctl/default.nix

42 lines
1.0 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, makeWrapper
, bc, dbus, gawk, gnused, libnotify, pulseaudio }:
2018-06-03 07:51:22 +00:00
let
2021-01-15 13:21:58 +00:00
path = lib.makeBinPath [ bc dbus gawk gnused libnotify pulseaudio ];
2018-06-03 07:51:22 +00:00
pname = "pulseaudio-ctl";
in stdenv.mkDerivation rec {
name = "${pname}-${version}";
2021-02-22 10:22:15 +00:00
version = "1.69";
2018-06-03 07:51:22 +00:00
src = fetchFromGitHub {
owner = "graysky2";
repo = pname;
rev = "v${version}";
2021-02-22 10:22:15 +00:00
sha256 = "sha256-5WRhVIQlSwWuyvkzrnNW0rdVet9ZzM47gISJpznM8mU=";
2018-06-03 07:51:22 +00: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 lib; {
description = "Control pulseaudio volume from the shell or mapped to keyboard shortcuts. No need for alsa-utils";
homepage = "https://bbs.archlinux.org/viewtopic.php?id=124513";
2018-06-03 07:51:22 +00:00
license = licenses.mit;
maintainers = with maintainers; [ peterhoeg ];
platforms = platforms.linux;
};
}