depot/third_party/nixpkgs/pkgs/tools/audio/volumeicon/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

24 lines
710 B
Nix

{ pkgs, fetchurl, stdenv, gtk3, pkgconfig, intltool, alsaLib }:
stdenv.mkDerivation {
pname = "volumeicon";
version = "0.5.1";
src = fetchurl {
url = "http://softwarebakery.com/maato/files/volumeicon/volumeicon-0.5.1.tar.gz";
sha256 = "182xl2w8syv6ky2h2bc9imc6ap8pzh0p7rp63hh8nw0xm38c3f14";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ gtk3 intltool alsaLib ];
meta = with stdenv.lib; {
description = "A lightweight volume control that sits in your systray";
homepage = "http://softwarebakery.com/maato/volumeicon.html";
platforms = pkgs.lib.platforms.linux;
maintainers = with maintainers; [ bobvanderlinden ];
license = pkgs.lib.licenses.gpl3;
};
}