2016-09-11 23:24:51 +02:00
|
|
|
{ fetchurl, stdenv, pkgconfig, libpulseaudio, gtkmm2, libglademm
|
2016-03-02 17:03:25 +01:00
|
|
|
, dbus_glib, GConf, gconfmm, intltool }:
|
2014-09-28 19:48:28 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "paprefs-0.9.10";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://freedesktop.org/software/pulseaudio/paprefs/${name}.tar.xz";
|
|
|
|
sha256 = "1c5b3sb881szavly220q31g7rvpn94wr7ywlk00hqb9zaikml716";
|
|
|
|
};
|
|
|
|
|
2016-09-11 23:24:51 +02:00
|
|
|
buildInputs = [ libpulseaudio gtkmm2 libglademm dbus_glib gconfmm ];
|
2014-09-28 19:48:28 +02:00
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgconfig intltool ];
|
|
|
|
|
2016-03-02 17:03:25 +01:00
|
|
|
propagatedUserEnvPkgs = [ GConf ];
|
|
|
|
|
2014-09-28 19:48:28 +02:00
|
|
|
configureFlags = [ "--disable-lynx" ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "PulseAudio Preferences";
|
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
PulseAudio Preferences (paprefs) is a simple GTK based configuration
|
|
|
|
dialog for the PulseAudio sound server.
|
|
|
|
'';
|
|
|
|
|
2016-04-30 01:58:00 +02:00
|
|
|
homepage = "http://freedesktop.org/software/pulseaudio/paprefs/";
|
2014-09-28 19:48:28 +02:00
|
|
|
|
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
|
|
|
|
maintainers = [ maintainers.abbradar ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|