summary refs log blame commit diff
path: root/pkgs/applications/audio/pavucontrol/default.nix
blob: 02a27bedb67f3f747212878f68636330687455a3 (plain) (tree)
1
2
3
4
5
6
7
8
9

                                                 

                         
                           

                  
                                                                                  
                                                                    

    
                                                              
                       
 
                                    
 








                                                                    
                                                                        

                       
 
                      
                                                             

    
{ fetchurl, stdenv, pkgconfig, pulseaudio, gtkmm3
, libcanberra_gtk3, intltool, gettext }:

stdenv.mkDerivation rec {
  name = "pavucontrol-2.0";

  src = fetchurl {
    url = "http://freedesktop.org/software/pulseaudio/pavucontrol/${name}.tar.xz";
    sha256 = "02s775m1531sshwlbvfddk3pz8zjmwkv1sgzggn386ja3gc9vwi2";
  };

  buildInputs = [ pkgconfig pulseaudio gtkmm3 libcanberra_gtk3
    intltool gettext ];

  configureFlags = "--disable-lynx";

  meta = {
    description = "PulseAudio Volume Control";

    longDescription = ''
      PulseAudio Volume Control (pavucontrol) provides a GTK+
      graphical user interface to connect to a PulseAudio server and
      easily control the volume of all clients, sinks, etc.
    '';

    homepage = http://freedesktop.org/software/pulseaudio/pavucontrol/ ;

    license = "GPLv2+";

    maintainers = [ ];
    platforms = stdenv.lib.platforms.gnu;  # arbitrary choice
  };
}