aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/desktops/plasma-5/kwin/scripts/tiling.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/desktops/plasma-5/kwin/scripts/tiling.nix')
-rw-r--r--nixpkgs/pkgs/desktops/plasma-5/kwin/scripts/tiling.nix44
1 files changed, 0 insertions, 44 deletions
diff --git a/nixpkgs/pkgs/desktops/plasma-5/kwin/scripts/tiling.nix b/nixpkgs/pkgs/desktops/plasma-5/kwin/scripts/tiling.nix
deleted file mode 100644
index d2c68d3cb7b..00000000000
--- a/nixpkgs/pkgs/desktops/plasma-5/kwin/scripts/tiling.nix
+++ /dev/null
@@ -1,44 +0,0 @@
-{ 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;
- };
-}