2021-01-17 01:17:16 -08:00
|
|
|
{ pkgs, fetchurl, lib, stdenv, gtk3, pkg-config, intltool, alsaLib }:
|
2014-09-11 11:13:43 -07:00
|
|
|
|
2019-08-13 14:52:01 -07:00
|
|
|
stdenv.mkDerivation {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "volumeicon";
|
2015-03-02 15:16:12 -08:00
|
|
|
version = "0.5.1";
|
2014-09-11 11:13:43 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-03-02 15:16:12 -08:00
|
|
|
url = "http://softwarebakery.com/maato/files/volumeicon/volumeicon-0.5.1.tar.gz";
|
|
|
|
sha256 = "182xl2w8syv6ky2h2bc9imc6ap8pzh0p7rp63hh8nw0xm38c3f14";
|
2014-09-11 11:13:43 -07:00
|
|
|
};
|
|
|
|
|
2021-01-17 01:17:16 -08:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2017-09-05 14:26:13 -07:00
|
|
|
buildInputs = [ gtk3 intltool alsaLib ];
|
2014-09-11 11:13:43 -07:00
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2014-11-11 05:20:43 -08:00
|
|
|
description = "A lightweight volume control that sits in your systray";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "http://softwarebakery.com/maato/volumeicon.html";
|
2014-09-11 11:13:43 -07:00
|
|
|
platforms = pkgs.lib.platforms.linux;
|
|
|
|
maintainers = with maintainers; [ bobvanderlinden ];
|
|
|
|
license = pkgs.lib.licenses.gpl3;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|