Merge pull request #329669 from HeitorAugustoLN/plasma-panel-colorizer

plasma-panel-colorizer: init at 0.5.2
This commit is contained in:
2024-07-28 19:43:38 +02:00
committed by GitHub
@@ -0,0 +1,36 @@
{
lib,
stdenv,
fetchFromGitHub,
cmake,
kdePackages,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "plasma-panel-colorizer";
version = "0.5.2";
src = fetchFromGitHub {
owner = "luisbocanegra";
repo = "plasma-panel-colorizer";
rev = "refs/tags/v${finalAttrs.version}";
hash = "sha256-+JweNB+zjbXh6Htyvu2vgogAr5Fl5wDPCpm6GV18NJ0=";
};
nativeBuildInputs = [
cmake
kdePackages.extra-cmake-modules
kdePackages.plasma-desktop
];
dontWrapQtApps = true;
meta = {
description = "Fully-featured widget to bring Latte-Dock and WM status bar customization features to the default KDE Plasma panel";
homepage = "https://github.com/luisbocanegra/plasma-panel-colorizer";
changelog = "https://github.com/luisbocanegra/plasma-panel-colorizer/blob/main/CHANGELOG.md";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ HeitorAugustoLN ];
inherit (kdePackages.kwindowsystem.meta) platforms;
};
})