35 lines
901 B
Nix
35 lines
901 B
Nix
{ lib, mkDerivation, fetchFromGitLab
|
|
, cmake, pkg-config
|
|
, alsa-lib, pipewire
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "qpwgraph";
|
|
version = "0.2.2";
|
|
|
|
src = fetchFromGitLab {
|
|
domain = "gitlab.freedesktop.org";
|
|
owner = "rncbc";
|
|
repo = "qpwgraph";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-BBvF1L3IqkYqSghHxcbwOBizdu6GtxaWof3Q/bc+aTY=";
|
|
};
|
|
|
|
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;
|
|
maintainers = with maintainers; [ kanashimia ];
|
|
};
|
|
}
|