1{ pkgs, fetchurl, stdenv, gtk3, pkgconfig, intltool, alsaLib }:
2
3stdenv.mkDerivation rec {
4 name = "volumeicon-${version}";
5 version = "0.5.1";
6
7 src = fetchurl {
8 url = "http://softwarebakery.com/maato/files/volumeicon/volumeicon-0.5.1.tar.gz";
9 sha256 = "182xl2w8syv6ky2h2bc9imc6ap8pzh0p7rp63hh8nw0xm38c3f14";
10 };
11
12 buildInputs = [ gtk3 pkgconfig intltool alsaLib ];
13
14 meta = with stdenv.lib; {
15 description = "A lightweight volume control that sits in your systray";
16 homepage = http://softwarebakery.com/maato/volumeicon.html;
17 platforms = pkgs.lib.platforms.linux;
18 maintainers = with maintainers; [ bobvanderlinden ];
19 license = pkgs.lib.licenses.gpl3;
20 };
21
22}
23