xin/pkgs/tile-gaps.nix

46 lines
1.1 KiB
Nix
Raw Normal View History

2023-09-12 08:44:05 -06:00
{ lib
, mkDerivation
, fetchFromGitHub
, kcoreaddons
, kwindowsystem
, plasma-framework
, systemsettings
,
2023-07-11 09:12:50 -06:00
}:
2022-08-30 11:46:46 -06:00
mkDerivation rec {
pname = "tile-gaps";
2023-06-14 07:12:25 -06:00
version = "8.0";
2022-08-30 11:46:46 -06:00
src = fetchFromGitHub {
owner = "nclarius";
repo = "tile-gaps";
rev = "window-gaps_v${version}";
2023-06-14 07:12:25 -06:00
sha256 = "sha256-IqmRazguCLSBe27Sy94gABCL+9lJFhFRYe1SPLF8jT8=";
2022-08-30 11:46:46 -06:00
};
2023-09-12 08:44:05 -06:00
buildInputs = [ kcoreaddons kwindowsystem plasma-framework systemsettings ];
2022-08-30 11:46:46 -06:00
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/tilegaps.desktop
runHook postInstall
'';
meta = with lib; {
2022-08-30 16:02:15 -06:00
description = ''
2022-08-30 20:53:19 -06:00
KWin script to add space around windows touching a screen edge or other window
2022-08-30 16:02:15 -06:00
'';
2022-08-30 11:46:46 -06:00
license = licenses.gpl3;
2023-09-12 08:44:05 -06:00
maintainers = with maintainers; [ qbit ];
2022-08-30 11:46:46 -06:00
inherit (src.meta) homepage;
inherit (kwindowsystem.meta) platforms;
};
}