Skip to content

Instantly share code, notes, and snippets.

@taj-ny
Last active March 22, 2024 19:23
Show Gist options
  • Save taj-ny/c1abdde710f33e34dc39dc53a5dc2c09 to your computer and use it in GitHub Desktop.
Save taj-ny/c1abdde710f33e34dc39dc53a5dc2c09 to your computer and use it in GitHub Desktop.
{ lib
, stdenv
, cmake
, extra-cmake-modules
, kwin
, wrapQtAppsHook
, qttools
, fetchFromGitHub
}:
stdenv.mkDerivation rec {
pname = "kwin-effects-forceblur";
version = "1.1.2";
src = fetchFromGitHub {
owner = "taj-ny";
repo = pname;
rev = "v${version}";
hash = "sha256-/5vyC9ISJKHxDzqrTjaN7T7cc8FbF/P/JmQyeyHm++8=";
};
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";
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment