kwin-tiling: init at 2.2
This commit is contained in:
parent
e19054ab3c
commit
4a83f6ba01
44
pkgs/desktops/plasma-5/kwin/scripts/tiling.nix
Normal file
44
pkgs/desktops/plasma-5/kwin/scripts/tiling.nix
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
{ lib, mkDerivation, fetchFromGitHub
|
||||||
|
, kcoreaddons, kwindowsystem, plasma-framework, systemsettings }:
|
||||||
|
|
||||||
|
mkDerivation rec {
|
||||||
|
pname = "kwin-tiling";
|
||||||
|
version = "2.2";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "kwin-scripts";
|
||||||
|
repo = "kwin-tiling";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "1sx64xv7g9yh3j26zxxrbndv79xam9jq0vs00fczgfv2n0m7j7bl";
|
||||||
|
};
|
||||||
|
|
||||||
|
# This is technically not needed, but we might as well clean up
|
||||||
|
postPatch = ''
|
||||||
|
rm release.sh
|
||||||
|
'';
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
kcoreaddons kwindowsystem plasma-framework systemsettings
|
||||||
|
];
|
||||||
|
|
||||||
|
dontBuild = true;
|
||||||
|
|
||||||
|
# 1. --global still installs to $HOME/.local/share so we use --packageroot
|
||||||
|
# 2. plasmapkg2 doesn't copy metadata.desktop into place, so we do that manually
|
||||||
|
installPhase = ''
|
||||||
|
runHook preInstall
|
||||||
|
|
||||||
|
plasmapkg2 --type kwinscript --install ${src} --packageroot $out/share/kwin/scripts
|
||||||
|
install -Dm644 ${src}/metadata.desktop $out/share/kservices5/kwin-script-tiling.desktop
|
||||||
|
|
||||||
|
runHook postInstalll
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Tiling script for kwin";
|
||||||
|
license = licenses.gpl2;
|
||||||
|
maintainers = with maintainers; [ peterhoeg ];
|
||||||
|
inherit (src.meta) homepage;
|
||||||
|
inherit (kwindowsystem.meta) platforms;
|
||||||
|
};
|
||||||
|
}
|
@ -22733,6 +22733,8 @@ in
|
|||||||
plasma-workspace-wallpapers polkit-kde-agent powerdevil sddm-kcm
|
plasma-workspace-wallpapers polkit-kde-agent powerdevil sddm-kcm
|
||||||
systemsettings user-manager xdg-desktop-portal-kde;
|
systemsettings user-manager xdg-desktop-portal-kde;
|
||||||
|
|
||||||
|
kwin-tiling = libsForQt5.callPackage ../desktops/plasma-5/kwin/scripts/tiling.nix { };
|
||||||
|
|
||||||
### SCIENCE
|
### SCIENCE
|
||||||
|
|
||||||
### SCIENCE/CHEMISTY
|
### SCIENCE/CHEMISTY
|
||||||
|
Loading…
Reference in New Issue
Block a user