paprefs: Add package
This commit is contained in:
parent
d006273e7a
commit
0728fee205
|
@ -0,0 +1,33 @@
|
||||||
|
{ fetchurl, stdenv, pkgconfig, pulseaudio, gtkmm, libglademm
|
||||||
|
, dbus_glib, gconfmm, intltool }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "paprefs-0.9.10";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "http://freedesktop.org/software/pulseaudio/paprefs/${name}.tar.xz";
|
||||||
|
sha256 = "1c5b3sb881szavly220q31g7rvpn94wr7ywlk00hqb9zaikml716";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ pulseaudio gtkmm libglademm dbus_glib gconfmm ];
|
||||||
|
|
||||||
|
nativeBuildInputs = [ pkgconfig intltool ];
|
||||||
|
|
||||||
|
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.
|
||||||
|
'';
|
||||||
|
|
||||||
|
homepage = http://freedesktop.org/software/pulseaudio/paprefs/ ;
|
||||||
|
|
||||||
|
license = licenses.gpl2Plus;
|
||||||
|
|
||||||
|
maintainers = [ maintainers.abbradar ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
|
@ -9745,6 +9745,10 @@ let
|
||||||
|
|
||||||
panotools = callPackage ../applications/graphics/panotools { };
|
panotools = callPackage ../applications/graphics/panotools { };
|
||||||
|
|
||||||
|
paprefs = callPackage ../applications/audio/paprefs {
|
||||||
|
inherit (gnome) libglademm gconfmm;
|
||||||
|
};
|
||||||
|
|
||||||
pavucontrol = callPackage ../applications/audio/pavucontrol { };
|
pavucontrol = callPackage ../applications/audio/pavucontrol { };
|
||||||
|
|
||||||
paraview = callPackage ../applications/graphics/paraview { };
|
paraview = callPackage ../applications/graphics/paraview { };
|
||||||
|
|
Loading…
Reference in New Issue