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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

53 lines
941 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 {
pname = "paprefs";
2022-01-04 01:06:02 +00:00
version = "1.2";
2014-09-28 17:48:28 +00:00
src = fetchurl {
url = "https://freedesktop.org/software/pulseaudio/paprefs/paprefs-${version}.tar.xz";
2022-01-04 01:06:02 +00:00
sha256 = "sha256-s/IeQNw5NtFeP/yRD7DAfBS4jowodxW0VqlIwXY49jM=";
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;
};
}