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

24 lines
695 B
Nix
Raw Normal View History

2014-09-11 18:13:43 +00:00
{ pkgs, fetchurl, stdenv, gtk3, pkgconfig, intltool, alsaLib }:
stdenv.mkDerivation rec {
name = "volumeicon-${version}";
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
};
buildInputs = [ gtk3 pkgconfig intltool alsaLib ];
meta = with stdenv.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;
};
}