2014-09-28 10:19:50 -07:00
|
|
|
{ fetchurl, stdenv, pkgconfig, intltool, pulseaudio, gtkmm3
|
|
|
|
, libcanberra_gtk3 }:
|
2009-04-03 08:58:18 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2013-07-27 08:43:17 -07:00
|
|
|
name = "pavucontrol-2.0";
|
2009-04-03 08:58:18 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2012-11-25 20:41:28 -08:00
|
|
|
url = "http://freedesktop.org/software/pulseaudio/pavucontrol/${name}.tar.xz";
|
2013-07-27 08:43:17 -07:00
|
|
|
sha256 = "02s775m1531sshwlbvfddk3pz8zjmwkv1sgzggn386ja3gc9vwi2";
|
2009-04-03 08:58:18 -07:00
|
|
|
};
|
|
|
|
|
2014-09-28 10:19:50 -07:00
|
|
|
buildInputs = [ pulseaudio gtkmm3 libcanberra_gtk3 ];
|
2009-04-03 08:58:18 -07:00
|
|
|
|
2014-09-28 10:19:50 -07:00
|
|
|
nativeBuildInputs = [ pkgconfig intltool ];
|
2009-04-03 09:58:07 -07:00
|
|
|
|
2014-09-28 10:19:50 -07:00
|
|
|
configureFlags = [ "--disable-lynx" ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2009-04-03 08:58:18 -07:00
|
|
|
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.
|
|
|
|
'';
|
|
|
|
|
2013-07-27 08:43:17 -07:00
|
|
|
homepage = http://freedesktop.org/software/pulseaudio/pavucontrol/ ;
|
2009-04-03 08:58:18 -07:00
|
|
|
|
2014-06-18 21:19:00 -07:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2010-03-03 06:27:22 -08:00
|
|
|
|
2014-09-28 10:19:50 -07:00
|
|
|
maintainers = [ maintainers.abbradar ];
|
|
|
|
platforms = platforms.linux;
|
2009-04-03 08:58:18 -07:00
|
|
|
};
|
|
|
|
}
|