2019-07-27 22:05:17 +01:00
|
|
|
{ lib, mkDerivation, fetchFromGitHub, cmake, pkgconfig, lxqt, libpulseaudio,
|
2019-02-05 23:14:38 +00:00
|
|
|
pcre, qtbase, qttools, qtx11extras }:
|
2016-10-03 23:02:24 +01:00
|
|
|
|
2019-07-27 22:05:17 +01:00
|
|
|
mkDerivation rec {
|
2016-10-03 23:02:24 +01:00
|
|
|
pname = "pavucontrol-qt";
|
2019-02-26 21:32:17 +00:00
|
|
|
version = "0.14.1";
|
2016-10-03 23:02:24 +01:00
|
|
|
|
2017-11-02 02:00:22 +00:00
|
|
|
src = fetchFromGitHub {
|
2018-05-22 02:24:38 +01:00
|
|
|
owner = "lxqt";
|
2016-10-03 23:02:24 +01:00
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2019-02-26 21:32:17 +00:00
|
|
|
sha256 = "124dk41v8l5pv7afi1h7fgbhm8zj605yfd8b769sn7id2bqj7bis";
|
2016-10-03 23:02:24 +01:00
|
|
|
};
|
|
|
|
|
2017-02-19 12:16:38 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
|
|
|
pkgconfig
|
|
|
|
lxqt.lxqt-build-tools
|
|
|
|
];
|
2016-10-03 23:02:24 +01:00
|
|
|
|
|
|
|
buildInputs = [
|
2017-11-02 17:59:28 +00:00
|
|
|
qtbase
|
|
|
|
qttools
|
|
|
|
qtx11extras
|
2016-10-03 23:02:24 +01:00
|
|
|
libpulseaudio
|
2017-11-02 02:00:22 +00:00
|
|
|
pcre
|
2016-10-03 23:02:24 +01:00
|
|
|
];
|
|
|
|
|
2019-07-27 22:05:17 +01:00
|
|
|
meta = with lib; {
|
2016-10-03 23:02:24 +01:00
|
|
|
description = "A Pulseaudio mixer in Qt (port of pavucontrol)";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/lxqt/pavucontrol-qt";
|
2016-10-03 23:02:24 +01:00
|
|
|
license = licenses.gpl2;
|
2018-06-20 22:49:56 +01:00
|
|
|
platforms = with platforms; linux;
|
2017-02-19 12:16:38 +00:00
|
|
|
maintainers = with maintainers; [ romildo ];
|
2016-10-03 23:02:24 +01:00
|
|
|
};
|
|
|
|
}
|