nixpkgs/pkgs/tools/audio/volumeicon/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
726 B
Nix
Raw Normal View History

{ fetchFromGitHub, lib, stdenv
, autoreconfHook, intltool, pkg-config
, gtk3, alsa-lib
}:
2014-09-11 18:13:43 +00:00
stdenv.mkDerivation rec {
pname = "volumeicon";
2015-03-02 23:16:12 +00:00
version = "0.5.1";
2014-09-11 18:13:43 +00:00
src = fetchFromGitHub {
owner = "Maato";
repo = "volumeicon";
rev = version;
hash = "sha256-zYKC7rOoLf08rV4B43TrGNBcXfSBFxWZCe9bQD9JzaA";
2014-09-11 18:13:43 +00:00
};
nativeBuildInputs = [
autoreconfHook
intltool
pkg-config
];
buildInputs = [
gtk3
alsa-lib
];
2014-09-11 18:13:43 +00:00
meta = with lib; {
2014-11-11 13:20:43 +00:00
description = "A lightweight volume control that sits in your systray";
homepage = "http://nullwise.com/volumeicon.html";
platforms = platforms.linux;
2014-09-11 18:13:43 +00:00
maintainers = with maintainers; [ bobvanderlinden ];
license = licenses.gpl3;
2014-09-11 18:13:43 +00:00
};
}