2020-04-25 19:01:05 +02:00
|
|
|
{ lib
|
|
|
|
, mkDerivation
|
|
|
|
, fetchFromGitHub
|
|
|
|
, cmake
|
|
|
|
, pkgconfig
|
|
|
|
, lxqt
|
|
|
|
, libpulseaudio
|
|
|
|
, pcre
|
|
|
|
, qtbase
|
|
|
|
, qttools
|
|
|
|
, qtx11extras
|
|
|
|
}:
|
2016-10-04 00:02:24 +02:00
|
|
|
|
2019-07-27 23:05:17 +02:00
|
|
|
mkDerivation rec {
|
2016-10-04 00:02:24 +02:00
|
|
|
pname = "pavucontrol-qt";
|
2020-04-26 22:25:25 +02:00
|
|
|
version = "0.15.0";
|
2016-10-04 00:02:24 +02:00
|
|
|
|
2017-11-02 03:00:22 +01:00
|
|
|
src = fetchFromGitHub {
|
2018-05-22 03:24:38 +02:00
|
|
|
owner = "lxqt";
|
2016-10-04 00:02:24 +02:00
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2020-04-26 22:25:25 +02:00
|
|
|
sha256 = "0ppm79c6pkz2hvs1rri55d3s46j6r0vhiv634wzap9qshjb1j367";
|
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 = [
|
2017-11-02 18:59:28 +01:00
|
|
|
qtbase
|
|
|
|
qttools
|
|
|
|
qtx11extras
|
2016-10-04 00:02:24 +02:00
|
|
|
libpulseaudio
|
2017-11-02 03:00:22 +01:00
|
|
|
pcre
|
2016-10-04 00:02:24 +02:00
|
|
|
];
|
|
|
|
|
2020-04-26 16:53:59 +02:00
|
|
|
passthru.updateScript = lxqt.lxqtUpdateScript { inherit pname version src; };
|
|
|
|
|
2019-07-27 23:05:17 +02:00
|
|
|
meta = with lib; {
|
2016-10-04 00:02:24 +02:00
|
|
|
description = "A Pulseaudio mixer in Qt (port of pavucontrol)";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/lxqt/pavucontrol-qt";
|
2016-10-04 00:02:24 +02:00
|
|
|
license = licenses.gpl2;
|
2018-06-20 23:49:56 +02:00
|
|
|
platforms = with platforms; linux;
|
2017-02-19 13:16:38 +01:00
|
|
|
maintainers = with maintainers; [ romildo ];
|
2016-10-04 00:02:24 +02:00
|
|
|
};
|
|
|
|
}
|