mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
added volumeicon
This commit is contained in:
parent
0487521ab2
commit
9b4fc42606
22
pkgs/tools/audio/volumeicon/default.nix
Normal file
22
pkgs/tools/audio/volumeicon/default.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{ 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 = "Volume Icon aims to be a lightweight volume control that sits in your systray.";
|
||||
platforms = pkgs.lib.platforms.linux;
|
||||
maintainers = with maintainers; [ bobvanderlinden ];
|
||||
license = pkgs.lib.licenses.gpl3;
|
||||
};
|
||||
|
||||
}
|
||||
|
@ -2484,6 +2484,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 New Issue
Block a user