2021-12-06 16:07:01 +00:00
|
|
|
{ lib, mkDerivation, fetchFromGitLab
|
|
|
|
, cmake, pkg-config
|
|
|
|
, alsa-lib, pipewire
|
|
|
|
}:
|
|
|
|
|
|
|
|
mkDerivation rec {
|
|
|
|
pname = "qpwgraph";
|
2023-07-15 17:15:38 +00:00
|
|
|
version = "0.4.4";
|
2021-12-06 16:07:01 +00:00
|
|
|
|
|
|
|
src = fetchFromGitLab {
|
|
|
|
domain = "gitlab.freedesktop.org";
|
|
|
|
owner = "rncbc";
|
|
|
|
repo = "qpwgraph";
|
|
|
|
rev = "v${version}";
|
2023-07-15 17:15:38 +00:00
|
|
|
sha256 = "sha256-9HgxFqwmRG2mJy9aTT0MeWdtE+YKG6rU8g24IZFHSRY=";
|
2021-12-06 16:07:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
|
|
|
|
|
|
|
buildInputs = [ alsa-lib pipewire ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Qt graph manager for PipeWire, similar to QjackCtl.";
|
|
|
|
longDescription = ''
|
|
|
|
qpwgraph is a graph manager dedicated for PipeWire,
|
|
|
|
using the Qt C++ framework, based and pretty much like
|
|
|
|
the same of QjackCtl.
|
|
|
|
'';
|
|
|
|
homepage = "https://gitlab.freedesktop.org/rncbc/qpwgraph";
|
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
platforms = platforms.linux;
|
2022-04-27 09:35:20 +00:00
|
|
|
maintainers = with maintainers; [ kanashimia exi ];
|
2021-12-06 16:07:01 +00:00
|
|
|
};
|
|
|
|
}
|