Merge pull request #147379 from kanashimia/qpwgraph
This commit is contained in:
commit
2df15ba83d
3 changed files with 42 additions and 0 deletions
|
@ -5972,6 +5972,12 @@
|
||||||
githubId = 3831860;
|
githubId = 3831860;
|
||||||
name = "Arnold Krille";
|
name = "Arnold Krille";
|
||||||
};
|
};
|
||||||
|
kanashimia = {
|
||||||
|
email = "chad@redpilled.dev";
|
||||||
|
github = "kanashimia";
|
||||||
|
githubId = 56224949;
|
||||||
|
name = "Mia Kanashi";
|
||||||
|
};
|
||||||
karantan = {
|
karantan = {
|
||||||
name = "Gasper Vozel";
|
name = "Gasper Vozel";
|
||||||
email = "karantan@gmail.com";
|
email = "karantan@gmail.com";
|
||||||
|
|
34
pkgs/applications/audio/qpwgraph/default.nix
Normal file
34
pkgs/applications/audio/qpwgraph/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -27825,6 +27825,8 @@ with pkgs;
|
||||||
|
|
||||||
qnotero = libsForQt5.callPackage ../applications/office/qnotero { };
|
qnotero = libsForQt5.callPackage ../applications/office/qnotero { };
|
||||||
|
|
||||||
|
qpwgraph = libsForQt5.callPackage ../applications/audio/qpwgraph { };
|
||||||
|
|
||||||
qrcode = callPackage ../tools/graphics/qrcode {};
|
qrcode = callPackage ../tools/graphics/qrcode {};
|
||||||
|
|
||||||
qsampler = libsForQt5.callPackage ../applications/audio/qsampler { };
|
qsampler = libsForQt5.callPackage ../applications/audio/qsampler { };
|
||||||
|
|
Loading…
Reference in a new issue