kwin-script-geometry-change: init at 1.5.0 (#505637)
This commit is contained in:
@@ -5589,6 +5589,11 @@
|
||||
githubId = 1573344;
|
||||
name = "Andrey Pavlov";
|
||||
};
|
||||
couldbemathijs = {
|
||||
github = "couldbemathijs";
|
||||
githubId = 79464596;
|
||||
name = "couldbemathijs";
|
||||
};
|
||||
cpages = {
|
||||
email = "page@ruiec.cat";
|
||||
github = "cpages";
|
||||
|
||||
@@ -0,0 +1,45 @@
|
||||
{
|
||||
lib,
|
||||
stdenvNoCC,
|
||||
fetchFromGitHub,
|
||||
kdePackages,
|
||||
}:
|
||||
stdenvNoCC.mkDerivation (finalAttrs: {
|
||||
pname = "kwin-effect-geometry-change";
|
||||
version = "1.5";
|
||||
|
||||
strictDeps = true;
|
||||
__structuredAttrs = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "peterfajdiga";
|
||||
repo = "kwin4_effect_geometry_change";
|
||||
tag = "v${finalAttrs.version}";
|
||||
hash = "sha256-p4FpqagR8Dxi+r9A8W5rGM5ybaBXP0gRKAuzigZ1lyA=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
kdePackages.kpackage
|
||||
kdePackages.kwin
|
||||
];
|
||||
|
||||
dontBuild = true;
|
||||
|
||||
dontWrapQtApps = true;
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
kpackagetool6 --type=KWin/Effect --install=./package --packageroot=$out/share/kwin/effects
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "KWin animation for windows moved or resized by programs or scripts";
|
||||
homepage = "https://github.com/peterfajdiga/kwin4_effect_geometry_change";
|
||||
license = lib.licenses.gpl3Only;
|
||||
platforms = lib.platforms.linux;
|
||||
maintainers = with lib.maintainers; [ couldbemathijs ];
|
||||
};
|
||||
})
|
||||
Reference in New Issue
Block a user