about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@gmail.com>2017-10-23T23·20+0200
committerVincent Ambo <tazjin@gmail.com>2017-10-23T23·20+0200
commit2eb27420e1cd75ec93b6f86063e8b34d644d35a4 (patch)
treec04c8b2a0cde2bcd9260ec073fbb1acf66cd1be8 /pkgs
parent2c3ea872d6e18536359aff8e05862c45584a7b62 (diff)
feat(pkgs): Add pulseaudio-ctl
This is required for i3!
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/pulseaudio-ctl.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/pulseaudio-ctl.nix b/pkgs/pulseaudio-ctl.nix
new file mode 100644
index 000000000000..9651ea097f7b
--- /dev/null
+++ b/pkgs/pulseaudio-ctl.nix
@@ -0,0 +1,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;
+  };
+}