nixpkgs-suyu/pkgs/desktops/lxqt/core/pavucontrol-qt/default.nix

38 lines
834 B
Nix
Raw Normal View History

2017-02-19 13:16:38 +01:00
{ stdenv, fetchFromGitHub, cmake, pkgconfig, qt5, lxqt, libpulseaudio }:
2016-10-04 00:02:24 +02:00
stdenv.mkDerivation rec {
name = "${pname}-${version}";
pname = "pavucontrol-qt";
2017-02-19 13:16:38 +01:00
version = "0.2.0";
2016-10-04 00:02:24 +02:00
srcs = fetchFromGitHub {
owner = "lxde";
repo = pname;
rev = version;
2017-02-19 13:16:38 +01:00
sha256 = "0k7sg4dxr48nk15gpqlnkjr9gbh7r5gs0s0ydifcmw281khrzlzj";
2016-10-04 00:02:24 +02:00
};
2017-02-19 13:16:38 +01:00
nativeBuildInputs = [
cmake
pkgconfig
lxqt.lxqt-build-tools
];
2016-10-04 00:02:24 +02:00
buildInputs = [
qt5.qtbase
qt5.qttools
qt5.qtx11extras
libpulseaudio
];
cmakeFlags = [ "-DPULL_TRANSLATIONS=NO" ];
meta = with stdenv.lib; {
description = "A Pulseaudio mixer in Qt (port of pavucontrol)";
homepage = https://github.com/lxde/pavucontrol-qt;
license = licenses.gpl2;
platforms = with platforms; unix;
2017-02-19 13:16:38 +01:00
maintainers = with maintainers; [ romildo ];
2016-10-04 00:02:24 +02:00
};
}