mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
28 lines
480 B
Nix
28 lines
480 B
Nix
{
|
|
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
|
|
];
|
|
}
|