about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/audio/gvolicon
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/tools/audio/gvolicon')
-rw-r--r--nixpkgs/pkgs/tools/audio/gvolicon/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/tools/audio/gvolicon/default.nix b/nixpkgs/pkgs/tools/audio/gvolicon/default.nix
new file mode 100644
index 000000000000..4a0c244f07f7
--- /dev/null
+++ b/nixpkgs/pkgs/tools/audio/gvolicon/default.nix
@@ -0,0 +1,28 @@
+{ stdenv, makeWrapper, alsaLib, pkgconfig, fetchgit, gtk3, gnome3, gdk_pixbuf, librsvg, wrapGAppsHook }:
+
+stdenv.mkDerivation {
+  name = "gvolicon-2014-04-28";
+  src = fetchgit {
+    url = "https://github.com/Unia/gvolicon";
+    rev = "0d65a396ba11f519d5785c37fec3e9a816217a07";
+    sha256 = "1sr9wyy7w898vq63yd003yp3k66hd4vm8b0qsm9zvmwmpiz4wvln";
+  };
+
+  nativeBuildInputs = [ pkgconfig ];
+  buildInputs = [
+    makeWrapper alsaLib gtk3 gdk_pixbuf gnome3.adwaita-icon-theme
+    librsvg wrapGAppsHook
+  ];
+
+  makeFlags = [ "PREFIX=$(out)" ];
+
+  NIX_CFLAGS_COMPILE = [ "-D_POSIX_C_SOURCE" ];
+
+  meta = {
+    description = "A simple and lightweight volume icon that sits in your system tray";
+    homepage = https://github.com/Unia/gvolicon;
+    platforms = stdenv.lib.platforms.linux;
+    license = stdenv.lib.licenses.gpl3Plus;
+    maintainers = [ stdenv.lib.maintainers.bennofs ];
+  };
+}