pipecontrol: modernize, move to by-name/

This commit is contained in:
pancaek
2025-10-19 12:18:22 -07:00
parent a8c5d2b93d
commit 52fff94153
2 changed files with 13 additions and 19 deletions
@@ -5,47 +5,43 @@
pipewire,
cmake,
extra-cmake-modules,
wrapQtAppsHook,
qtbase,
qttools,
kirigami2,
kcoreaddons,
ki18n,
qtquickcontrols2,
libsForQt5,
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "pipecontrol";
version = "0.2.12";
src = fetchFromGitHub {
owner = "portaloffreedom";
repo = "pipecontrol";
rev = "v${version}";
sha256 = "sha256-WvQFmoEaxnkI61wPldSnMAoPAxNtI399hdHb/9bkPqc=";
tag = "v${finalAttrs.version}";
hash = "sha256-WvQFmoEaxnkI61wPldSnMAoPAxNtI399hdHb/9bkPqc=";
};
nativeBuildInputs = [
cmake
extra-cmake-modules
wrapQtAppsHook
qttools
libsForQt5.wrapQtAppsHook
libsForQt5.qttools
];
buildInputs = [
pipewire
]
++ (with libsForQt5; [
qtbase
kirigami2
kcoreaddons
ki18n
qtquickcontrols2
];
]);
meta = with lib; {
meta = {
description = "Pipewire control GUI program in Qt (Kirigami2)";
mainProgram = "pipecontrol";
homepage = "https://github.com/portaloffreedom/pipecontrol";
license = licenses.gpl3Only;
maintainers = with maintainers; [ tilcreator ];
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ tilcreator ];
};
}
})
-2
View File
@@ -3741,8 +3741,6 @@ with pkgs;
percona-xtrabackup
;
pipecontrol = libsForQt5.callPackage ../applications/audio/pipecontrol { };
pulumiPackages = recurseIntoAttrs pulumi.pkgs;
pulumi-bin = callPackage ../tools/admin/pulumi-bin { };