2022-07-31 15:25:06 +00:00
|
|
|
{ fetchFromGitHub, lib, stdenv
|
|
|
|
, autoreconfHook, intltool, pkg-config
|
|
|
|
, gtk3, alsa-lib
|
|
|
|
}:
|
2014-09-11 18:13:43 +00:00
|
|
|
|
2022-07-31 15:25:06 +00:00
|
|
|
stdenv.mkDerivation rec {
|
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
|
|
|
|
2022-07-31 15:25:06 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Maato";
|
|
|
|
repo = "volumeicon";
|
|
|
|
rev = version;
|
|
|
|
hash = "sha256-zYKC7rOoLf08rV4B43TrGNBcXfSBFxWZCe9bQD9JzaA";
|
2014-09-11 18:13:43 +00:00
|
|
|
};
|
|
|
|
|
2022-07-31 15:25:06 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
autoreconfHook
|
|
|
|
intltool
|
|
|
|
pkg-config
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
gtk3
|
|
|
|
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";
|
2022-07-31 15:25:06 +00:00
|
|
|
homepage = "http://nullwise.com/volumeicon.html";
|
|
|
|
platforms = platforms.linux;
|
2014-09-11 18:13:43 +00:00
|
|
|
maintainers = with maintainers; [ bobvanderlinden ];
|
2022-07-31 15:25:06 +00:00
|
|
|
license = licenses.gpl3;
|
2014-09-11 18:13:43 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|