2018-07-08 04:52:41 +02:00
|
|
|
{ fetchurl, stdenv, meson, ninja, gettext, pkgconfig, pulseaudioFull, gtkmm3, dbus-glib, wrapGAppsHook }:
|
2014-09-28 19:48:28 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-04-02 10:01:57 +02:00
|
|
|
name = "paprefs-1.1";
|
2014-09-28 19:48:28 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 20:43:35 +02:00
|
|
|
url = "https://freedesktop.org/software/pulseaudio/paprefs/${name}.tar.xz";
|
2019-04-02 10:01:57 +02:00
|
|
|
sha256 = "189z5p20hk0xv9vwvym293503j4pwl03xqk9hl7cl6dwgv0l7wkf";
|
2014-09-28 19:48:28 +02:00
|
|
|
};
|
|
|
|
|
2018-07-08 04:52:41 +02:00
|
|
|
nativeBuildInputs = [ meson ninja gettext pkgconfig wrapGAppsHook ];
|
2014-09-28 19:48:28 +02:00
|
|
|
|
2018-07-08 04:52:41 +02:00
|
|
|
buildInputs = [ pulseaudioFull gtkmm3 dbus-glib ];
|
2014-09-28 19:48:28 +02:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "PulseAudio Preferences";
|
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
PulseAudio Preferences (paprefs) is a simple GTK based configuration
|
|
|
|
dialog for the PulseAudio sound server.
|
|
|
|
'';
|
|
|
|
|
2017-08-01 22:03:30 +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;
|
|
|
|
};
|
|
|
|
}
|