Files
nixpkgs/pkgs/by-name/qp/qpwgraph/package.nix
Matthias Beyer abaf03a9b3 qpwgraph: Add matthiasbeyer as maintainer
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
2025-11-15 20:03:45 +01:00

59 lines
1.2 KiB
Nix

{
lib,
stdenv,
fetchFromGitLab,
cmake,
pkg-config,
alsa-lib,
pipewire,
kdePackages,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "qpwgraph";
version = "0.9.6";
src = fetchFromGitLab {
domain = "gitlab.freedesktop.org";
owner = "rncbc";
repo = "qpwgraph";
tag = "v${finalAttrs.version}";
sha256 = "sha256-zhp6Mkb8iQF8tGXkYu+lgbMUNN/fk/gWBhzeDS4myJ0=";
};
nativeBuildInputs = [
cmake
pkg-config
kdePackages.wrapQtAppsHook
];
buildInputs = [
kdePackages.qtbase
kdePackages.qtsvg
kdePackages.qtwayland
alsa-lib
pipewire
];
cmakeFlags = [ "-DCONFIG_WAYLAND=ON" ];
meta = {
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 = lib.licenses.gpl2Plus;
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [
kanashimia
exi
Scrumplex
matthiasbeyer
];
mainProgram = "qpwgraph";
};
})