qpwgraph: init at 0.0.9

This commit is contained in:
Kanashimia 2021-11-25 18:16:21 +02:00
parent 43da59fe8d
commit a0155bedf3
2 changed files with 36 additions and 0 deletions

View file

@ -0,0 +1,34 @@
{ lib, mkDerivation, fetchFromGitLab
, cmake, pkg-config
, alsa-lib, pipewire
}:
mkDerivation rec {
pname = "qpwgraph";
version = "0.0.9";
src = fetchFromGitLab {
domain = "gitlab.freedesktop.org";
owner = "rncbc";
repo = "qpwgraph";
rev = "v${version}";
sha256 = "WC2SB6gisRSZxG9WZtMVBzwkEJtPEGZRmezElLAG0ns=";
};
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 ];
};
}

View file

@ -27825,6 +27825,8 @@ with pkgs;
qnotero = libsForQt5.callPackage ../applications/office/qnotero { };
qpwgraph = libsForQt5.callPackage ../applications/audio/qpwgraph { };
qrcode = callPackage ../tools/graphics/qrcode {};
qsampler = libsForQt5.callPackage ../applications/audio/qsampler { };