Merge pull request #4038 from bobvanderlinden/volumeicon
added volumeicon
This commit is contained in:
commit
e377128003
2 changed files with 25 additions and 0 deletions
23
pkgs/tools/audio/volumeicon/default.nix
Normal file
23
pkgs/tools/audio/volumeicon/default.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{ pkgs, fetchurl, stdenv, gtk3, pkgconfig, intltool, alsaLib }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "volumeicon-${version}";
|
||||
version = "0.5.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://softwarebakery.com/maato/files/volumeicon/volumeicon-0.5.0.tar.gz";
|
||||
sha256 = "10np3fvfzyxkjw0kfzg81a7kcxda1fz6nkqffkijbay5ksgigwg5";
|
||||
};
|
||||
|
||||
buildInputs = [ gtk3 pkgconfig 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;
|
||||
};
|
||||
|
||||
}
|
||||
|
|
@ -2492,6 +2492,8 @@ let
|
|||
|
||||
vlan = callPackage ../tools/networking/vlan { };
|
||||
|
||||
volumeicon = callPackage ../tools/audio/volumeicon { };
|
||||
|
||||
wakelan = callPackage ../tools/networking/wakelan { };
|
||||
|
||||
wavemon = callPackage ../tools/networking/wavemon { };
|
||||
|
|
Loading…
Reference in a new issue