qpwgraph: switch to Qt 6

Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
This commit is contained in:
Sefa Eyeoglu 2023-10-31 23:27:27 +01:00
parent 63b64d7018
commit 40d6816648
No known key found for this signature in database
GPG Key ID: E13DFD4B47127951
2 changed files with 7 additions and 7 deletions

View File

@ -1,9 +1,9 @@
{ lib, mkDerivation, fetchFromGitLab
, cmake, pkg-config
, alsa-lib, pipewire
{ lib, stdenv, fetchFromGitLab
, cmake, pkg-config, wrapQtAppsHook
, qtbase, qtsvg, qtwayland, alsa-lib, pipewire
}:
mkDerivation rec {
stdenv.mkDerivation rec {
pname = "qpwgraph";
version = "0.5.3";
@ -15,9 +15,9 @@ mkDerivation rec {
sha256 = "sha256-50KaVpNB5/CTLs2bRbXEinYM23AZxZO/ForrVPFDN8U=";
};
nativeBuildInputs = [ cmake pkg-config ];
nativeBuildInputs = [ cmake pkg-config wrapQtAppsHook ];
buildInputs = [ alsa-lib pipewire ];
buildInputs = [ qtbase qtsvg qtwayland alsa-lib pipewire ];
meta = with lib; {
description = "Qt graph manager for PipeWire, similar to QjackCtl.";

View File

@ -34926,7 +34926,7 @@ with pkgs;
qnotero = libsForQt5.callPackage ../applications/office/qnotero { };
qpwgraph = libsForQt5.callPackage ../applications/audio/qpwgraph { };
qpwgraph = qt6Packages.callPackage ../applications/audio/qpwgraph { };
qrcode = callPackage ../tools/graphics/qrcode { };