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

25 lines
710 B
Nix
Raw Normal View History

{ pkgs, fetchurl, lib, stdenv, gtk3, pkg-config, intltool, alsaLib }:
2014-09-11 18:13:43 +00:00
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
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
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ gtk3 intltool alsaLib ];
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://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;
};
}