2015-05-27 20:42:15 +01:00
|
|
|
{ fetchurl, stdenv, pkgconfig, intltool, libpulseaudio, gtkmm3
|
2018-02-25 02:23:58 +00:00
|
|
|
, libcanberra-gtk3, makeWrapper, gnome3 }:
|
2009-04-03 16:58:18 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-03-25 23:38:44 +00:00
|
|
|
name = "pavucontrol-3.0";
|
2009-04-03 16:58:18 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 19:43:35 +01:00
|
|
|
url = "https://freedesktop.org/software/pulseaudio/pavucontrol/${name}.tar.xz";
|
2015-03-25 23:38:44 +00:00
|
|
|
sha256 = "14486c6lmmirkhscbfygz114f6yzf97h35n3h3pdr27w4mdfmlmk";
|
2009-04-03 16:58:18 +01:00
|
|
|
};
|
|
|
|
|
2014-12-22 10:40:51 +00:00
|
|
|
preFixup = ''
|
|
|
|
wrapProgram "$out/bin/pavucontrol" \
|
2018-09-16 03:18:11 +01:00
|
|
|
--set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" \
|
2014-12-22 10:40:51 +00:00
|
|
|
--prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS"
|
|
|
|
'';
|
|
|
|
|
2018-02-25 02:23:58 +00:00
|
|
|
buildInputs = [ libpulseaudio gtkmm3 libcanberra-gtk3 makeWrapper
|
2015-05-19 13:40:04 +01:00
|
|
|
gnome3.defaultIconTheme ];
|
2009-04-03 16:58:18 +01:00
|
|
|
|
2014-09-28 18:19:50 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig intltool ];
|
2009-04-03 17:58:07 +01:00
|
|
|
|
2014-09-28 18:19:50 +01:00
|
|
|
configureFlags = [ "--disable-lynx" ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2009-04-03 16:58:18 +01: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.
|
|
|
|
'';
|
|
|
|
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = http://freedesktop.org/software/pulseaudio/pavucontrol/;
|
2009-04-03 16:58:18 +01:00
|
|
|
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2010-03-03 14:27:22 +00:00
|
|
|
|
2015-06-22 07:25:07 +01:00
|
|
|
maintainers = with maintainers; [ abbradar jgeerds ];
|
2014-09-28 18:19:50 +01:00
|
|
|
platforms = platforms.linux;
|
2009-04-03 16:58:18 +01:00
|
|
|
};
|
|
|
|
}
|