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

25 lines
708 B
Nix
Raw Normal View History

2014-09-11 19:13:43 +01:00
{ pkgs, fetchurl, stdenv, gtk3, pkgconfig, intltool, alsaLib }:
2019-08-13 22:52:01 +01:00
stdenv.mkDerivation {
pname = "volumeicon";
2015-03-02 23:16:12 +00:00
version = "0.5.1";
2014-09-11 19:13:43 +01: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 19:13:43 +01:00
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ gtk3 intltool alsaLib ];
2014-09-11 19:13:43 +01:00
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 19:13:43 +01:00
platforms = pkgs.lib.platforms.linux;
maintainers = with maintainers; [ bobvanderlinden ];
license = pkgs.lib.licenses.gpl3;
};
}