feat: i3!

This commit is contained in:
Kat Inskip 2025-02-27 12:29:13 -08:00
parent add8b013a4
commit d463824ef1
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
35 changed files with 2150 additions and 156 deletions

View file

@ -0,0 +1,28 @@
{
lib,
stdenv,
fetchFromGitHub,
extra-cmake-modules,
qt6,
libepoxy,
kwin,
}:
stdenv.mkDerivation rec {
pname = "kwin-blishhud-shader";
version = "1.0.0";
dontWrapQtApps = true;
src = fetchFromGitHub {
owner = "FloFri";
repo = pname;
rev = "a7e4439a6450dc796bbfb99b64db788c592183eb";
hash = "sha256-yCm57OCYTJpPY+OYpL/MlChhddccml3tH2jv/hgEAbo=";
};
nativeBuildInputs = [
kwin
qt6.full
libepoxy
extra-cmake-modules
];
}