mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 20:21:14 +00:00
qpwgraph: init at 0.0.9
This commit is contained in:
parent
43da59fe8d
commit
a0155bedf3
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 { };
|
||||
|
||||
qpwgraph = libsForQt5.callPackage ../applications/audio/qpwgraph { };
|
||||
|
||||
qrcode = callPackage ../tools/graphics/qrcode {};
|
||||
|
||||
qsampler = libsForQt5.callPackage ../applications/audio/qsampler { };
|
||||
|
|
Loading…
Reference in a new issue