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

51 lines
914 B
Nix
Raw Normal View History

{ fetchurl
, lib, stdenv
, meson
, ninja
, gettext
, pkg-config
, pulseaudioFull
, glibmm
, gtkmm3
, wrapGAppsHook
}:
2014-09-28 17:48:28 +00:00
stdenv.mkDerivation rec {
2019-04-02 08:01:57 +00:00
name = "paprefs-1.1";
2014-09-28 17:48:28 +00:00
src = fetchurl {
url = "https://freedesktop.org/software/pulseaudio/paprefs/${name}.tar.xz";
2019-04-02 08:01:57 +00:00
sha256 = "189z5p20hk0xv9vwvym293503j4pwl03xqk9hl7cl6dwgv0l7wkf";
2014-09-28 17:48:28 +00:00
};
nativeBuildInputs = [
meson
ninja
gettext
pkg-config
wrapGAppsHook
];
buildInputs = [
pulseaudioFull
glibmm
gtkmm3
];
2014-09-28 17:48:28 +00:00
meta = with lib; {
2014-09-28 17:48:28 +00:00
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;
};
}