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
45 lines
849 B
Nix
45 lines
849 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
cmake,
|
|
extra-cmake-modules,
|
|
kcoreaddons,
|
|
kdeclarative,
|
|
kdecoration,
|
|
libplasma,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "applet-window-buttons6";
|
|
version = "0.14.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "moodyhunter";
|
|
repo = "applet-window-buttons6";
|
|
rev = "v${version}";
|
|
hash = "sha256-HnlgBQKT99vVkl6DWqMkN8Vz+QzzZBGj5tqOJ22VkJ8=";
|
|
};
|
|
|
|
dontWrapQtApps = true;
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
extra-cmake-modules
|
|
];
|
|
|
|
buildInputs = [
|
|
kcoreaddons
|
|
kdeclarative
|
|
kdecoration
|
|
libplasma
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Plasma 6 applet in order to show window buttons in your panels";
|
|
homepage = "https://github.com/moodyhunter/applet-window-buttons6";
|
|
license = licenses.gpl2Only;
|
|
maintainers = with maintainers; [ A1ca7raz ];
|
|
};
|
|
}
|