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