57ece5d3e5
As we are still mainly on gtk2, so I'm disabling gtk3 support for now. Though we might want to add an option enableGTK3 someday. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
34 lines
992 B
Nix
34 lines
992 B
Nix
{ fetchurl, stdenv, pkgconfig, pulseaudio, gtkmm, libsigcxx
|
|
, libglademm, libcanberra, intltool, gettext }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "pavucontrol-1.0";
|
|
|
|
src = fetchurl {
|
|
url = "http://freedesktop.org/software/pulseaudio/pavucontrol/${name}.tar.xz";
|
|
sha256 = "1plcyrc7p6gqxjhxx2xh6162bkb29wixjrqrjnl9b8g3nrjjigix";
|
|
};
|
|
|
|
buildInputs = [ pkgconfig pulseaudio gtkmm libsigcxx libglademm libcanberra
|
|
intltool gettext ];
|
|
|
|
configureFlags = "--disable-lynx --disable-gtk3";
|
|
|
|
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://0pointer.de/lennart/projects/pavucontrol/;
|
|
|
|
license = "GPLv2+";
|
|
|
|
maintainers = [ stdenv.lib.maintainers.ludo ];
|
|
platforms = stdenv.lib.platforms.gnu; # arbitrary choice
|
|
};
|
|
}
|