Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
61 lines
1.1 KiB
Nix
61 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitLab,
|
|
cmake,
|
|
pkg-config,
|
|
wrapQtAppsHook,
|
|
qtbase,
|
|
qtsvg,
|
|
qtwayland,
|
|
alsa-lib,
|
|
pipewire,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "qpwgraph";
|
|
version = "0.9.6";
|
|
|
|
src = fetchFromGitLab {
|
|
domain = "gitlab.freedesktop.org";
|
|
owner = "rncbc";
|
|
repo = "qpwgraph";
|
|
rev = "v${finalAttrs.version}";
|
|
sha256 = "sha256-zhp6Mkb8iQF8tGXkYu+lgbMUNN/fk/gWBhzeDS4myJ0=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkg-config
|
|
wrapQtAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
qtbase
|
|
qtsvg
|
|
qtwayland
|
|
alsa-lib
|
|
pipewire
|
|
];
|
|
|
|
cmakeFlags = [ "-DCONFIG_WAYLAND=ON" ];
|
|
|
|
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
|
|
exi
|
|
Scrumplex
|
|
];
|
|
mainProgram = "qpwgraph";
|
|
};
|
|
})
|