about summary refs log tree commit diff
path: root/pkgs/pulseaudio-ctl.nix
blob: 9651ea097f7bca0dcd1e46bc5acf956a652f0641 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
with import <nixpkgs> {};

stdenv.mkDerivation rec {
  name = "pulseaudio-ctl-${version}";
  version = "v1.66";

  src = fetchzip {
    url = "https://github.com/graysky2/pulseaudio-ctl/archive/${version}.tar.gz";
    sha256 = "19a24w7y19551ar41q848w7r1imqkl9cpff4dpb7yry7qp1yjg0y";
  };

  buildFlags = ''PREFIX=$(out)'';

  # Force Nix to detect the runtime dependency on 'bc'
  preInstall = ''
    sed -i 's|bc)|${bc}/bin/bc)|g' common/pulseaudio-ctl
  '';

  installFlags = ''PREFIX=$(out)'';

  meta = with stdenv.lib; {
    description = "Control pulseaudio volume from the shell or mapped to keyboard shortcuts";
    homepage = "https://github.com/graysky2/pulseaudio-ctl";
    license = licenses.mit;
  };
}