summary refs log tree commit diff
path: root/pkgs/tools/audio/pnmixer/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/audio/pnmixer/default.nix')
-rw-r--r--pkgs/tools/audio/pnmixer/default.nix29
1 files changed, 29 insertions, 0 deletions
diff --git a/pkgs/tools/audio/pnmixer/default.nix b/pkgs/tools/audio/pnmixer/default.nix
new file mode 100644
index 000000000000..d7964c0961c6
--- /dev/null
+++ b/pkgs/tools/audio/pnmixer/default.nix
@@ -0,0 +1,29 @@
+{ stdenv, fetchgit, alsaLib, pkgconfig, gtk3, glibc, autoconf, automake, libnotify, libX11, gettext }:
+
+stdenv.mkDerivation rec {
+  name = "pnmixer";
+
+  src = fetchgit {
+    url = "git://github.com/nicklan/pnmixer.git";
+    rev = "1e09a075c0c63d8b161b13ea92528a798bdb464a";
+    sha256 = "15k689xycpc6pvq9vgg9ak92b9sg09dh4yrh83kjcaws63alrzl5";
+  };
+
+  buildInputs = [
+    alsaLib pkgconfig gtk3 glibc autoconf automake libnotify libX11 gettext
+  ];
+
+  preConfigure = ''
+    ./autogen.sh
+  '';
+
+  # work around a problem related to gtk3 updates
+  NIX_CFLAGS_COMPILE = "-Wno-error=deprecated-declarations";
+
+  meta = with stdenv.lib; {
+    description = "ALSA mixer for the system tray";
+    license = licenses.gpl3;
+    maintainers = with maintainers; [ campadrenalin ];
+    platforms = platforms.linux;
+  };
+}