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