mirror of
https://gitgud.io/wackyideas/aerothemeplasma.git
synced 2024-08-15 00:43:43 +00:00
33 lines
557 B
Nix
33 lines
557 B
Nix
|
{ lib
|
||
|
, stdenv
|
||
|
, cmake
|
||
|
, extra-cmake-modules
|
||
|
, kwin
|
||
|
, wrapQtAppsHook
|
||
|
, qttools
|
||
|
}:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "kwin-effects-forceblur";
|
||
|
version = "1.2.0";
|
||
|
|
||
|
src = ./.;
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
cmake
|
||
|
extra-cmake-modules
|
||
|
wrapQtAppsHook
|
||
|
];
|
||
|
|
||
|
buildInputs = [
|
||
|
kwin
|
||
|
qttools
|
||
|
];
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "A fork of the KWin Blur effect for KDE Plasma 6 with the ability to blur any window on Wayland and X11";
|
||
|
license = licenses.gpl3;
|
||
|
homepage = "https://github.com/taj-ny/kwin-effects-forceblur";
|
||
|
};
|
||
|
}
|