nixpkgs/pkgs/applications/audio/paprefs/default.nix

31 lines
873 B
Nix
Raw Normal View History

2018-07-08 02:52:41 +00:00
{ fetchurl, stdenv, meson, ninja, gettext, pkgconfig, pulseaudioFull, gtkmm3, dbus-glib, wrapGAppsHook }:
2014-09-28 17:48:28 +00:00
stdenv.mkDerivation rec {
2018-07-08 02:52:41 +00:00
name = "paprefs-1.0";
2014-09-28 17:48:28 +00:00
src = fetchurl {
url = "https://freedesktop.org/software/pulseaudio/paprefs/${name}.tar.xz";
2018-07-08 02:52:41 +00:00
sha256 = "0y77i9gaaassvvjrpwb4xbgqcmr51zmj5rh4z8zm687i5izf84md";
2014-09-28 17:48:28 +00:00
};
2018-07-08 02:52:41 +00:00
nativeBuildInputs = [ meson ninja gettext pkgconfig wrapGAppsHook ];
2014-09-28 17:48:28 +00:00
2018-07-08 02:52:41 +00:00
buildInputs = [ pulseaudioFull gtkmm3 dbus-glib ];
2014-09-28 17:48:28 +00:00
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/;
2014-09-28 17:48:28 +00:00
license = licenses.gpl2Plus;
maintainers = [ maintainers.abbradar ];
platforms = platforms.linux;
};
}